【发布时间】:2011-08-19 16:25:32
【问题描述】:
如标题所示:如何为 x86 和 x64 架构构建 boost 通用库?
谢谢
【问题讨论】:
如标题所示:如何为 x86 和 x64 架构构建 boost 通用库?
谢谢
【问题讨论】:
添加 architecture=combined 以构建 Intel 和 PowerPC。添加 address-model=32_64 以在一个包中构建 x86 和 x64。见Apple Darwin gcc
bjam toolset=darwin --with-... address-model=32_64 architecture=combined
【讨论】:
toolset、address-model 和 architecture 是特征,因此不能有前导 --s。即,应该是bjam toolset=darwin --with-... address-model=32_64 architecture=combined。