We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current clang version for MacOS 10.13.6 is 4.2.1 doesn't support either or <experimental/filesystem>. In order to make filesystem API compatible, I add ghc::filesystem by myself as an additional option by referring to (https://stackoverflow.com/questions/49577343/filesystem-with-c17-doesnt-work-on-my-mac-os-x-high-sierra). Here is the source code if ghc:(https://github.com/gulrak/filesystem).
Here are the changes I made:
#include <filesystem>
#include <ghc/filesystem.hpp>
namespace fs =std::filesystem
namespace fs = ghc::filesystem
ScannerWorkDirManager.cpp
PluginRegistry.cpp
add_subdirectory(<Your ghc source code path> [Your target binary path]) target_link_libraries(iblessing ghc_filesystem)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current clang version for MacOS 10.13.6 is 4.2.1 doesn't support either or <experimental/filesystem>. In order to make filesystem API compatible, I add ghc::filesystem by myself as an additional option by referring to (https://stackoverflow.com/questions/49577343/filesystem-with-c17-doesnt-work-on-my-mac-os-x-high-sierra). Here is the source code if ghc:(https://github.com/gulrak/filesystem).
Here are the changes I made:
#include <filesystem>
to#include <ghc/filesystem.hpp>
;namespace fs =std::filesystem
->namespace fs = ghc::filesystem
inScannerWorkDirManager.cpp
andPluginRegistry.cpp
The text was updated successfully, but these errors were encountered: