[llvm-commits] [llvm] r94752 - /llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
Mikhail Glushenkov
foldr at codedgers.com
Thu Jan 28 10:19:37 PST 2010
Author: foldr
Date: Thu Jan 28 12:19:36 2010
New Revision: 94752
URL: http://llvm.org/viewvc/llvm-project?rev=94752&view=rev
Log:
Support some more options...
Modified:
llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
Modified: llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc/plugins/Base/Base.td.in?rev=94752&r1=94751&r2=94752&view=diff
==============================================================================
--- llvm/trunk/tools/llvmc/plugins/Base/Base.td.in (original)
+++ llvm/trunk/tools/llvmc/plugins/Base/Base.td.in Thu Jan 28 12:19:36 2010
@@ -50,6 +50,11 @@
(help "Choose linker (possible values: gcc, g++)")),
(parameter_option "mtune",
(help "Target a specific CPU type"), (hidden)),
+ (parameter_option "fmessage-length",
+ (help "Format error messages to fit on lines of about n characters "),
+ (hidden)),
+ (parameter_option "std",
+ (help "Determine the language standard"), (hidden)),
// TODO: Add a conditional compilation mechanism to make Darwin-only options
// like '-arch' really Darwin-only.
@@ -148,6 +153,8 @@
(not_empty "mtune"), (forward "mtune"),
(not_empty "mcpu"), (forward "mcpu"),
(not_empty "m"), (forward "m"),
+ (not_empty "std"), (forward "std"),
+ (not_empty "fmessage-length"), (forward "fmessage-length"),
(switch_on "m32"), (forward "m32"),
(switch_on "m64"), (forward "m64"),
(switch_on "O0"), (forward "O0"),
@@ -195,6 +202,7 @@
(actions (case
(switch_on "c"), (stop_compilation),
(not_empty "arch"), (forward "arch"),
+ (not_empty "fmessage-length"), (forward "fmessage-length"),
(not_empty "Wa,"), (forward_value "Wa,")))
]>;
@@ -235,6 +243,7 @@
(not_empty "weak_framework"), (forward "weak_framework"),
(switch_on "m32"), (forward "m32"),
(switch_on "m64"), (forward "m64"),
+ (not_empty "fmessage-length"), (forward "fmessage-length"),
(not_empty "l"), (forward "l"),
(not_empty "Wl,"), (forward "Wl,")))
]>;
More information about the llvm-commits
mailing list