最近、MacPortsを使用してMacOSX 10.7にブースト1.48をインストールしました。私はコンパイルすることができますいくつかの例では、ドキュメントを増強して、私はこれに失敗しています(http://www.boost.org/doc/libs/1_48_0/libs/bimap/example/step_by_step.cpp)。ここでMacでブーストを使用してプログラムをコンパイルできません
g++ -Wall -I/opt/local/include -L/opt/local/lib step_by_step.cpp -o step_by_step
In file included from /usr/include/machine/_types.h:32,
from /usr/include/sys/_types.h:33,
from /usr/include/_types.h:27,
from /usr/include/unistd.h:71,
from /usr/include/c++/4.2.1/bits/os_defines.h:61,
from /usr/include/c++/4.2.1/bits/c++config.h:41,
from /usr/include/c++/4.2.1/cstddef:50,
from /opt/local/include/boost/config/select_stdlib_config.hpp:18,
from /opt/local/include/boost/config.hpp:40,
from step_by_step.cpp:7:
/usr/include/i386/_types.h:37: error: expected constructor, destructor, or type conversion before ‘typedef’
make: *** [step_by_step] Error 1
内蔵のスペックを使用して、コンパイラ
についての詳細はされています。ここでエラーメッセージがあります。
対象:i686-apple-darwin11
/private/var/tmp/llvmgcc42/llvmgcc42-2336.1~22/src/configure --disable-checking --enable-werror --prefix =/Developer/usr/libvm-gcc-4.2 --mandir =/share/man --enable-languages = c、objc、C++、obj-C++ --program-prefix = llvm- --program-transform-name =/^ [cg] [^ .-] * $/s/$/- 4.2/--with-slibdir =/usr/lib --build = i686-apple-darwin11 --enable-llvm =/private/var/tmp/llvmgcc42/llvmgcc42 -2336.1〜22/dst-llvmCore/Developer/usr/local --program-prefix = i686-apple-darwin11--host = x86_64-apple-darwin11 --target = i686-apple-darwin11 --with-gxx- include-dir =/usr/include/C++/4.2.1 スレッドモデル:posix gccバージョン4.2.1(Apple Inc.ビルド5658ベース)(LLVMビルド2336.1.00)
コンパイルに手伝ってください。
おかげ
これは、ブーストウェブサイトからコードをコピーしている間に愚かな間違いでした。私はその問題を修正し、今はうまくいきます。 – sank