`std::filesystem::directory_iterator` 编译器问题

`std::filesystem::directory_iterator` compiler issue

很多人(例如 , )问过如何让 std::filesystem::directory_iterator 工作,但我在阅读这些内容后仍然遇到问题。

我正在尝试构建一个小型静态库。在将目录迭代器添加到一些源文件中后,我更新了我的 gcc,并添加了 -lstdc++fs 位,但似乎没有任何效果,因为我不断收到错误消息

fatal error: filesystem: No such file or directory
 #include <filesystem>

如果我输入 gcc --version,我会得到

gcc (Ubuntu 7.3.0-16ubuntu3) 7.3.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

如果我输入 gcc-8 --version 我会得到

gcc-8 (Ubuntu 8.1.0-1ubuntu1) 8.1.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

这是我的 shell 编译所有内容的小脚本。我也尝试了一些其他变体。

EIGEN=/usr/include/eigen3

cd ./bin
for file in ../src/*cpp; do
        g++ -std=c++11 -fPIC -c -I$EIGEN -I../include -O3 $file "-lstdc++fs"
done    
ar crv libfoo.a *.o
cd ..

<filesystem> 仅随 C++17 添加到 C++ 标准库。

g++ 7.3(您的默认 g++)不完全符合此分数。它不会用 -std=c++17 定位 <filesystem>。 合理地,它不会定位 <filesystem>-std=c++11,这是您发布的脚本所要求的。 但它会用 std=c++11 或更高版本定位 <experimental/filesystem>

您还有 g++-8(大概是 g++ 8.1/8.2)。它将找到 <filesystem>std=c++17:

$ cat main.cpp 
#include <filesystem>

int main()
{
    return 0;
}
$ g++-8 -std=c++17 main.cpp && echo $?
0

有趣的是,它也可以使用 std=c++11std=c++14:

$ g++-8 -std=c++11 main.cpp && echo $?
0
$ g++-8 -std=c++14 main.cpp && echo $?
0

有了 g++-8,您将不需要 link 过渡库 libstdc++fs

(顺便说一下,聪明的钱总是在编译时启用严格的警告: ... -Wall -Wextra ...)