How would I compile the x264 library for the i386 architecture? Usually to force an architecture I would use the follow command:

./configure CC="gcc -arch i386" CXX="g++ -arch i386"

But it doesn't seem to work for x264.

To compile x264 I configure it and make it, this produces an x86_64 library. When I attempt to use the above command to force the i386 architecture I receive the following message:

Unknown option CC=gcc -arch i386, ignored Unknown option CXX=g++ -arch i386, ignored

The configure script then prints that it is configured for the X86_64 platform. I want to see it configured for the i386 platform and to produce an i386 binary.

link|improve this question

54% accept rate
4  
Define "it doesn't seem to work". – Oli Charlesworth Aug 25 '11 at 15:03
What do you expect to happen? What do you see instead? – Chris Jester-Young Aug 25 '11 at 15:04
1  
To compile x264 I configure it and make it, this produces an x86_64 library. When I attempt to use the above command to force the i386 architecture I receive the following message: Unknown option CC=gcc -arch i386, ignored Unknown option CXX=g++ -arch i386, ignored The configure script then prints that it is configured for the X86_64 platform. I want to see it configured for the i386 platform and to produce an i386 binary. – user293895 Aug 25 '11 at 15:09
Have you tried ./configure --help? x264 does not use plain autotools if I remember correctly. – rubenvb Aug 27 '11 at 16:56
I have, it isn't helpful with regarding cross compiling, it says there is a --host parameter but I do not know the host I need to enter for i386 – user293895 Aug 28 '11 at 1:41
feedback

3 Answers

Autotooled configure scripts have special command-line arguments --build and --host that they use to configure cross-compilation. Some old configure scripts attempt to figure out they are cross-compiling by inspecting the output of the compiler, but telling the configure script explicitly is much saner and more robust.

See here, for example. Or this question.

(Oh, and the immediate reason for the "Unknown option" errors you're seeing is that environment-variable overrides go before the name of the script on the sh command line, not after it. It's not make, where variable definitions can be given on the make command line itself.)

link|improve this answer
configure has been taking options this way for a long time now. – Per Johansson Aug 25 '11 at 15:21
Oh. Well, apparently the one the OP is using doesn't. (I'm extrapolating its behavior from the wording of the error messages he quoted). – Henning Makholm Aug 25 '11 at 15:23
Yes, you're right. And not all configure scripts are autoconf anyway. – Per Johansson Aug 25 '11 at 21:20
So if I use ./configure --host=i386-apple-darwin10 it says "no working C Compiler found", is there any way to print a list of valid hosts? – user293895 Aug 27 '11 at 1:51
feedback

If you have an x86-64 gcc you can supply the "-m32" to ask it to compile a 32-bit binary. So you should be able to use configure like this:

./configure CFLAGS="-m32"

If however that doesn't work it may be a bug in the autotooling and the CFLAGS are getting overwritten. An alternative you can try:

make CFLAGS="-m32"

The problem with the latter is that you have to remember to do this, otherwise you'll end up with linking issues with some object files built for different architectures.

link|improve this answer
You may also need LDFLAGS="-m32" to get the linking done right. – Zan Lynx Aug 25 '11 at 15:33
feedback

As per Apple's recommendations at http://developer.apple.com/library/mac/#documentation/Porting/Conceptual/PortingUnix/compiling/compiling.html try:

./configure
make CFLAGS="-arch i386" LDFLAGS="-arch i386"

If that doesn't work add the -isysroot flags as well (but 10.6 or 10.7 rather than 10.4u)

link|improve this answer
Unfortunately this doesn't work, it just throws up a lot of errors – user293895 Aug 28 '11 at 1:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.