vote up 4 vote down star
3

I've built the x86 Boost libraries many times, but I can't seem to build x64 libraries. I start the "Visual Studio 2005 x64 Cross Tools Command Prompt" and run my usual build:

bjam --toolset=msvc --build-type=complete --build-dir=c:\build install

But it still produces x86 .lib files (I verified this with dumpbin /headers). What am I doing wrong?

flag

1 Answer

vote up 3 vote down check

You need to add the address-model=64 parameter.

Look e.g. here.

link|flag
That did it. Thanks! – Ferruccio Nov 19 '08 at 15:36

Your Answer

Get an OpenID
or

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