mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
master 2e10b7a39b9, the last commit before the llvmorg-12-init tag, from which release/11.x was branched. Note that for now, I rolled back all our local changes to make merging easier, and I will reapply the still-relevant ones after updating to 11.0.0-rc1.
20 lines
641 B
TableGen
20 lines
641 B
TableGen
include "CommonOpts.td"
|
|
|
|
def output : JoinedOrSeparate<["-"], "o">, HelpText<"Write output to <file>">,
|
|
MetaVarName<"<file>">;
|
|
|
|
def s : Flag<["-"], "s">,
|
|
Alias<strip_all>,
|
|
HelpText<"Alias for --strip-all">;
|
|
def no_strip_all : Flag<["--"], "no-strip-all">,
|
|
HelpText<"Disable --strip-all">;
|
|
|
|
def d : Flag<["-"], "d">,
|
|
Alias<strip_debug>,
|
|
HelpText<"Alias for --strip-debug">;
|
|
def S : Flag<["-"], "S">,
|
|
Alias<strip_debug>,
|
|
HelpText<"Alias for --strip-debug">;
|
|
|
|
def strip_swift_symbols : Flag<["-"], "T">,
|
|
HelpText<"Remove Swift symbols">;
|