Quantcast
Viewing latest article 3
Browse Latest Browse All 10

Forcing 32bit compilation on Mac OS X 10.6

Image may be NSFW.
Clik here to view.
Question

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.
Answer

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

Viewing latest article 3
Browse Latest Browse All 10

Trending Articles