2

从我的终端会话:

Go Trojans >make all
g++ -static -I/usr/include/boost -I/usr/include/boost/filesystem get_sys_info.cpp
/tmp/cc6nK9EV.o: In function `__static_initialization_and_destruction_0(int, int)':
get_sys_info.cpp:(.text+0x13a): undefined reference to `boost::system::generic_category()'
get_sys_info.cpp:(.text+0x146): undefined reference to `boost::system::generic_category()'
get_sys_info.cpp:(.text+0x152): undefined reference to `boost::system::system_category()'
collect2: ld returned 1 exit status
make: *** [all] Error 1
Go Trojans >

导入 Boost C++ 文件系统库的 C++ 代码:

#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>

// Include Boost C++ libraries
#include <boost/filesystem.hpp>
using namespace boost::filesystem;


using namespace std;

int main() {
    string my_str = "This is a string.";

    cout << my_str << endl;
/*
    my_str = system("pwd");
    my_str.append("\b\b\b\b\b\b\b\b extra");
    cout << my_str << "a\b\b\b\b\b\b=" << endl;
*/

    path p(".");
    cout << p << "==" << endl;



    return 0;
}

来自我的 Boost C++ 库所在目录的终端会话的片段。

Go Trojans >pwd
/usr/include/boost
Go Trojans >ls -al
total 1308
drwxr-xr-x  86 root root 12288 Jan 29 09:30 .
drwxr-xr-x 119 root root 20480 Feb  4 08:08 ..
...
drwxr-xr-x   5 root root  4096 Jan 29 09:30 filesystem
-rw-r--r--   1 root root  1340 Jan  5  2012 filesystem.hpp

如何解决未定义的引用?我是否正确导入了 Boost C++ 文件系统库?我是否也在正确编译代码?

我的错误是什么?你能帮帮我吗?

非常感谢,祝您有美好的一天!再见!

4

1 回答 1

3

您需要-L/path/to/your/library在调用前面使用-lboost_systemwhich 将告诉编译器在哪里找到共享对象。但是,即使您可以编译代码,它也不会运行,因为运行时无论如何都无法找到该文件,因此您不得不更新路径。

我假设您使用的是学校计算机,因此编辑LD_LIBRARY_PATH或使用/sbin/ldconfig是非法的。

如果它们不违法,您也可以

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/boost

在你的~/.bashrc或同等的

或者你可以

touch /etc/ld.so.conf.d/boost.conf

vi /etc/ld.so.conf/boost.conf

把你的boost库的路径放在这里,然后保存文件。然后运行:

/sbin/ldconfig

它将重新解析所有内容/etc/ld.so.conf.d并将更新您的运行时路径。

祝你好运!

于 2013-02-06T14:00:53.733 回答