From 9b5e8da3b418624d63576a5e2920e618c8c75e84 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Sat, 9 Mar 2013 01:41:37 +0000 Subject: [PATCH] [Driver][GNU] Accept and ignore more options. llvm-svn: 176749 --- lld/lib/Driver/LDOptions.td | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lld/lib/Driver/LDOptions.td b/lld/lib/Driver/LDOptions.td index 736c9c80ec56..516d487b41a4 100644 --- a/lld/lib/Driver/LDOptions.td +++ b/lld/lib/Driver/LDOptions.td @@ -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">;