This is the mail archive of the
libffi-discuss@sourceware.org
mailing list for the libffi project.
bug: libffi headerfile ffi.h #define ARM
- From: Xerxes Rånby <xerxes at zafena dot se>
- To: libffi-discuss at sourceware dot org
- Date: Thu, 03 Apr 2008 16:23:25 +0200
- Subject: bug: libffi headerfile ffi.h #define ARM
Greetings!
When using libffi to compile icedtea6 on ARM Linux target my ffi.h
headerfile contains the line
/* Specify which architecture libffi is configured for. */
#define ARM
i had to change this to the following in order to compile icedtea6 or
else the define conflicts with the icedtea6's defines.
/* Specify which architecture libffi is configured for. */
#ifndef ARM
#define ARM
#endif