-
You could simply set the CFLAGS and CPPFLAGS :
export CFLAGS=-m32 export CPPFLAGS=-m32
These flags will simply force
gcc
to use the-m32
option, which compiles into 32 bits mode.So if you only have one file to compile, you can use:
gcc -m32 myfile.c
From Studer
Thursday, January 20, 2011
Forcing 32bit compilation on Mac OS X 10.6
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment