2015-07-25 05:03:07 +08:00
|
|
|
include "llvm/Option/OptParser.td"
|
|
|
|
|
2016-06-21 07:10:40 +08:00
|
|
|
// For options whose names are multiple letters, either one dash or
|
|
|
|
// two can precede the option name except those that start with 'o'.
|
2016-06-21 16:45:50 +08:00
|
|
|
class F<string name>: Flag<["--", "-"], name>;
|
|
|
|
class J<string name>: Joined<["--", "-"], name>;
|
2015-10-14 05:02:34 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
multiclass Eq<string name> {
|
2018-02-03 06:45:47 +08:00
|
|
|
def NAME: Separate<["--", "-"], name>;
|
|
|
|
def NAME # _eq: Joined<["--", "-"], name # "=">, Alias<!cast<Separate>(NAME)>;
|
2017-07-22 00:27:26 +08:00
|
|
|
}
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
multiclass B<string name, string help1, string help2> {
|
|
|
|
def NAME: Flag<["--", "-"], name>, HelpText<help1>;
|
|
|
|
def no_ # NAME: Flag<["--", "-"], "no-" # name>, HelpText<help2>;
|
|
|
|
}
|
|
|
|
|
2018-03-02 07:06:10 +08:00
|
|
|
defm auxiliary: Eq<"auxiliary">,
|
|
|
|
HelpText<"Set DT_AUXILIARY field to the specified name">;
|
2016-09-02 17:13:05 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def Bsymbolic: F<"Bsymbolic">, HelpText<"Bind defined symbols locally">;
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def Bsymbolic_functions: F<"Bsymbolic-functions">,
|
|
|
|
HelpText<"Bind defined function symbols locally">;
|
2016-04-08 06:49:21 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def Bdynamic: F<"Bdynamic">, HelpText<"Link against shared libraries">;
|
|
|
|
|
|
|
|
def Bstatic: F<"Bstatic">, HelpText<"Do not link against shared libraries">;
|
|
|
|
|
|
|
|
def build_id: F<"build-id">, HelpText<"Generate build ID note">;
|
|
|
|
|
|
|
|
def build_id_eq: J<"build-id=">, HelpText<"Generate build ID note">;
|
|
|
|
|
2018-02-03 06:24:06 +08:00
|
|
|
defm check_sections : B<"check-sections",
|
|
|
|
"Check section addresses for overlaps",
|
|
|
|
"Do not check section addresses for overlaps">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm compress_debug_sections : Eq<"compress-debug-sections">,
|
2017-04-17 16:58:12 +08:00
|
|
|
HelpText<"Compress DWARF debug sections">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm defsym: Eq<"defsym">, HelpText<"Define a symbol alias">;
|
2017-04-26 18:40:02 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm library_path: Eq<"library-path">,
|
|
|
|
HelpText<"Add a directory to the library search path">, MetaVarName<"<dir>">;
|
2015-09-12 06:42:45 +08:00
|
|
|
|
2017-08-25 02:34:44 +08:00
|
|
|
def O: JoinedOrSeparate<["-"], "O">, HelpText<"Optimize output file size">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm Tbss: Eq<"Tbss">,
|
|
|
|
HelpText<"Same as --section-start with .bss as the sectionname">;
|
2016-09-14 21:07:13 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm Tdata: Eq<"Tdata">,
|
|
|
|
HelpText<"Same as --section-start with .data as the sectionname">;
|
2016-09-14 21:07:13 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm Ttext: Eq<"Ttext">,
|
|
|
|
HelpText<"Same as --section-start with .text as the sectionname">;
|
2016-09-14 21:07:13 +08:00
|
|
|
|
2018-02-06 08:45:15 +08:00
|
|
|
defm allow_multiple_definition: B<"allow-multiple-definition",
|
|
|
|
"Allow multiple definitions",
|
|
|
|
"Do not allow multiple definitions">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
2018-02-05 18:15:08 +08:00
|
|
|
defm apply_dynamic_relocs: B<"apply-dynamic-relocs",
|
|
|
|
"Apply dynamic relocations to place",
|
|
|
|
"Do not apply dynamic relocations to place">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm as_needed: B<"as-needed",
|
|
|
|
"Only set DT_NEEDED for shared libraries if used",
|
|
|
|
"Always set DT_NEEDED for shared libraries">;
|
2015-10-24 03:02:19 +08:00
|
|
|
|
2018-04-18 07:30:05 +08:00
|
|
|
defm call_graph_ordering_file: Eq<"call-graph-ordering-file">,
|
|
|
|
HelpText<"Layout sections to optimize the given callgraph">;
|
|
|
|
|
2017-07-21 02:17:55 +08:00
|
|
|
// -chroot doesn't have a help text because it is an internal option.
|
2018-03-02 07:06:10 +08:00
|
|
|
defm chroot: Eq<"chroot">;
|
2017-07-21 02:17:55 +08:00
|
|
|
|
2016-12-22 16:20:28 +08:00
|
|
|
def color_diagnostics: F<"color-diagnostics">,
|
|
|
|
HelpText<"Use colors in diagnostics">;
|
|
|
|
|
|
|
|
def color_diagnostics_eq: J<"color-diagnostics=">,
|
2018-05-11 02:19:02 +08:00
|
|
|
HelpText<"Use colors in diagnostics; one of 'always', 'never', 'auto'">;
|
2016-11-26 04:27:32 +08:00
|
|
|
|
2018-03-15 04:29:45 +08:00
|
|
|
defm cref: B<"cref",
|
|
|
|
"Output cross reference table",
|
|
|
|
"Do not output cross reference table">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm define_common: B<"define-common",
|
|
|
|
"Assign space to common symbols",
|
|
|
|
"Do not assign space to common symbols">;
|
2017-01-24 11:41:20 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm demangle: B<"demangle",
|
|
|
|
"Demangle symbol names",
|
|
|
|
"Do not demangle symbol names">;
|
2017-01-15 11:45:46 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def disable_new_dtags: F<"disable-new-dtags">,
|
|
|
|
HelpText<"Disable new dynamic tags">;
|
2015-09-23 07:38:23 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def discard_all: F<"discard-all">, HelpText<"Delete all local symbols">;
|
|
|
|
|
|
|
|
def discard_locals: F<"discard-locals">,
|
|
|
|
HelpText<"Delete temporary local symbols">;
|
|
|
|
|
|
|
|
def discard_none: F<"discard-none">,
|
|
|
|
HelpText<"Keep all symbols in the symbol table">;
|
|
|
|
|
2018-03-02 07:06:10 +08:00
|
|
|
defm dynamic_linker: Eq<"dynamic-linker">,
|
2015-10-01 08:33:02 +08:00
|
|
|
HelpText<"Which dynamic linker to use">;
|
2015-09-26 03:24:57 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm dynamic_list: Eq<"dynamic-list">,
|
2016-04-14 02:51:11 +08:00
|
|
|
HelpText<"Read a list of dynamic symbols">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm eh_frame_hdr: B<"eh-frame-hdr",
|
|
|
|
"Request creation of .eh_frame_hdr section and PT_GNU_EH_FRAME segment header",
|
|
|
|
"Do not create .eh_frame_hdr section">;
|
2016-04-08 03:24:51 +08:00
|
|
|
|
2017-02-09 00:18:10 +08:00
|
|
|
def emit_relocs: F<"emit-relocs">, HelpText<"Generate relocations in output">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def enable_new_dtags: F<"enable-new-dtags">,
|
|
|
|
HelpText<"Enable new dynamic tags">;
|
|
|
|
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
def end_group: F<"end-group">,
|
|
|
|
HelpText<"Ignored for compatibility with GNU unless you pass --warn-backrefs">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def end_lib: F<"end-lib">,
|
|
|
|
HelpText<"End a grouping of objects that should be treated as if they were together in an archive">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm entry: Eq<"entry">, HelpText<"Name of entry point symbol">,
|
|
|
|
MetaVarName<"<entry>">;
|
2015-09-24 23:08:23 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm error_limit: Eq<"error-limit">,
|
2016-11-24 02:15:37 +08:00
|
|
|
HelpText<"Maximum number of errors to emit before stopping (0 = no limit)">;
|
|
|
|
|
2017-03-24 02:16:42 +08:00
|
|
|
def error_unresolved_symbols: F<"error-unresolved-symbols">,
|
2017-01-26 10:19:20 +08:00
|
|
|
HelpText<"Report unresolved symbols as errors">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm exclude_libs: Eq<"exclude-libs">,
|
2017-06-21 23:36:24 +08:00
|
|
|
HelpText<"Exclude static libraries from automatic export">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm export_dynamic: B<"export-dynamic",
|
|
|
|
"Put symbols in the dynamic symbol table",
|
|
|
|
"Do not put symbols in the dynamic symbol table">;
|
2015-09-28 20:52:21 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm export_dynamic_symbol: Eq<"export-dynamic-symbol">,
|
2016-04-23 02:44:06 +08:00
|
|
|
HelpText<"Put a symbol in the dynamic symbol table">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm fatal_warnings: B<"fatal-warnings",
|
|
|
|
"Treat warnings as errors",
|
|
|
|
"Do not treat warnings as errors">;
|
2016-07-04 21:43:12 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm filter: Eq<"filter">,
|
|
|
|
HelpText<"Set DT_FILTER field to the specified name">;
|
2017-07-17 17:43:18 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm fini: Eq<"fini">,
|
|
|
|
HelpText<"Specify a finalizer function">, MetaVarName<"<symbol>">;
|
2015-10-05 18:29:46 +08:00
|
|
|
|
2017-12-05 23:59:05 +08:00
|
|
|
def fix_cortex_a53_843419: F<"fix-cortex-a53-843419">,
|
|
|
|
HelpText<"Apply fixes for AArch64 Cortex-A53 erratum 843419">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm format: Eq<"format">,
|
|
|
|
HelpText<"Change the input format of the inputs following this option">,
|
|
|
|
MetaVarName<"<input-format>">;
|
2016-09-10 06:08:04 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm gc_sections: B<"gc-sections",
|
|
|
|
"Enable garbage collection of unused sections",
|
|
|
|
"Disable garbage collection of unused sections">;
|
2016-09-07 19:43:18 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm gdb_index: B<"gdb-index",
|
|
|
|
"Generate .gdb_index section",
|
|
|
|
"Do not generate .gdb_index section">;
|
2016-10-20 17:19:48 +08:00
|
|
|
|
2018-02-03 05:44:06 +08:00
|
|
|
defm gnu_unique: B<"gnu-unique",
|
|
|
|
"Enable STB_GNU_UNIQUE symbol binding",
|
|
|
|
"Disable STB_GNU_UNIQUE symbol binding">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm hash_style: Eq<"hash-style">,
|
2015-10-22 16:21:35 +08:00
|
|
|
HelpText<"Specify hash style (sysv, gnu or both)">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def help: F<"help">, HelpText<"Print option help">;
|
|
|
|
|
2017-08-10 05:32:38 +08:00
|
|
|
def icf_all: F<"icf=all">, HelpText<"Enable identical code folding">;
|
|
|
|
|
|
|
|
def icf_none: F<"icf=none">, HelpText<"Disable identical code folding">;
|
ELF2: Implement --gc-sections.
Section garbage collection is a feature to remove unused sections
from outputs. Unused sections are sections that cannot be reachable
from known GC-root symbols or sections. Naturally the feature is
implemented as a mark-sweep garbage collector.
In this patch, I added Live bit to InputSectionBase. If and only
if Live bit is on, the section will be written to the output.
Starting from GC-root symbols or sections, a new function, markLive(),
visits all reachable sections and sets their Live bits. Writer then
ignores sections whose Live bit is off, so that such sections are
excluded from the output.
This change has small negative impact on performance if you use
the feature because making sections means more work. The time to
link Clang changes from 0.356s to 0.386s, or +8%.
It reduces Clang size from 57,764,984 bytes to 55,296,600 bytes.
That is 4.3% reduction.
http://reviews.llvm.org/D13950
llvm-svn: 251043
2015-10-23 02:49:53 +08:00
|
|
|
|
2018-01-10 09:37:36 +08:00
|
|
|
def ignore_function_address_equality: F<"ignore-function-address-equality">,
|
|
|
|
HelpText<"lld can break the address equality of functions">;
|
|
|
|
|
|
|
|
def ignore_data_address_equality: F<"ignore-data-address-equality">,
|
|
|
|
HelpText<"lld can break the address equality of data">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm image_base : Eq<"image-base">, HelpText<"Set the base address">;
|
2016-07-13 03:37:53 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm init: Eq<"init">, HelpText<"Specify an initializer function">,
|
|
|
|
MetaVarName<"<symbol>">;
|
2015-10-05 18:29:46 +08:00
|
|
|
|
2018-03-07 05:25:37 +08:00
|
|
|
defm just_symbols: Eq<"just-symbols">, HelpText<"Just link symbols">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm library: Eq<"library">, HelpText<"Root name of library to use">,
|
|
|
|
MetaVarName<"<libName>">;
|
2015-09-29 04:30:11 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def lto_O: J<"lto-O">, MetaVarName<"<opt-level>">,
|
2016-04-01 05:00:27 +08:00
|
|
|
HelpText<"Optimization level for LTO">;
|
|
|
|
|
2016-06-30 16:43:23 +08:00
|
|
|
def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target emulation">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm Map: Eq<"Map">, HelpText<"Print a link map to the specified file">;
|
2017-01-14 05:05:46 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm merge_exidx_entries: B<"merge-exidx-entries",
|
|
|
|
"Enable merging .ARM.exidx entries",
|
|
|
|
"Disable merging .ARM.exidx entries">;
|
2017-12-15 19:09:41 +08:00
|
|
|
|
2016-09-03 03:20:33 +08:00
|
|
|
def nostdlib: F<"nostdlib">,
|
|
|
|
HelpText<"Only search directories specified on the command line">;
|
|
|
|
|
2016-11-26 04:27:32 +08:00
|
|
|
def no_color_diagnostics: F<"no-color-diagnostics">,
|
|
|
|
HelpText<"Do not use colors in diagnostics">;
|
|
|
|
|
2017-02-24 16:26:18 +08:00
|
|
|
def no_dynamic_linker: F<"no-dynamic-linker">,
|
|
|
|
HelpText<"Inhibit output of .interp section">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def noinhibit_exec: F<"noinhibit-exec">,
|
|
|
|
HelpText<"Retain the executable output file whenever it is still usable">;
|
2015-10-07 17:13:03 +08:00
|
|
|
|
2018-02-06 03:14:03 +08:00
|
|
|
def no_omagic: F<"no-omagic">, MetaVarName<"<magic>">,
|
2017-11-01 10:04:43 +08:00
|
|
|
HelpText<"Do not set the text data sections to be writable">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
def no_rosegment: F<"no-rosegment">,
|
|
|
|
HelpText<"Do not put read-only non-executable sections in their own segment">;
|
2016-11-28 18:05:20 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def no_undefined: F<"no-undefined">,
|
|
|
|
HelpText<"Report unresolved symbols even if the linker is creating a shared library">;
|
2015-10-02 04:14:45 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def o: JoinedOrSeparate<["-"], "o">, MetaVarName<"<path>">,
|
2015-10-01 08:33:02 +08:00
|
|
|
HelpText<"Path to file to write output">;
|
2015-09-28 20:52:21 +08:00
|
|
|
|
2016-08-25 17:05:47 +08:00
|
|
|
def oformat: Separate<["--"], "oformat">, MetaVarName<"<format>">,
|
|
|
|
HelpText<"Specify the binary format for the output object file">;
|
2016-08-25 18:39:04 +08:00
|
|
|
|
2017-03-11 05:22:28 +08:00
|
|
|
def omagic: Flag<["--"], "omagic">, MetaVarName<"<magic>">,
|
2016-11-29 17:43:51 +08:00
|
|
|
HelpText<"Set the text and data sections to be readable and writable">;
|
|
|
|
|
2017-12-13 04:00:30 +08:00
|
|
|
defm orphan_handling: Eq<"orphan-handling">,
|
2017-10-25 23:20:30 +08:00
|
|
|
HelpText<"Control how orphan sections are handled when linker script used">;
|
|
|
|
|
2018-03-02 07:06:10 +08:00
|
|
|
defm pack_dyn_relocs: Eq<"pack-dyn-relocs">, MetaVarName<"<format>">,
|
2017-10-28 01:49:40 +08:00
|
|
|
HelpText<"Pack dynamic relocations in the given format (none or android)">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm pie: B<"pie",
|
|
|
|
"Create a position independent executable",
|
|
|
|
"Do not create a position independent executable">;
|
2015-12-10 17:12:18 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm print_gc_sections: B<"print-gc-sections",
|
|
|
|
"List removed unused sections",
|
|
|
|
"Do not list removed unused sections">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm print_icf_sections: B<"print-icf-sections",
|
|
|
|
"List identical folded sections",
|
|
|
|
"Do not list identical folded sections">;
|
2018-02-02 00:00:46 +08:00
|
|
|
|
2017-01-15 10:52:34 +08:00
|
|
|
def print_map: F<"print-map">,
|
|
|
|
HelpText<"Print a link map to the standard output">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm reproduce: Eq<"reproduce">,
|
2016-04-26 08:22:24 +08:00
|
|
|
HelpText<"Dump linker invocation and input files for debugging">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm rpath: Eq<"rpath">, HelpText<"Add a DT_RUNPATH to the output">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
|
|
|
def relocatable: F<"relocatable">, HelpText<"Create relocatable object file">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm retain_symbols_file: Eq<"retain-symbols-file">,
|
|
|
|
HelpText<"Retain only the symbols listed in the file">,
|
|
|
|
MetaVarName<"<file>">;
|
2016-12-20 02:00:52 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm script: Eq<"script">, HelpText<"Read linker script">;
|
2015-09-28 20:52:21 +08:00
|
|
|
|
2018-03-02 07:06:10 +08:00
|
|
|
defm section_start: Eq<"section-start">, MetaVarName<"<address>">,
|
2016-09-14 21:07:13 +08:00
|
|
|
HelpText<"Set address of section">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def shared: F<"shared">, HelpText<"Build a shared object">;
|
2015-11-13 02:54:15 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm soname: Eq<"soname">, HelpText<"Set DT_SONAME">;
|
2015-10-11 11:53:36 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm sort_section: Eq<"sort-section">,
|
|
|
|
HelpText<"Specifies sections sorting rule when linkerscript is used">;
|
2016-09-17 04:21:55 +08:00
|
|
|
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
def start_group: F<"start-group">,
|
|
|
|
HelpText<"Ignored for compatibility with GNU unless you pass --warn-backrefs">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def start_lib: F<"start-lib">,
|
|
|
|
HelpText<"Start a grouping of objects that should be treated as if they were together in an archive">;
|
2015-09-28 23:01:59 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def strip_all: F<"strip-all">, HelpText<"Strip all symbols">;
|
2015-10-02 03:36:04 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def strip_debug: F<"strip-debug">, HelpText<"Strip debugging information">;
|
2016-04-08 05:04:51 +08:00
|
|
|
|
2018-03-02 07:06:10 +08:00
|
|
|
defm symbol_ordering_file: Eq<"symbol-ordering-file">,
|
2018-04-27 06:25:04 +08:00
|
|
|
HelpText<"Layout sections to place symbols in the order specified by symbol ordering file">;
|
2016-11-10 17:05:20 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm sysroot: Eq<"sysroot">, HelpText<"Set the system root">;
|
2015-10-01 08:33:02 +08:00
|
|
|
|
2016-08-02 03:28:13 +08:00
|
|
|
def target1_rel: F<"target1-rel">, HelpText<"Interpret R_ARM_TARGET1 as R_ARM_REL32">;
|
|
|
|
|
|
|
|
def target1_abs: F<"target1-abs">, HelpText<"Interpret R_ARM_TARGET1 as R_ARM_ABS32">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm target2: Eq<"target2">,
|
|
|
|
HelpText<"Interpret R_ARM_TARGET2 as <type>, where <type> is one of rel, abs, or got-rel">,
|
|
|
|
MetaVarName<"<type>">;
|
2016-10-18 02:12:24 +08:00
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm threads: B<"threads",
|
|
|
|
"Run the linker multi-threaded",
|
|
|
|
"Do not run the linker multi-threaded">;
|
2016-03-29 16:45:40 +08:00
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def trace: F<"trace">, HelpText<"Print the names of the input files">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm trace_symbol : Eq<"trace-symbol">, HelpText<"Trace references to symbols">;
|
2016-06-23 15:00:17 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm undefined: Eq<"undefined">,
|
2015-10-05 17:43:57 +08:00
|
|
|
HelpText<"Force undefined symbol during linking">;
|
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm unresolved_symbols: Eq<"unresolved-symbols">,
|
2016-06-29 20:35:04 +08:00
|
|
|
HelpText<"Determine how to handle unresolved symbols">;
|
2018-02-03 05:44:06 +08:00
|
|
|
|
|
|
|
defm undefined_version: B<"undefined-version",
|
|
|
|
"Allow unused version in version script",
|
|
|
|
"Report version scripts that refer undefined symbols">;
|
2016-06-29 20:35:04 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm rsp_quoting: Eq<"rsp-quoting">,
|
2016-07-07 05:24:34 +08:00
|
|
|
HelpText<"Quoting style for response files. Values supported: windows|posix">;
|
|
|
|
|
2016-11-20 02:14:24 +08:00
|
|
|
def v: Flag<["-"], "v">, HelpText<"Display the version number">;
|
|
|
|
|
2016-06-21 16:45:50 +08:00
|
|
|
def verbose: F<"verbose">, HelpText<"Verbose mode">;
|
|
|
|
|
2016-11-20 02:14:24 +08:00
|
|
|
def version: F<"version">, HelpText<"Display the version number and exit">;
|
2016-02-28 11:18:07 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm version_script: Eq<"version-script">, HelpText<"Read a version script">;
|
2016-04-23 04:21:26 +08:00
|
|
|
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
defm warn_backrefs: B<"warn-backrefs",
|
|
|
|
"Warn about backward symbol references to fetch archive members",
|
|
|
|
"Do not warn about backward symbol references to fetch archive members">;
|
|
|
|
|
2018-02-06 08:45:15 +08:00
|
|
|
defm warn_common: B<"warn-common",
|
|
|
|
"Warn about duplicate common symbols",
|
|
|
|
"Do not warn about duplicate common symbols">;
|
2016-06-21 16:45:50 +08:00
|
|
|
|
2018-02-14 21:36:22 +08:00
|
|
|
defm warn_symbol_ordering : B<"warn-symbol-ordering",
|
|
|
|
"Warn about problems with the symbol ordering file",
|
|
|
|
"Do not warn about problems with the symbol ordering file">;
|
|
|
|
|
2017-03-24 02:16:42 +08:00
|
|
|
def warn_unresolved_symbols: F<"warn-unresolved-symbols">,
|
2017-01-26 10:19:20 +08:00
|
|
|
HelpText<"Report unresolved symbols as warnings">;
|
|
|
|
|
2018-02-03 05:25:51 +08:00
|
|
|
defm whole_archive: B<"whole-archive",
|
|
|
|
"Force load of all members in a static library",
|
|
|
|
"Do not force load of all members in a static library">;
|
2015-10-02 02:02:21 +08:00
|
|
|
|
2017-07-22 00:27:26 +08:00
|
|
|
defm wrap: Eq<"wrap">, HelpText<"Use wrapper functions for symbol">,
|
|
|
|
MetaVarName<"<symbol>">;
|
2016-01-08 01:20:07 +08:00
|
|
|
|
2016-06-30 16:43:23 +08:00
|
|
|
def z: JoinedOrSeparate<["-"], "z">, MetaVarName<"<option>">,
|
2015-10-07 23:00:21 +08:00
|
|
|
HelpText<"Linker option extensions">;
|
|
|
|
|
2015-10-01 08:33:02 +08:00
|
|
|
// Aliases
|
2016-11-10 22:48:39 +08:00
|
|
|
def alias_auxiliary: Separate<["-"], "f">, Alias<auxiliary>;
|
2016-06-21 16:45:50 +08:00
|
|
|
def alias_Bdynamic_call_shared: F<"call_shared">, Alias<Bdynamic>;
|
|
|
|
def alias_Bdynamic_dy: F<"dy">, Alias<Bdynamic>;
|
|
|
|
def alias_Bstatic_dn: F<"dn">, Alias<Bstatic>;
|
|
|
|
def alias_Bstatic_non_shared: F<"non_shared">, Alias<Bstatic>;
|
|
|
|
def alias_Bstatic_static: F<"static">, Alias<Bstatic>;
|
2017-01-24 11:41:20 +08:00
|
|
|
def alias_define_common_d: Flag<["-"], "d">, Alias<define_common>;
|
|
|
|
def alias_define_common_dc: F<"dc">, Alias<define_common>;
|
|
|
|
def alias_define_common_dp: F<"dp">, Alias<define_common>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_discard_all_x: Flag<["-"], "x">, Alias<discard_all>;
|
|
|
|
def alias_discard_locals_X: Flag<["-"], "X">, Alias<discard_locals>;
|
2017-02-09 00:18:10 +08:00
|
|
|
def alias_emit_relocs: Flag<["-"], "q">, Alias<emit_relocs>;
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
def alias_end_group_paren: Flag<["-"], ")">, Alias<end_group>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_entry_e: JoinedOrSeparate<["-"], "e">, Alias<entry>;
|
|
|
|
def alias_export_dynamic_E: Flag<["-"], "E">, Alias<export_dynamic>;
|
2017-07-17 17:43:18 +08:00
|
|
|
def alias_filter: Separate<["-"], "F">, Alias<filter>;
|
2018-03-02 07:06:10 +08:00
|
|
|
def alias_format_b: Separate<["-"], "b">, Alias<format>;
|
2017-07-22 00:27:26 +08:00
|
|
|
def alias_library: JoinedOrSeparate<["-"], "l">, Alias<library>;
|
|
|
|
def alias_library_path: JoinedOrSeparate<["-"], "L">, Alias<library_path>;
|
2018-02-06 08:45:15 +08:00
|
|
|
def alias_no_pie_pic_executable: F<"no-pic-executable">, Alias<no_pie>;
|
2016-11-29 17:43:51 +08:00
|
|
|
def alias_omagic: Flag<["-"], "N">, Alias<omagic>;
|
2016-09-09 08:25:56 +08:00
|
|
|
def alias_o_output: Joined<["--"], "output=">, Alias<o>;
|
|
|
|
def alias_o_output2 : Separate<["--"], "output">, Alias<o>;
|
2016-06-21 16:45:50 +08:00
|
|
|
def alias_pie_pic_executable: F<"pic-executable">, Alias<pie>;
|
2017-01-15 10:52:34 +08:00
|
|
|
def alias_print_map_M: Flag<["-"], "M">, Alias<print_map>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_relocatable_r: Flag<["-"], "r">, Alias<relocatable>;
|
2016-11-10 00:38:15 +08:00
|
|
|
def alias_rpath_R: JoinedOrSeparate<["-"], "R">, Alias<rpath>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_script_T: JoinedOrSeparate<["-"], "T">, Alias<script>;
|
2016-06-21 16:45:50 +08:00
|
|
|
def alias_shared_Bshareable: F<"Bshareable">, Alias<shared>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_soname_h: JoinedOrSeparate<["-"], "h">, Alias<soname>;
|
Add --warn-backrefs to maintain compatibility with other linkers
I'm proposing a new command line flag, --warn-backrefs in this patch.
The flag and the feature proposed below don't exist in GNU linkers
nor the current lld.
--warn-backrefs is an option to detect reverse or cyclic dependencies
between static archives, and it can be used to keep your program
compatible with GNU linkers after you switch to lld. I'll explain the
feature and why you may find it useful below.
lld's symbol resolution semantics is more relaxed than traditional
Unix linkers. Therefore,
ld.lld foo.a bar.o
succeeds even if bar.o contains an undefined symbol that have to be
resolved by some object file in foo.a. Traditional Unix linkers
don't allow this kind of backward reference, as they visit each
file only once from left to right in the command line while
resolving all undefined symbol at the moment of visiting.
In the above case, since there's no undefined symbol when a linker
visits foo.a, no files are pulled out from foo.a, and because the
linker forgets about foo.a after visiting, it can't resolve
undefined symbols that could have been resolved otherwise.
That lld accepts more relaxed form means (besides it makes more
sense) that you can accidentally write a command line or a build
file that works only with lld, even if you have a plan to
distribute it to wider users who may be using GNU linkers. With
--check-library-dependency, you can detect a library order that
doesn't work with other Unix linkers.
The option is also useful to detect cyclic dependencies between
static archives. Again, lld accepts
ld.lld foo.a bar.a
even if foo.a and bar.a depend on each other. With --warn-backrefs
it is handled as an error.
Here is how the option works. We assign a group ID to each file. A
file with a smaller group ID can pull out object files from an
archive file with an equal or greater group ID. Otherwise, it is a
reverse dependency and an error.
A file outside --{start,end}-group gets a fresh ID when
instantiated. All files within the same --{start,end}-group get the
same group ID. E.g.
ld.lld A B --start-group C D --end-group E
A and B form group 0, C, D and their member object files form group
1, and E forms group 2. I think that you can see how this group
assignment rule simulates the traditional linker's semantics.
Differential Revision: https://reviews.llvm.org/D45195
llvm-svn: 329636
2018-04-10 07:05:48 +08:00
|
|
|
def alias_start_group_paren: Flag<["-"], "(">, Alias<start_group>;
|
2016-06-30 16:43:23 +08:00
|
|
|
def alias_strip_all: Flag<["-"], "s">, Alias<strip_all>;
|
|
|
|
def alias_strip_debug_S: Flag<["-"], "S">, Alias<strip_debug>;
|
|
|
|
def alias_trace: Flag<["-"], "t">, Alias<trace>;
|
|
|
|
def alias_trace_symbol_y : JoinedOrSeparate<["-"], "y">, Alias<trace_symbol>;
|
2018-03-02 07:06:10 +08:00
|
|
|
def alias_Ttext_segment: Separate<["-", "--"], "Ttext-segment">, Alias<Ttext>;
|
|
|
|
def alias_Ttext_segment_eq: Joined<["-", "--"], "Ttext-segment=">, Alias<Ttext>;
|
2016-06-21 16:45:50 +08:00
|
|
|
def alias_undefined_u: JoinedOrSeparate<["-"], "u">, Alias<undefined>;
|
2016-06-27 15:35:00 +08:00
|
|
|
def alias_version_V: Flag<["-"], "V">, Alias<version>;
|
2015-10-01 08:24:54 +08:00
|
|
|
|
2017-04-30 21:44:52 +08:00
|
|
|
// LTO-related options.
|
|
|
|
def lto_aa_pipeline: J<"lto-aa-pipeline=">,
|
|
|
|
HelpText<"AA pipeline to run during LTO. Used in conjunction with -lto-newpm-passes">;
|
2018-04-10 01:56:07 +08:00
|
|
|
def lto_debug_pass_manager: F<"lto-debug-pass-manager">,
|
|
|
|
HelpText<"Debug new pass manager">;
|
|
|
|
def lto_new_pass_manager: F<"lto-new-pass-manager">,
|
|
|
|
HelpText<"Use new pass manager">;
|
2017-04-30 21:44:52 +08:00
|
|
|
def lto_newpm_passes: J<"lto-newpm-passes=">,
|
|
|
|
HelpText<"Passes to run during LTO">;
|
|
|
|
def lto_partitions: J<"lto-partitions=">,
|
|
|
|
HelpText<"Number of LTO codegen partitions">;
|
2018-04-10 01:56:07 +08:00
|
|
|
def lto_sample_profile: J<"lto-sample-profile=">,
|
|
|
|
HelpText<"Sample profile file path">;
|
2017-04-30 21:44:52 +08:00
|
|
|
def disable_verify: F<"disable-verify">;
|
2018-03-02 07:06:10 +08:00
|
|
|
defm mllvm: Eq<"mllvm">;
|
2017-04-30 21:44:52 +08:00
|
|
|
def opt_remarks_filename: Separate<["--"], "opt-remarks-filename">,
|
|
|
|
HelpText<"YAML output file for optimization remarks">;
|
|
|
|
def opt_remarks_with_hotness: Flag<["--"], "opt-remarks-with-hotness">,
|
2018-01-10 20:55:14 +08:00
|
|
|
HelpText<"Include hotness information in the optimization remarks file">;
|
2017-08-14 18:17:30 +08:00
|
|
|
defm plugin_opt: Eq<"plugin-opt">,
|
|
|
|
HelpText<"specifies LTO options for compatibility with GNU linkers">;
|
2017-04-30 21:44:52 +08:00
|
|
|
def save_temps: F<"save-temps">;
|
|
|
|
def thinlto_cache_dir: J<"thinlto-cache-dir=">,
|
|
|
|
HelpText<"Path to ThinLTO cached object file directory">;
|
2018-03-02 07:06:10 +08:00
|
|
|
defm thinlto_cache_policy: Eq<"thinlto-cache-policy">,
|
2017-04-30 21:44:52 +08:00
|
|
|
HelpText<"Pruning policy for the ThinLTO cache">;
|
|
|
|
def thinlto_jobs: J<"thinlto-jobs=">, HelpText<"Number of ThinLTO jobs">;
|
|
|
|
|
2016-03-19 08:40:09 +08:00
|
|
|
// Ignore LTO plugin-related options.
|
|
|
|
// clang -flto passes -plugin and -plugin-opt to the linker. This is required
|
|
|
|
// for ld.gold and ld.bfd to get LTO working. But it's not for lld which doesn't
|
|
|
|
// rely on a plugin. Instead of detecting which linker is used on clang side we
|
|
|
|
// just ignore the option on lld side as it's easier. In fact, the linker could
|
|
|
|
// be called 'ld' and understanding which linker is used would require parsing of
|
|
|
|
// --version output.
|
2018-02-03 06:48:09 +08:00
|
|
|
defm plugin: Eq<"plugin">;
|
2016-03-19 08:40:09 +08:00
|
|
|
|
2015-11-13 08:26:12 +08:00
|
|
|
// Options listed below are silently ignored for now for compatibility.
|
2016-06-21 16:45:50 +08:00
|
|
|
def allow_shlib_undefined: F<"allow-shlib-undefined">;
|
|
|
|
def detect_odr_violations: F<"detect-odr-violations">;
|
2016-08-03 06:14:00 +08:00
|
|
|
def g: Flag<["-"], "g">;
|
2017-12-09 03:36:19 +08:00
|
|
|
def long_plt: F<"long-plt">;
|
2016-06-21 16:45:50 +08:00
|
|
|
def no_add_needed: F<"no-add-needed">;
|
|
|
|
def no_allow_shlib_undefined: F<"no-allow-shlib-undefined">;
|
2017-07-26 07:32:05 +08:00
|
|
|
def no_copy_dt_needed_entries: F<"no-copy-dt-needed-entries">;
|
2017-11-17 16:17:36 +08:00
|
|
|
def no_ctors_in_init_array: F<"no-ctors-in-init-array">;
|
2017-04-30 21:45:06 +08:00
|
|
|
def no_keep_memory: F<"no-keep-memory">;
|
2016-06-21 16:45:50 +08:00
|
|
|
def no_mmap_output_file: F<"no-mmap-output-file">;
|
|
|
|
def no_warn_mismatch: F<"no-warn-mismatch">;
|
2018-03-02 07:06:10 +08:00
|
|
|
defm rpath_link: Eq<"rpath-link">;
|
2016-06-27 10:43:27 +08:00
|
|
|
def sort_common: F<"sort-common">;
|
2016-11-09 16:59:59 +08:00
|
|
|
def stats: F<"stats">;
|
2016-06-21 16:45:50 +08:00
|
|
|
def warn_execstack: F<"warn-execstack">;
|
2017-07-26 18:25:49 +08:00
|
|
|
def warn_once: F<"warn-once">;
|
2016-06-21 16:45:50 +08:00
|
|
|
def warn_shared_textrel: F<"warn-shared-textrel">;
|
2016-08-18 20:44:45 +08:00
|
|
|
def EB : F<"EB">;
|
|
|
|
def EL : F<"EL">;
|
2016-08-17 00:26:46 +08:00
|
|
|
def G: JoinedOrSeparate<["-"], "G">;
|
2016-09-08 05:10:25 +08:00
|
|
|
def Qy : F<"Qy">;
|