使用LLVM将问题与OSX上的boost :: program_options联系起来

时间:2012-06-18 11:26:42

标签: c++ boost c++11 osx-lion clang

由于Boost 1.49的问题,我在C ++程序中遇到链接阶段时遇到了问题。我已经切换到C ++(-std=c++11 -libc=libc++),它适用于另一段代码(也使用boost)。使用自制软件安装Boost:

brew install boost --universal --with-mpi --with-icu

麻烦始于boost::program_options。我得到这样的链接错误:

  "boost::program_options::validate(boost::any&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, int)", referenced from:

... etc. ...

ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

这有点奇怪,因为在使用的库上做一个nm显示,符号似乎在那里:

nm -U /usr/local/lib/libboost_program_options-mt.dylib  | grep validate
0000000000019880 - 01 0000   FUN __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISbIwSt11char_traitsIwESaIwEESaIS7_EEPSsi
0000000000019880 T __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISbIwSt11char_traitsIwESaIwEESaIS7_EEPSsi
00000000000199e0 - 01 0000   FUN __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISbIwSt11char_traitsIwESaIwEESaIS7_EEPbi
00000000000199e0 T __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISbIwSt11char_traitsIwESaIwEESaIS7_EEPbi
0000000000019930 T __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISsSaISsEEPSsi
0000000000019930 - 01 0000   FUN __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISsSaISsEEPSsi
0000000000019c70 - 01 0000   FUN __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISsSaISsEEPbi
0000000000019c70 T __ZN5boost15program_options8validateERNS_3anyERKSt6vectorISsSaISsEEPbi

我已经尝试通过在安装之前相应地设置CXX和CXX_FLAGS来哄骗homebrew以使用clang而不是gcc编译boost。不确定我成功了。

指针非常感谢。

2 个答案:

答案 0 :(得分:8)

你需要使用clang和std11标志重新编译boost,libc ++库与OSX中安装的libstdc ++不兼容(在更改为gpl3之前的gcc的早期版本)。如果您的clang版本是3.1或更高,那么您可以使用(否则将c ++ 11更改为早期版本的c ++ 0x)。

./bootstrap.sh
mkdir build
sudo ./bjam toolset=clang cxxflags="-std=c++0x -stdlib=libc++" variant=release link=static threading=multi runtime-link=shared --build-dir=Build --layout=system --without-mpi --without-python install --prefix=/usr/local 

除了

之外,你当然可以改变其中的任何一个
  

toolset = clang cxxflags =“ - std = c ++ 0x -stdlib = libc ++”

这对你有用。

答案 1 :(得分:3)

我想分享我在Mac OS X 10.8.5上使用Xcode 5.0提供的clang 5.0.0构建Boost 1.54的经验(中度痛苦)。如果您需要C ++ 11功能,则编译和链接clang++非常重要,而不是clang

插图:采取以下简单程序:

#include <iostream>
#include <string>

int main(int argc, char *argv[]) {
    std::string str = "OK";
    std::cout << str << std::endl;
    return 0;
}

可以使用以下命令构建:

clang++ -std=c++11 -stdlib=libc++ clangstr.cc -o clangstr

然而,如果您尝试这样做:

clang -std=c++11 -stdlib=libc++ clangstr.cc -o clangstr

然后你得到链接器错误。请注意,clang联机帮助页显示该语言是由-std=选项选择的,但这显然是不够的。

我们必须告诉bjam在使用C ++ 11支持编译Boost时明确使用clang++

关注this very useful post后,我将以下内容放入tools/build/v2/user-config.jam

using clang : 11
    : "/usr/bin/clang++"
    : <cxxflags>"-std=c++11 -stdlib=libc++ -ftemplate-depth=512" <linkflags>"-stdlib=libc++"
    ;

然后我运行了./b2 clean,然后使用以下命令构建了Boost:

mkdir -p build/clangstage/
./b2 -j8 --build-dir=build --stagedir=build/clangstage toolset=clang-11 define=BOOST_SYSTEM_NO_DEPRECATED variant=release threading=multi address-model=64 stage

这构建了具有多线程支持的64位静态和动态库。如果您需要不同的设置,请相应地更改上面的命令。