Image may be NSFW.
Clik here to view.
I’m running Mac OS X 10.6.
How do I force configure to compile in 32 bit mode?
Image may be NSFW.
Clik here to view.
You could simply set the CFLAGS and CPPFLAGS :
export CFLAGS=-m32export 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
Check more discussion of this question.