From d53c64875ff0367dbc28ccea3d3299809fd8ee36 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 3 Dec 2018 15:35:35 -0800 Subject: Add --strip that removes debug info (#1787) This is sort of like --strip on a native binary. The more specific use case for us is e.g. you link with a library that has -g in its CFLAGS, but you don't want debug info in your final executable (I hit this with poppler now). We can make emcc pass this to binaryen if emcc is not building an output with intended debug info. --- src/passes/pass.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/passes/pass.cpp') diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index d2478eaba..e89fed83f 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -131,6 +131,7 @@ void PassRegistry::registerPasses() { registerPass("souperify-single-use", "emit Souper IR in text form (single-use nodes only)", createSouperifySingleUsePass); registerPass("spill-pointers", "spill pointers to the C stack (useful for Boehm-style GC)", createSpillPointersPass); registerPass("ssa", "ssa-ify variables so that they have a single assignment", createSSAifyPass); + registerPass("strip", "strip debug info (including the names section)", createStripPass); registerPass("trap-mode-clamp", "replace trapping operations with clamping semantics", createTrapModeClamp); registerPass("trap-mode-js", "replace trapping operations with js semantics", createTrapModeJS); registerPass("untee", "removes tee_locals, replacing them with sets and gets", createUnteePass); -- cgit v1.2.3