Tom Martin a écrit:
I'm trying to get GRX to compile on OS X. I'm not having much luck, but I've seen some other threads where Maurice Lombardi has asked for the symbols dumped by GCC before compiling.
I've uploaded these: http://drop.io/darwinsymboldefs/asset/a1p1-defs (download them by clicking on a1p1.defs there).
I'm not subscribed to the mailing list so please Cc me on any replies. I would very much appreciate any help though.
Apply the following patch from the top directory of grx248
patch -p0 < grx20.h.diff
where grx20.h.diff is the following file
------------------------------------------------------------------------------- --- include/grx20.h.orig 2007-08-29 14:12:02 +0000 +++ include/grx20.h 2009-03-11 18:42:40 +0000 @@ -64,7 +64,7 @@ #define GRX_VERSION GRX_VERSION_GCC_386_DJGPP #endif #if defined(__XWIN__) -#if defined(__linux__) && defined(__i386__) +#if (defined(__linux__) || defined(__APPLE__)) && defined(__i386__) #define GRX_VERSION GRX_VERSION_GCC_386_X11 #endif #if defined(__linux__) && defined(__x86_64__) ---------------------------------------------------------------------------------
This should enable grx to recognize your system.
Maurice