diff options
| author | Davide Italiano <davide@freebsd.org> | 2015-09-23 15:46:44 +0000 |
|---|---|---|
| committer | Davide Italiano <davide@freebsd.org> | 2015-09-23 15:46:44 +0000 |
| commit | aab93b59d4192b9e300489a3bfabccffd0969dfa (patch) | |
| tree | 07ee5c8b0848cc3c717da5f9146149a19c83b9b8 | |
| parent | a3eaa204e63587df80a51163c1c21e8c3ac7ed20 (diff) | |
| download | bcm5719-llvm-aab93b59d4192b9e300489a3bfabccffd0969dfa.tar.gz bcm5719-llvm-aab93b59d4192b9e300489a3bfabccffd0969dfa.zip | |
[ELF2] - added ignored command line options for compatibility.
Patch by George Grimar.
Differential Revision: http://reviews.llvm.org/D13097
llvm-svn: 248389
| -rw-r--r-- | lld/ELF/Options.td | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lld/ELF/Options.td b/lld/ELF/Options.td index 83dde2739c6..cf7251a5c24 100644 --- a/lld/ELF/Options.td +++ b/lld/ELF/Options.td @@ -28,5 +28,21 @@ def discard_locals : Flag<["-"], "discard-locals">, def alias_discard_locals: Flag<["-"], "X">, Alias<discard_locals>; +//===----------------------------------------------------------------------===// +/// Ignored options +//===----------------------------------------------------------------------===// + +def dashg : Flag<["-"], "g">, + HelpText<"Ignored.">; + +def Qy : Flag<["-"], "Qy">, + HelpText<"Ignored for SVR4 Compatibility">; + +def qmagic : Flag<["-"], "qmagic">, + HelpText<"Ignored for Linux Compatibility">; + +def sunassert : Flag<["-"], "assert">, + HelpText<"Ignored for SunOS Compatibility">; + def export_dynamic : Flag<["--"], "export-dynamic">, HelpText<"Put symbols in the dynamic symbol table">; |

