[PATCH] D13097: [ELF2] - added ignored command line options for compatibility
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 23 08:48:18 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL248389: [ELF2] - added ignored command line options for compatibility. (authored by davide).
Changed prior to commit:
http://reviews.llvm.org/D13097?vs=35511&id=35512#toc
Repository:
rL LLVM
http://reviews.llvm.org/D13097
Files:
lld/trunk/ELF/Options.td
Index: lld/trunk/ELF/Options.td
===================================================================
--- lld/trunk/ELF/Options.td
+++ lld/trunk/ELF/Options.td
@@ -28,5 +28,21 @@
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">;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13097.35512.patch
Type: text/x-patch
Size: 878 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150923/e82a32b7/attachment.bin>
More information about the llvm-commits
mailing list