exp
diff --git a/src/support/file.h b/src/support/file.h
index 8515354..254da50 100644
--- a/src/support/file.h
+++ b/src/support/file.h
@@ -21,13 +21,13 @@
 #ifndef wasm_support_file_h
 #define wasm_support_file_h
 
-#include <filesystem>
+#include <experimental/filesystem>
 #include <fstream>
 #include <string>
 #include <utility>
 #include <vector>
 
-namespace fs = std::filesystem;
+namespace fs = std::experimental::filesystem;
 
 namespace wasm {
 
diff --git a/src/support/path.h b/src/support/path.h
index eda3136..3bfcf6a 100644
--- a/src/support/path.h
+++ b/src/support/path.h
@@ -22,10 +22,10 @@
 #define wasm_support_path_h
 
 #include <cstdlib>
-#include <filesystem>
+#include <experimental/filesystem>
 #include <string>
 
-namespace fs = std::filesystem;
+namespace fs = std::experimental::filesystem;
 
 namespace wasm::Path {