Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using a 64bit system but want a set of 32bit binaries. What options must I pass to a configure script to generate a 32bit/x86 makefile?

share|improve this question

2 Answers

up vote 19 down vote accepted

Passing the following argument to configure script allowed me to build the 32bit library on 64bit Linux

./configure --build=i686-pc-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"
share|improve this answer
Doesn't work for me :( Please help me at stackoverflow.com/questions/13780319/… – m93a Dec 8 '12 at 18:11

Assuming gcc/g++:

CPPFLAGS=-m32 ./configure ...
share|improve this answer
Thanks for the answer. The configure script still sets the build system type and host system type to x86_64-unknown-linux-gnu. Do you know how to override these? – Jack Nock Jul 16 '10 at 11:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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