我正在尝试在我正在编写的一些代码中使用 boost/filesystem 库。我似乎很难编译它。我正在运行 Debian Wheezy,并且有 boost 1.49 版(如果您使用 apt-get 安装,就会出现这种情况)。我正在尝试编译文档中提供的示例
#include <iostream>
#include <boost/filesystem.hpp>
using namespace boost::filesystem;
int main(int argc, char* argv[])
{
if (argc < 2)
{
std::cout << "Usage: tut1 path\n";
return 1;
}
std::cout << argv[1] << " " << file_size(argv[1]) << '\n';
return 0;
}
我使用以下命令:
g++ temp.cc -o temp /usr/lib/libboost_filesystem.a
我收到许多错误,例如:
/usr/lib/libboost_filesystem.a(operations.o): In function `boost::filesystem3::detail::dir_itr_close(void*&, void*&)':
(.text+0x4d): undefined reference to `boost::system::system_category()'
/usr/lib/libboost_filesystem.a(operations.o): In function `boost::filesystem3::detail::directory_iterator_increment(boost::filesystem3::directory_iterator&, boost::system::error_code*)':
(.text+0xe3): undefined reference to `boost::system::system_category()'
这可能是一些链接错误吧?关于如何解决它的任何想法?
更新 #1:我尝试使用 -lboost_filesyste 和 -L /usr/lib 运行它。它给了我以下错误:
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'