2020-06-07から1日間の記事一覧

g++でfilesystem使おうとしたらそんなものはないと言われた

C++

以下のコードのコンパイルが通らなかった(プリプロセスでつまずいた)話。 #include <iostream> #include <filesystem> using namespace std; using namespace std::filesystem; int main() { cout << current_path() << endl; } $ g++ -std=c++17 ./main.cpp -lstdc++fs ./main.cpp</filesystem></iostream>…