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 07371ce commit 4feba9cCopy full SHA for 4feba9c
clang/lib/Interpreter/Interpreter.cpp
@@ -196,7 +196,6 @@ IncrementalCompilerBuilder::CreateCpp() {
196
#ifdef __EMSCRIPTEN__
197
Argv.push_back("-target");
198
Argv.push_back("wasm32-unknown-emscripten");
199
- Argv.push_back("-pie");
200
Argv.push_back("-shared");
201
#endif
202
Argv.insert(Argv.end(), UserArgs.begin(), UserArgs.end());
clang/lib/Interpreter/Wasm.cpp
@@ -77,7 +77,6 @@ llvm::Error WasmIncrementalExecutor::addModule(PartialTranslationUnit &PTU) {
77
"--no-entry",
78
"--export-all",
79
"--experimental-pic",
80
- "--export-dynamic",
81
"--stack-first",
82
"--allow-undefined",
83
OutputFileName.c_str(),
0 commit comments