Home | History | Annotate | Download | only in llvm-ld

Lines Matching refs:Strip

53 static cl::opt<bool> Strip("strip-all", 
54 cl::desc("Strip all symbol info from executable"));
56 static cl::alias A0("s", cl::desc("Alias for --strip-all"),
57 cl::aliasopt(Strip));
59 static cl::opt<bool> StripDebug("strip-debug",
60 cl::desc("Strip debugger symbol info from executable"));
62 static cl::alias A1("S", cl::desc("Alias for --strip-debug"),
96 // If the -s or -S command line options were specified, strip the symbols out
98 // that we are supporting; they alias -strip-all and -strip-debug.
99 if (Strip || StripDebug)
100 addPass(Passes, createStripSymbolsPass(StripDebug && !Strip));