23

我正在尝试使用 Ubuntu 12.10 上的 boost::filesystem 示例代码运行程序,但它不想构建。

#include <iostream>
#include <boost/filesystem.hpp>
using namespace boost::filesystem;
using namespace std;

void fun(const string& dirPath);
int main()
{
    fun("/home");
    return 0;
}

void fun(const string& dirPath)
{
    path p (dirPath); 

    if (exists(p))  
    {
        if (is_regular_file(p))   
            cout << p << " size is " << file_size(p) << '\n';

        else if (is_directory(p))    
            cout << p << "is a directory\n";

        else
            cout << p << "exists, but is neither a regular file nor a directory\n";
    }
    else
        cout << p << "does not exist\n";
}

和 CMake 代码:

project(tttest)
cmake_minimum_required(VERSION 2.8)
aux_source_directory(. SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})
FIND_PACKAGE(Boost 1.53 COMPONENTS filesystem system REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
link_directories(${Boost_LIBRARY_DIR})
TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${Boost_LIBRARIES})

不幸的是它会产生错误

CMakeFiles/tttest.dir/main.cpp.o: In function `boost::filesystem::exists(boost::filesystem::path const&)':
main.cpp:(.text._ZN5boost10filesystem6existsERKNS0_4pathE[_ZN5boost10filesystem6existsERKNS0_4pathE]+0x19): undefined reference to `boost::filesystem::detail::status(boost::filesystem::path const&, boost::system::error_code*)'
CMakeFiles/tttest.dir/main.cpp.o: In function `boost::filesystem::is_directory(boost::filesystem::path const&)':
main.cpp:(.text._ZN5boost10filesystem12is_directoryERKNS0_4pathE[_ZN5boost10filesystem12is_directoryERKNS0_4pathE]+0x19): undefined reference to `boost::filesystem::detail::status(boost::filesystem::path const&, boost::system::error_code*)'
CMakeFiles/tttest.dir/main.cpp.o: In function `boost::filesystem::is_regular_file(boost::filesystem::path const&)':
main.cpp:(.text._ZN5boost10filesystem15is_regular_fileERKNS0_4pathE[_ZN5boost10filesystem15is_regular_fileERKNS0_4pathE]+0x19): undefined reference to `boost::filesystem::detail::status(boost::filesystem::path const&, boost::system::error_code*)'
CMakeFiles/tttest.dir/main.cpp.o: In function `boost::filesystem::file_size(boost::filesystem::path const&)':
main.cpp:(.text._ZN5boost10filesystem9file_sizeERKNS0_4pathE[_ZN5boost10filesystem9file_sizeERKNS0_4pathE]+0x19): undefined reference to `boost::filesystem::detail::file_size(boost::filesystem::path const&, boost::system::error_code*)'
collect2: error: ld returned 1 exit status

这个问题的原因是什么以及如何解决?

4

5 回答 5

28

Boost 文件系统是 Boost 库之一,由于 C++0x 或 C++11 导致函数签名更改存在一些 ABI 问题。cf Boost 票:https ://svn.boost.org/trac/boost/ticket/6779

你有三个解决方案:

  1. 使用#include(参见http://www.ridgesolutions.ie/index.php/2013/05/30/boost-link-error-undefined-reference -to-boostfilesystemdetailcopy_file/):

    #define BOOST_NO_CXX11_SCOPED_ENUMS
    #include <boost/filesystem.hpp>
    #undef BOOST_NO_CXX11_SCOPED_ENUMS
    

    但是这个解决方案不是一个完整的解决方案,我读到它并不适合所有人。

  2. 使用 C++11 选项构建 BOOST(与您用于应用程序的选项相同):http ://hnrkptrsn.github.io/2013/02/26/c11-and-boost-setup-guide

    我也读过它并不适合所有人。

  3. 设置专用于您的应用程序的交叉编译器,您可以在专用环境中重建您需要的所有库。这确保了连贯性、稳定性以及更多的可维护性,当然是值得推荐的解决方案。我还没有读过它是否已经过测试——可能是的,而且可能有效。无论如何,交叉编译现在在计算机科学中得到了很好的掌握。你会发现很多很好的教程和支持。在 Linux Gentoo 中,他们有很棒的 sys-devel/crossdev 包,这使它变得非常容易。

在我自己的情况下,解决方案 1 已经解决了这个问题。一旦遇到另一个,我将切换到解决方案3。所以,我还没有测试它。

于 2013-08-01T08:01:48.220 回答
9

链接时需要添加 libboost_filesystem 库。或者 libboost_filesystem-mt 如果您的应用程序是多线程的。像这样:

g++ -o file -lboost_filesystem-mt source_file.cpp
于 2013-08-19T09:29:22.150 回答
3

对我有用的解决方案是用“-c”编译,然后像这样创建可执行文件:

g++ -c -o main.o main.cpp
g++ -o my_prog main.o -lboost_system -lboost_filesystem
于 2018-03-15T23:23:50.153 回答
1

对于某些 boost 模块,您必须编译库链接它们(使用 bootstrap.sh)。在你的情况下,你必须编译和链接Filesystem,而且可能System也是

看看这里

例如:

  • ./bootstrap.sh (bjam)
  • rm -rf bin.v2 阶段(在 2 个 bjam 命令之间)
  • ./bjam 发布工具集=gcc 地址模型=64 cxxflags=-fPIC
  • ./bjam 调试工具集=gcc 地址模型=64 cxxflags=-fPIC

如果您在 Windows 上进行链接,则不必手动链接您的库,因为它们是使用 pragma 自动链接的。在 Linux 上,您必须这样做。

根据文档,这些模块需要您获取或构建一个库:

  • Boost.文件系统
  • Boost.GraphParallel
  • Boost.IOStreams
  • Boost.MPI
  • Boost.ProgramOptions
  • Boost.Python
  • 升压正则表达式
  • Boost.序列化
  • 升压信号
  • 升压系统
  • Boost.Thread
  • 升压波
于 2013-03-26T10:08:17.883 回答
1

您需要添加以下库:

g++ -o file -lboost_system -lboost_filesystem sourcefile.cpp

如果您使用 Makefile:

CC=gcc
CXX=g++
PROG = program
CXXFLAGS := -std=c++1y -g -Wall
LDFLAGS = -L/usr/local/lib -L/usr/lib/x86_64-linux-gnu
LIBS= -lboost_system -lboost_filesystem

SRCS= main.cpp

OBJS=$(subst .cpp,.o,$(SRCS))

all: $(OBJS)
     $(CXX) $(CXXFLAGS) -o $(PROG) $(OBJS) $(LIBS) $(LDFLAGS)
于 2017-01-14T17:19:19.610 回答