gpt4 book ai didi

boost - 无法在 makefile 中链接 boost.system

转载 作者:行者123 更新时间:2023-12-01 00:06:18 26 4
gpt4 key购买 nike

刚刚问了一个关于在 make 文件中链接 Boost 库的问题。
感谢那些为此提供帮助的人。我结束了这个:

accesstimer: acctime.o bentimer.o
g++ -L/usr/local/boost/boost_1_39_0/stage/lib -lboost_system -lboost_filesystem acctime.o bentimer.o -o accesstimer

acctime.o: acctime.cpp bentimer.h
g++ -I /usr/local/boost/boost_1_39_0 -c acctime.cpp

bentimer.o: bentimer.cpp bentimer.h
g++ -c bentimer.cpp

我现在的问题是 boost.filesystem 需要 boost.system 而上面的 make 文件找不到 boost.system。

我通过查看 stage/lib 目录并删除文件名的 lib 和尾随部分 (libboost_filesystem-gcc41-mt.a) 获得了 boost.filesystem 的名称。正如你在上面看到的,我对 libboost_system-gcc41-mt.a 做了同样的事情,并提出了 boost_system 但它找不到。

有谁知道我将如何链接 boost.system?

谢谢 zeive 叔叔,这是有效的,但是一旦我尝试使用文件系统关键字之一(例如存在),我就会得到这个:
g++ -I /usr/local/boost/boost_1_39_0 -c acctime.cpp
In file included from acctime.cpp:5:
bentimer.h:2:19: warning: extra tokens at end of #ifndef directive
bentimer.h:11:18: warning: extra tokens at end of #ifdef directive
bentimer.h:28:3: warning: no newline at end of file
g++ -L/usr/local/boost/boost_1_39_0/stage/lib -lboost_system-gcc41-mt -lboost_filesystem acctime.o bentimer.o -o accesstimer
acctime.o: In function `boost::enable_if<boost::filesystem::is_basic_path<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> >, bool>::type boost::filesystem::exists<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> >(boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> const&)':
acctime.cpp:(.text._ZN5boost10filesystem6existsINS0_10basic_pathISsNS0_11path_traitsEEEEENS_9enable_ifINS0_13is_basic_pathIT_EEbE4typeERKS7_[boost::enable_if<boost::filesystem::is_basic_path<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> >, bool>::type boost::filesystem::exists<boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> >(boost::filesystem::basic_path<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, boost::filesystem::path_traits> const&)]+0x35): undefined reference to `boost::filesystem::detail::status_api(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, boost::system::error_code&)'
collect2: ld returned 1 exit status
make: *** [accesstimer] Error 1

你知道我在这里做错了吗?

现在我已经将 -I boost root 链接添加到它构建良好的第一个链接命令:
accesstimer: acctime.o bentimer.o
g++ -L/usr/local/boost/boost_1_39_0/stage/lib -lboost_system-gcc41-mt -lboost_filesystem-gcc41-mt -I /usr/local/boost/boost_1_39_0 acctime.o bentimer.o -o accesstimer

acctime.o: acctime.cpp bentimer.h
g++ -I /usr/local/boost/boost_1_39_0 -c acctime.cpp

bentimer.o: bentimer.cpp bentimer.h
g++ -c bentimer.cpp

但是当我执行我得到:
./accesstimer: error while loading shared libraries: libboost_system-gcc41-mt-1_39.so.1.39.0: cannot open shared object file: No such file or directory

该文件存在但它没有拿起它。

最佳答案

实际上你不应该删除整个尾随部分,只删除扩展名:

-lboost_system-gcc41-mt

boost_filesystem 也是如此:
-lboost_filesystem-gcc41-mt

关于boost - 无法在 makefile 中链接 boost.system,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1306899/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com