I compiled boost on a SuSE 9.2 x86_64 machine (AMD Athlon), it built everything but compiled and linked for 64 bits. The libraries ended up in /usr/local/lib instead of lib64 though. How do I tell the build system to build 32 bit libraries (and put the 64 bit libraries in lib64)? Best regards, (and apologies if this is not the right forum...) Bjorn Regnstrom
Björn Regnström wrote:
I compiled boost on a SuSE 9.2 x86_64 machine (AMD Athlon), it built everything but compiled and linked for 64 bits. The libraries ended up in /usr/local/lib instead of lib64 though.
How do I tell the build system to build 32 bit libraries (and put the 64 bit libraries in lib64)?
Best regards, (and apologies if this is not the right forum...) Bjorn Regnstrom
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
For Boost 1.33.0 with a g++ compiler we use this: bjam -sTOOLS=gcc -sGCC_ROOT_DIRECTORY=/opt/gcc344 -sGXX="g++344 -m32" -sGCC="gcc344 -m32" -- Dick Hadsell 914-259-6320 Fax: 914-259-6499 Reply-to: hadsell@blueskystudios.com Blue Sky Studios http://www.blueskystudios.com 44 South Broadway, White Plains, NY 10601
participants (2)
-
Björn Regnström
-
Richard Hadsell