但是当我发表以下声明时
bjam --without-python --without-serialization toolset=gcc-android4.4.3 link=static runtime-link=static target-os=linux --stagedir=android
它开始编译但由于以下错误而失败:
cc1plus.exe: error: unrecognized command line option "-mthreads"
我正在使用最新的cygwin并提升1.48.0
如果有人能给我提示删除此错误,我将不胜感激。
更新
我找到了解决方案。 Boost假设cygwin有MingW gcc编译器,所以它在配置文件“gcc.jam”中添加了特殊选项。一旦我删除了它,它运行就好了。
答案 0 :(得分:1)
<强>短强>
将target-os=android
传递给b2
<强>解释强>
我面对Boost 1.59的同样问题
根据boost/tools/build/src/tools/gcc.jam
第1024行
rule setup-threading ( targets * : sources * : properties * )
{
local threading = [ feature.get-values threading : $(properties) ] ;
if $(threading) = multi
{
local target = [ feature.get-values target-os : $(properties) ] ;
local option ;
local libs ;
switch $(target)
{
case android : # No threading options, everything is in already.
case windows : option = -mthreads ;
case cygwin : option = -mthreads ;
case solaris : option = -pthreads ; libs = rt ;
case beos : # No threading options.
case haiku : option = ;
case *bsd : option = -pthread ; # There is no -lrt on BSD.
case sgi : # gcc on IRIX does not support multi-threading.
case darwin : # No threading options.
case * : option = -pthread ; libs = rt ;
}
if $(option)
{
OPTIONS on $(targets) += $(option) ;
}
if $(libs)
{
FINDLIBS-SA on $(targets) += $(libs) ;
}
}
}
正如您所看到的,-mthreads
取决于target-os
param