2

OS X 10.7.3 を使用しています。私はしばらくブースト ヘッダーをいじっていましたが、Boost.Filesystem lib の使用に移りたいと思っていましたが、次のメッセージが表示され続けています。

Undefined symbols for architecture x86_64:
  "boost::system::generic_category()", referenced from:
      __static_initialization_and_destruction_0(int, int)in ccOhIhNG.o
      boost::filesystem3::detail::create_directories(boost::filesystem3::path const&,     boost::system::error_code*)in libboost_filesystem.a(operations.o)
      boost::filesystem3::detail::canonical(boost::filesystem3::path const&,     boost::filesystem3::path const&, boost::system::error_code*)in     libboost_filesystem.a(operations.o)
  "boost::system::system_category()", referenced from:
      __static_initialization_and_destruction_0(int, int)in ccOhIhNG.o
      (anonymous namespace)::error(bool, boost::system::error_code const&,     boost::filesystem3::path const&, boost::system::error_code*, std::basic_string<char,     std::char_traits<char>, std::allocator<char> > const&)in libboost_filesystem.a(operations.o)
      (anonymous namespace)::error(bool, boost::filesystem3::path const&,     boost::system::error_code*, std::basic_string<char, std::char_traits<char>,     std::allocator<char> > const&)in libboost_filesystem.a(operations.o)
      (anonymous namespace)::error(bool, boost::filesystem3::path const&,     boost::filesystem3::path const&, boost::system::error_code*, std::basic_string<char,     std::char_traits<char>, std::allocator<char> > const&)in libboost_filesystem.a(operations.o)
      boost::filesystem3::detail::dir_itr_close(void*&, void*&)in     libboost_filesystem.a(operations.o)
      boost::filesystem3::detail::directory_iterator_increment(boost::filesystem3::directory_itera    tor&, boost::system::error_code*)in libboost_filesystem.a(operations.o)
      boost::filesystem3::detail::directory_iterator_construct(boost::filesystem3::directory_itera    tor&, boost::filesystem3::path const&, boost::system::error_code*)in     libboost_filesystem.a(operations.o)
      ...
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

これを使用してコンパイルしようとすると、次のようになります。

g++ -o test main.cpp -I -l/opt/local/include ~/boost/libs/libboost_filesystem.a

それで、boost.org のチュートリアルに戻って、正規表現の例を試してみました。これを使用して完全に機能しました:

g++ -o test main.cpp -I -l/opt/local/include ~/boost/libs/libboost_regex.a
4

2 に答える 2

4

試す

g++ -o test main.cpp -I/opt/local/include -L/opt/local/lib  -lboost_filesystem
于 2012-04-09T20:28:19.680 に答える
4

あなたのコンパイラフラグは少しずれているようです。一般に、次のことが成り立ちます。

-I // Sets the path for the relevant header files
-L // Sets the path where your libraries reside
-l // specifies the library you want to link against.

したがって、~/libs/ に mylib というライブラリがあり、~/include にあるヘッダー ファイルを使用する必要がある場合は、

-I ~/include -L ~/libs -lmylib

コンパイラへのフラグとして。

于 2012-04-09T20:35:36.663 に答える