在cygwin上为android编译boost时无法识别的命令行选项

时间:2011-11-25 21:36:18

标签: c++ boost cygwin

我试图在following article

的帮助下编译cygwin上的boost

但是当我发表以下声明时

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”中添加了特殊选项。一旦我删除了它,它运行就好了。

1 个答案:

答案 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