14

我无法在 Mac os x 10.8.2 上使用 clang 3.1 编译 boost。

这就是我所做的:

./bootstrap.sh --with-toolset=clang
./b2 toolset=clang cxxflags="-std=c++11 -stdlib=libc++" linkflags="-stdlib=libc++"

我也试过没有计时、测试、波形和信号。我尝试了一个 user-config.jam

using clang-darwin

这是我几乎每个文件都有的错误:

/boost/config/select_stdlib_config.hpp:18:12: fatal error: 'cstddef' file not found

它有点类似于How to compile/link Boost with clang++/libc++?

谢谢 :-)

更新:我确实有安装了命令行工具的最新 Xcode 4.5.2。

这是控制台输出的一部分:

Kikohs:trunk kikohs$ ./b2 toolset=clang cxxflags="-std=c++11 -stdlib=libc++" linkflags="-stdlib=libc++"
Performing configuration checks

- 32-bit                   : no
- 64-bit                   : yes
- x86                      : yes
- has_icu builds           : no
warning: Graph library does not contain MPI-based parallel components.
note: to enable them, add "using mpi ;" to your user-config.jam
    - gcc visibility           : yes
    - long double support      : no
warning: skipping optional Message Passing Interface (MPI) library.
note: to enable MPI support, add "using mpi ;" to user-config.jam.
note: to suppress this message, pass "--without-mpi" to bjam.
note: otherwise, you can safely ignore this message.

构建 Boost C++ 库。

- iconv (libc)             : no
- iconv (separate)         : yes
- icu                      : no
- icu (lib64)              : no

组件配置:

- atomic                   : building
- chrono                   : building
- context                  : building
- date_time                : building
- exception                : building
- filesystem               : building
- graph                    : building
- graph_parallel           : building
- iostreams                : building
- locale                   : building
- math                     : building
- mpi                      : building
- program_options          : building
- python                   : building
- random                   : building
- regex                    : building
- serialization            : building
- signals                  : building
- system                   : building
- test                     : building
- thread                   : building
- timer                    : building
- wave                     : building

...patience...
...patience...
...patience...
...patience...
...found 8672 targets...
...updating 1127 targets...
common.mkdir bin.v2/libs/atomic
common.mkdir bin.v2/libs/atomic/build
common.mkdir bin.v2/libs/atomic/build/clang-darwin-4.2.1
common.mkdir bin.v2/libs/atomic/build/clang-darwin-4.2.1/debug
clang-darwin.compile.c++ bin.v2/libs/atomic/build/clang-darwin-4.2.1/debug/lockpool.o
In file included from libs/atomic/src/lockpool.cpp:1:
./boost/atomic.hpp:10:10: fatal error: 'cstddef' file not found
#include <cstddef>
     ^
1 error generated.

"clang++" -x c++ -O0 -g -std=c++11 -stdlib=libc++ -O0 -fno-inline -Wall -g -DBOOST_ALL_NO_LIB=1 -DBOOST_ATOMIC_DYN_LINK=1 -DBOOST_ATOMIC_SOURCE -I"." -c -o "bin.v2/libs/atomic/build/clang-darwin-4.2.1/debug/lockpool.o" "libs/atomic/src/lockpool.cpp"
4

3 回答 3

6

看起来您忘记在 clang 旁边安装 libc++ 头文件。

如果您不想安装头文件,请尝试 Apple 作为命令行工具包的一部分分发的 clang 版本;它经过了更多的测试,并且已经正确设置。

于 2012-11-15T19:37:03.607 回答
4

几个小时后,我终于解决了我的问题。

Homebrew 弄乱了我的路径,由于某种原因,我的 clang 找不到 libc++ 头文件。

有一个错误是 boost 1.52。

请参阅Boost 数值限制错误

我不得不编辑文件:

boost/config/stdlib/libcpp.hpp

并修补它:

#if _LIBCPP_VERSION < 1002 
#   define BOOST_NO_CXX11_NUMERIC_LIMITS 
#endif 

现在 boost 正在正确构建...

于 2012-11-15T22:16:51.587 回答
-3

对于 Ubuntu 16.04,我可以使用 gcc 使用 c++11 构建 boost:

cd /home/user/install/boost/boost_1_54/

./bootstrap.sh --with-toolset=gcc

./b2 工具集=gcc cxxflags="-std=c++11 -I/usr/include/c++/5/ -I/usr/include/x86_64-linux-gnu/c++/5/"

mkdir ../2

./b2 安装 --prefix=../2/

构建我的程序的命令:

g++ -std=c++11 -O2 fprint.cpp -o fprint -I/home/user/install/boost/2/include/ -L/home/user/install/boost/2/lib/ -lboost_regex -lboost_program_options

在此之前,命令是:

g++ -std=c++11 fprint.cpp -o fprint -lboost_regex -lboost_program_options

,但是这个旧命令(以前在旧操作系统和 boost/etc 上工作得很好)不再起作用,说错误“未定义对 boost::re_detail_106501 的引用”(由 /tmp/cc0Zn8lo.o 说:在函数 `bool boost: :regex_search...)

((如果我不使用“-I/usr/include/c++/5/-I/usr/include/x86_64-linux-gnu/c++/5/”作为./b2,那么错误是“不能在构建提升过程中找到 cstddef”,因此与这张票的主题完全相同))

于 2018-05-08T15:47:27.783 回答