2

我想通过c++14-fPIC通过 boost.b2 和构建静态库。使用 :cxxflags="--std=c++14 -fPIC"并出现以下错误:

g++: error: unrecognized command line option ‘--std=c++14 -fPIC’

    "g++"   -pthread -O3 -finline-functions -Wno-inline -Wall "--std=c++14 -fPIC" -DBOOST_ALL_NO_LIB=1 -DBOOST_ATOMIC_SOURCE -DBOOST_ATOMIC_STATIC_LINK=1 -DNDEBUG  -I"." -c -o "bin.v2/libs/atomic/build/gcc-5.4.0/release/link-static/threading-multi/lockpool.o" "libs/atomic/src/lockpool.cpp"

"如果像这样删除./b2 cxxflags=--std=c++14 -fPIC link=static install,会出现以下错误:

PIC: No such file or directory
don't know how to make cxxflags=--std=c++14
don't know how to make link=static

最后,我像这样解决它:

./b2 cflags=-fPIC cxxflags=--std=c++14 link=static install

如果需要两个以上的参数,现在没办法了。

4

1 回答 1

1

您可以指定cflags=多次添加多个标志

于 2021-06-11T09:18:09.920 回答