summaryrefslogtreecommitdiff
path: root/tools/gccld
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-17 16:08:04 +0000
committerChris Lattner <sabre@nondot.org>2005-11-17 16:08:04 +0000
commitcb8346563b0389522ce668567d2c3e1ffa6ec9d0 (patch)
tree8b759cfdb72f0a2c2e38a631c70462b9721f87fd /tools/gccld
parentb120a64e137b8e29d281793a4f119ba8ace03bf6 (diff)
downloadllvm-cb8346563b0389522ce668567d2c3e1ffa6ec9d0.tar.gz
llvm-cb8346563b0389522ce668567d2c3e1ffa6ec9d0.tar.bz2
llvm-cb8346563b0389522ce668567d2c3e1ffa6ec9d0.tar.xz
Allow users to specify -Wl,-native* multiple times if they please
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld')
-rw-r--r--tools/gccld/gccld.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp
index 5c0fbb90d8..bad4a9cf06 100644
--- a/tools/gccld/gccld.cpp
+++ b/tools/gccld/gccld.cpp
@@ -78,10 +78,10 @@ namespace {
cl::aliasopt(LinkAsLibrary));
cl::opt<bool>
- Native("native",
+ Native("native", cl::ZeroOrMore,
cl::desc("Generate a native binary instead of a shell script"));
cl::opt<bool>
- NativeCBE("native-cbe",
+ NativeCBE("native-cbe", cl::ZeroOrMore,
cl::desc("Generate a native binary with the C backend and GCC"));
cl::opt<bool>