许多人(例如1,2)询问了如何使while arrayTwoNew.last == 0 {
arrayTwoNew.removeLast()
arrayOneNew.removeLast()
arrayThreeNew.removeLast()
}
正常工作,但在阅读这些内容后仍然遇到麻烦。
我正在尝试构建一个小的静态库。在将目录迭代器添加到某些源文件中之后,我更新了我的gcc,并添加了std::filesystem::directory_iterator
位,但是似乎没有任何作用,因为我不断收到错误消息
-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
这是我编译所有内容的小shell脚本。我也尝试了其他一些变体。
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.
答案 0 :(得分:3)
<filesystem>
仅在C ++ 17中添加到C ++标准库中。
g++ 7.3
(您的默认g++
)不完全符合此分数。它不会用<filesystem>
找到-std=c++17
。
合理地,它将不会用您发布的脚本要求的<filesystem>
找到-std=c++11
。
但是它将找到<experimental/filesystem>
或更高版本的std=c++11
。
您也有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++11
或std=c++14
来做到这一点:
$ g++-8 -std=c++11 main.cpp && echo $?
0
$ g++-8 -std=c++14 main.cpp && echo $?
0
使用g++-8
,您无需链接过渡库libstdc++fs
。
(顺便说一句,精明的钱总是在编译时启用严格的警告:
... -Wall -Wextra ...
)