]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
libffi: add patch to fix MIPS support
authorMauro Condarelli <mc5686@mclink.it>
Fri, 21 Apr 2017 10:33:08 +0000 (12:33 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 22 Oct 2017 13:56:20 +0000 (15:56 +0200)
commit4852f05907cd365825f37c283a415a77ba1fcba9
treeec41112d7cc072744ff0f01cfb94449c84d741a9
parent862b76cfefc101943f09db2a73f5519f9a5bb2cb
libffi: add patch to fix MIPS support

Building Python 3.x on MIPS with musl fails because the libffi code
uses a "#ifdef linux" test to decide if we're building on Linux or
not. When building with -std=c99, "linux" is not defined, so instead
of including <asm/sgidefs.h>, libffi's code tries to include
<sgidefs.h>, which doesn't exist on musl.

The right fix is to use __linux__, which is POSIX compliant, and
therefore defined even when -std=c99 is used.

Note that glibc and uClibc were not affected because they do provide a
<sgidefs.h> header in addition to the <asm/sgidefs.h> one.

Signed-off-by: Mauro Condarelli <mc5686@mclink.it>
[Thomas: reformat patch with Git, add a better commit log and description.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/libffi/0005-mips-use-__linux__-and-not-linux.patch [new file with mode: 0644]