Support building PHP with the native client toolchain.
authorStuart Langley <slangley@google.com>
Thu, 13 Sep 2012 15:37:37 +0000 (17:37 +0200)
committerStanislav Malyshev <stas@php.net>
Mon, 17 Sep 2012 22:52:55 +0000 (15:52 -0700)
commit2e24d9a2b3cc5becafb0fd3805a22cd87daa1f18
treef9e68dec3f46955f49425c45f0dfdfa37e6af01c
parent6096988704d3cbcde364fae506cd6b8a2b8181f4
Support building PHP with the native client toolchain.

The native client compiler defines the C macro __x86_64__, but the size
of an unsigned int is only 4 bytes. This causes the compile to fail
because the inline asm code compiled is for an 8 byte unsigned int. Add
the correct defines to fix this.

As detailed in:
http://code.google.com/p/nativeclient/issues/detail?id=2255
Zend/zend_alloc.c