This is the mail archive of the libffi-discuss@sourceware.org mailing list for the libffi project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]