user185846
user185846

Reputation:

How do I make Boost build for i386 on OS X 64 bit?

I've been battling with Boost to make it compile as only 32 bit than 64 bit on a 64 bit OS X host.

Is there an easy edit I can make to the darwin-specific bjam config file?

Upvotes: 5

Views: 4552

Answers (2)

please delete me
please delete me

Reputation:

For i386 specifically, I'd try:

bjam toolset=darwin architecture=x86 address-model=32

Upvotes: 9

Vladimir Prus
Vladimir Prus

Reputation: 4650

Try:

bjam toolset=darwin address-model=32

Upvotes: 7

Related Questions