使用 boost::filesystem 链接的程序与 clang 但不是 gcc

Program using boost::filesystem links with clang but not gcc

我有一个非常简单的程序,使用 boost::filesystem,取自图书馆的教程。

// fs_example.cpp
#include <boost/filesystem.hpp>
#include <iostream>

using namespace boost::filesystem;

int main() {
  path p = current_path();
  directory_iterator it{p};
  while (it != directory_iterator()) {
    std::cout << *it++ << '\n';
  }
}

我正在使用以下极其简单的脚本构建它,它应该以正确的顺序向 linker 提供正确的参数:

#!/bin/sh

set -u

${CXX} \
    -Wall \
    -Werror \
    --std=c++14 \
    -lboost_system \
    -lboost_filesystem \
    -o fs_example \
    fs_example.cpp

使用env CXX=clang++ ./build.sh,程序编译并links

$ env CXX=clang++ ./build.sh
$ ls
build.sh*  fs_example*  fs_example.cpp

使用env CXX=g++ ./build.sh,程序编译失败。

$ env CXX=g++ ./build.sh 
/tmp/ccFcZ3W6.o: In function `__static_initialization_and_destruction_0(int, int)':
fs_example.cpp:(.text+0x1c1): undefined reference to `boost::system::generic_category()'
...
collect2: error: ld returned 1 exit status

为什么 GCC 会产生 link 次错误,而 Clang 不会?我该如何诊断为什么即使提供了参数,linker 也无法在 GCC 路径的 boost::system 中找到符号?

你应该假定 "one-pass linking" 这意味着较低级别 boost_system 必须出现在较高级别 boost_filesystem 之后。