We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d55c47d commit 56bc148Copy full SHA for 56bc148
test/test_interpreter.cpp
@@ -108,10 +108,14 @@ TEST_SUITE("execute_request")
108
109
TEST_CASE("headers found in sysroot/include/compat")
110
{
111
+#if defined(XEUS_CPP_EMSCRIPTEN_WASM_BUILD)
112
std::vector<const char*> Args = {
113
"-v",
114
"-Xclang", "-iwithsysroot/include/compat"
115
};
116
+#else
117
+ std::vector<const char*> Args = {/*"-v", "resource-dir", "....."*/};
118
+#endif
119
120
xcpp::interpreter interpreter((int)Args.size(), Args.data());
121
std::string code = "#include <xlocale.h>";
0 commit comments