You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cmakelists.txt file specifies c++17 but then includes stdc++fs in the target_link_libraries. Both simple.cpp and benchmark.cpp use std::experimental::filesystem. This fails to build with gcc 9.4.0 on Ubuntu. Removing stdc++fs from the target_link_libraries and using std::filesystem fixes the error.
The text was updated successfully, but these errors were encountered:
The cmakelists.txt file specifies c++17 but then includes stdc++fs in the target_link_libraries. Both simple.cpp and benchmark.cpp use std::experimental::filesystem. This fails to build with gcc 9.4.0 on Ubuntu. Removing stdc++fs from the target_link_libraries and using std::filesystem fixes the error.
The text was updated successfully, but these errors were encountered: