[lld] r176749 - [Driver][GNU] Accept and ignore more options.

Michael J. Spencer bigcheesegs at gmail.com
Fri Mar 8 17:41:37 PST 2013


Author: mspencer
Date: Fri Mar  8 19:41:37 2013
New Revision: 176749

URL: http://llvm.org/viewvc/llvm-project?rev=176749&view=rev
Log:
[Driver][GNU] Accept and ignore more options.

Modified:
    lld/trunk/lib/Driver/LDOptions.td

Modified: lld/trunk/lib/Driver/LDOptions.td
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Driver/LDOptions.td?rev=176749&r1=176748&r2=176749&view=diff
==============================================================================
--- lld/trunk/lib/Driver/LDOptions.td (original)
+++ lld/trunk/lib/Driver/LDOptions.td Fri Mar  8 19:41:37 2013
@@ -22,11 +22,15 @@ def emit_yaml : Flag<["-"], "emit-yaml">
 
 def m : Separate<["-"], "m">;
 def z : Separate<["-"], "z">;
+def rpath : Separate<["-"], "rpath">;
+def soname : Separate<["-"], "soname">;
 
 def static : Flag<["-"], "static">;
+def shared : Flag<["-"], "shared">;
 def start_group : Flag<["--"], "start-group">;
 def end_group : Flag<["--"], "end-group">;
 def build_id : Flag<["--"], "build-id">;
+def eh_frame_hdr : Flag<["--"], "eh-frame-hdr">;
 
 def L : Joined<["-"], "L">;
 def l : Joined<["-"], "l">;





More information about the llvm-commits mailing list