2017-09-11 17:02:59 +00:00
|
|
|
include "llvm/Option/OptParser.td"
|
|
|
|
|
|
|
|
class F<string name>: Flag<["--", "-"], name>;
|
|
|
|
class J<string name>: Joined<["--", "-"], name>;
|
|
|
|
class S<string name>: Separate<["--", "-"], name>;
|
|
|
|
|
2019-08-14 09:35:40 +00:00
|
|
|
multiclass Eq<string name, string help> {
|
|
|
|
def NAME: Separate<["--", "-"], name>;
|
|
|
|
def NAME # _eq: Joined<["--", "-"], name # "=">, Alias<!cast<Separate>(NAME)>,
|
|
|
|
HelpText<help>;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass EqLong<string name, string help> {
|
|
|
|
def NAME: Separate<["--"], name>;
|
|
|
|
def NAME # _eq: Joined<["--"], name # "=">, Alias<!cast<Separate>(NAME)>,
|
|
|
|
HelpText<help>;
|
|
|
|
}
|
|
|
|
|
2020-08-26 06:24:37 +00:00
|
|
|
multiclass B<string name, string help1, string help2> {
|
|
|
|
def NAME: Flag<["--", "-"], name>, HelpText<help1>;
|
|
|
|
def no_ # NAME: Flag<["--", "-"], "no-" # name>, HelpText<help2>;
|
|
|
|
}
|
|
|
|
|
2017-09-11 17:02:59 +00:00
|
|
|
def L: JoinedOrSeparate<["-"], "L">, MetaVarName<"<dir>">,
|
|
|
|
HelpText<"Add a directory to the library search path">;
|
2020-08-26 06:25:52 +00:00
|
|
|
defm allow_multiple_definition: B<"allow-multiple-definition",
|
|
|
|
"Allow multiple definitions",
|
|
|
|
"Do not allow multiple definitions (default)">;
|
2019-01-29 19:24:32 +00:00
|
|
|
def Bdynamic: F<"Bdynamic">, HelpText<"Link against shared libraries">;
|
|
|
|
def Bstatic: F<"Bstatic">, HelpText<"Do not link against shared libraries">;
|
2020-04-25 21:49:44 +00:00
|
|
|
def disable_auto_import: F<"disable-auto-import">,
|
|
|
|
HelpText<"Don't automatically import data symbols from other DLLs without dllimport">;
|
|
|
|
def disable_runtime_pseudo_reloc: F<"disable-runtime-pseudo-reloc">,
|
|
|
|
HelpText<"Don't do automatic imports that require runtime fixups">;
|
2020-08-26 13:02:52 +00:00
|
|
|
defm dynamicbase: B<"dynamicbase", "Enable ASLR", "Disable ASLR">;
|
2020-04-25 21:49:44 +00:00
|
|
|
def enable_auto_import: F<"enable-auto-import">,
|
|
|
|
HelpText<"Automatically import data symbols from other DLLs where needed">;
|
|
|
|
def enable_runtime_pseudo_reloc: F<"enable-runtime-pseudo-reloc">,
|
|
|
|
HelpText<"Allow automatic imports that require runtime fixups">;
|
2019-08-14 09:35:44 +00:00
|
|
|
defm entry: Eq<"entry", "Name of entry point symbol">, MetaVarName<"<entry>">;
|
2019-02-19 21:57:49 +00:00
|
|
|
def exclude_all_symbols: F<"exclude-all-symbols">,
|
|
|
|
HelpText<"Don't automatically export any symbols">;
|
2017-10-12 05:37:18 +00:00
|
|
|
def export_all_symbols: F<"export-all-symbols">,
|
|
|
|
HelpText<"Export all symbols even if a def file or dllexport attributes are used">;
|
2020-07-13 21:12:13 +00:00
|
|
|
defm file_alignment: Eq<"file-alignment", "Set file alignment">;
|
2020-08-26 06:24:37 +00:00
|
|
|
defm gc_sections: B<"gc-sections",
|
|
|
|
"Remove unused sections",
|
|
|
|
"Don't remove unused sections">;
|
2019-05-17 11:07:38 +00:00
|
|
|
def help: F<"help">, HelpText<"Print option help">;
|
2017-11-15 08:18:20 +00:00
|
|
|
def icf: J<"icf=">, HelpText<"Identical code folding">;
|
2017-11-15 08:18:15 +00:00
|
|
|
def image_base: S<"image-base">, HelpText<"Base address of the program">;
|
2020-08-26 06:24:37 +00:00
|
|
|
defm insert_timestamp: B<"insert-timestamp",
|
|
|
|
"Include PE header timestamp",
|
|
|
|
"Don't include PE header timestamp">;
|
2018-03-14 20:17:24 +00:00
|
|
|
def kill_at: F<"kill-at">, HelpText<"Remove @n from exported symbols">;
|
2017-09-11 20:54:51 +00:00
|
|
|
def l: JoinedOrSeparate<["-"], "l">, MetaVarName<"<libName>">,
|
|
|
|
HelpText<"Root name of library to use">;
|
2017-09-11 17:02:59 +00:00
|
|
|
def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target emulation">;
|
2019-08-14 09:35:40 +00:00
|
|
|
defm major_os_version: EqLong<"major-os-version",
|
|
|
|
"Set the OS and subsystem major version">;
|
|
|
|
defm major_subsystem_version: EqLong<"major-subsystem-version",
|
|
|
|
"Set the OS and subsystem major version">;
|
|
|
|
defm map: Eq<"Map", "Output a linker map">;
|
|
|
|
defm minor_os_version: EqLong<"minor-os-version",
|
|
|
|
"Set the OS and subsystem minor version">;
|
|
|
|
defm minor_subsystem_version: EqLong<"minor-subsystem-version",
|
|
|
|
"Set the OS and subsystem minor version">;
|
2020-07-27 20:44:41 +00:00
|
|
|
def no_seh: F<"no-seh">, HelpText<"Set the 'no SEH' flag in the executable">;
|
2017-11-15 08:18:06 +00:00
|
|
|
def large_address_aware: Flag<["--"], "large-address-aware">,
|
|
|
|
HelpText<"Enable large addresses">;
|
2017-09-11 17:02:59 +00:00
|
|
|
def o: JoinedOrSeparate<["-"], "o">, MetaVarName<"<path>">,
|
|
|
|
HelpText<"Path to file to write output">;
|
2019-08-14 09:35:44 +00:00
|
|
|
defm out_implib: Eq<"out-implib", "Import library name">;
|
|
|
|
defm output_def: Eq<"output-def", "Output def file">;
|
2020-07-13 21:12:13 +00:00
|
|
|
defm section_alignment: Eq<"section-alignment", "Set section alignment">;
|
2017-09-11 17:02:59 +00:00
|
|
|
def shared: F<"shared">, HelpText<"Build a shared object">;
|
2019-08-14 09:35:40 +00:00
|
|
|
defm subs: Eq<"subsystem", "Specify subsystem">;
|
2017-09-14 18:33:21 +00:00
|
|
|
def stack: S<"stack">;
|
2017-11-03 22:10:37 +00:00
|
|
|
def strip_all: F<"strip-all">,
|
|
|
|
HelpText<"Omit all symbol information from the output binary">;
|
2018-06-29 06:08:31 +00:00
|
|
|
def strip_debug: F<"strip-debug">,
|
|
|
|
HelpText<"Omit all debug information, but keep symbol information">;
|
2020-10-06 10:03:49 +00:00
|
|
|
defm reproduce: Eq<"reproduce",
|
|
|
|
"Write a tar file containing input files and command line options to reproduce link">;
|
|
|
|
defm require_defined: Eq<"require-defined",
|
|
|
|
"Force symbol to be added to symbol table as an undefined one">;
|
2019-08-14 09:35:40 +00:00
|
|
|
defm undefined: Eq<"undefined", "Include symbol in the link, if available">;
|
2020-08-26 06:24:37 +00:00
|
|
|
defm whole_archive: B<"whole-archive",
|
|
|
|
"Include all object files for following archives",
|
|
|
|
"No longer include all object files for following archives">;
|
2019-05-17 11:07:42 +00:00
|
|
|
def v: Flag<["-"], "v">, HelpText<"Display the version number">;
|
2017-09-11 20:43:39 +00:00
|
|
|
def verbose: F<"verbose">, HelpText<"Verbose mode">;
|
2019-05-17 11:07:42 +00:00
|
|
|
def version: F<"version">, HelpText<"Display the version number and exit">;
|
2020-10-06 10:54:49 +00:00
|
|
|
defm wrap: Eq<"wrap", "Use wrapper functions for symbol">,
|
|
|
|
MetaVarName<"<symbol>">;
|
2017-09-11 20:43:39 +00:00
|
|
|
|
|
|
|
// LLD specific options
|
|
|
|
def _HASH_HASH_HASH : Flag<["-"], "###">,
|
|
|
|
HelpText<"Print (but do not run) the commands to run for this compilation">;
|
2019-04-19 13:50:43 +00:00
|
|
|
def appcontainer: F<"appcontainer">, HelpText<"Set the appcontainer flag in the executable">;
|
2019-08-14 09:35:40 +00:00
|
|
|
defm delayload: Eq<"delayload", "DLL to load only on demand">;
|
2017-11-03 07:18:37 +00:00
|
|
|
def mllvm: S<"mllvm">;
|
2019-08-14 09:35:40 +00:00
|
|
|
defm pdb: Eq<"pdb", "Output PDB debug info file, chosen implicitly if the argument is empty">;
|
2020-05-24 09:29:16 +00:00
|
|
|
defm thinlto_cache_dir: EqLong<"thinlto-cache-dir",
|
|
|
|
"Path to ThinLTO cached object file directory">;
|
2017-11-03 07:18:37 +00:00
|
|
|
def Xlink : J<"Xlink=">, MetaVarName<"<arg>">,
|
|
|
|
HelpText<"Pass <arg> to the COFF linker">;
|
2017-09-11 17:02:59 +00:00
|
|
|
|
|
|
|
// Alias
|
|
|
|
def alias_entry_e: JoinedOrSeparate<["-"], "e">, Alias<entry>;
|
2017-11-03 22:10:37 +00:00
|
|
|
def alias_strip_s: Flag<["-"], "s">, Alias<strip_all>;
|
2018-06-29 06:08:31 +00:00
|
|
|
def alias_strip_S: Flag<["-"], "S">, Alias<strip_debug>;
|
2019-08-14 09:35:44 +00:00
|
|
|
def alias_undefined_u: JoinedOrSeparate<["-"], "u">, Alias<undefined>;
|
2019-01-29 08:38:48 +00:00
|
|
|
|
|
|
|
// Ignored options
|
2019-01-29 19:24:32 +00:00
|
|
|
def: Joined<["-"], "O">;
|
|
|
|
def: F<"build-id">;
|
|
|
|
def: F<"disable-auto-image-base">;
|
|
|
|
def: F<"enable-auto-image-base">;
|
|
|
|
def: F<"end-group">;
|
|
|
|
def: Flag<["--"], "full-shutdown">;
|
|
|
|
def: F<"high-entropy-va">;
|
|
|
|
def: S<"major-image-version">;
|
|
|
|
def: S<"minor-image-version">;
|
|
|
|
def: F<"nxcompat">;
|
|
|
|
def: F<"pic-executable">;
|
2019-01-29 08:38:48 +00:00
|
|
|
def: S<"plugin">;
|
|
|
|
def: J<"plugin=">;
|
|
|
|
def: S<"plugin-opt">;
|
|
|
|
def: J<"plugin-opt=">;
|
2019-01-29 19:24:32 +00:00
|
|
|
def: J<"sysroot">;
|
|
|
|
def: F<"start-group">;
|
|
|
|
def: F<"tsaware">;
|