diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-07-13 18:54:56 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-07-13 18:54:56 +0000 |
commit | 0ccb1f2ee43e03bb4aadf2ea1fb9869f25a368d2 (patch) | |
tree | fc083d4e447c3843588f65f54fbb4bd72aed9df6 | |
parent | 1305e2c0f541cf31f341b74e0cbf490c0c5961fa (diff) | |
download | bcm5719-llvm-0ccb1f2ee43e03bb4aadf2ea1fb9869f25a368d2.tar.gz bcm5719-llvm-0ccb1f2ee43e03bb4aadf2ea1fb9869f25a368d2.zip |
clang-cl: For files setting output names, mention which flags they belong to.
It always takes me a while to figure out how to say "preprocess to file
foo.txt" with clang-cl. With this, it might be easier.
http://reviews.llvm.org/D10890
llvm-svn: 242051
-rw-r--r-- | clang/include/clang/Driver/CLCompatOptions.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Driver/CLCompatOptions.td b/clang/include/clang/Driver/CLCompatOptions.td index cf6b76bf29f..907b16fd5ca 100644 --- a/clang/include/clang/Driver/CLCompatOptions.td +++ b/clang/include/clang/Driver/CLCompatOptions.td @@ -188,7 +188,7 @@ def _SLASH_EP : CLFlag<"EP">, def _SLASH_FA : CLFlag<"FA">, HelpText<"Output assembly code file during compilation">; def _SLASH_Fa : CLJoined<"Fa">, - HelpText<"Output assembly code to this file during compilation">, + HelpText<"Output assembly code to this file during compilation (with /FA)">, MetaVarName<"<file or directory>">; def _SLASH_fallback : CLCompileFlag<"fallback">, HelpText<"Fall back to cl.exe if clang-cl fails to compile">; @@ -198,10 +198,10 @@ def _SLASH_Fe : CLJoined<"Fe">, HelpText<"Set output executable file or directory (ends in / or \\)">, MetaVarName<"<file or directory>">; def _SLASH_Fi : CLCompileJoined<"Fi">, - HelpText<"Set preprocess output file name">, + HelpText<"Set preprocess output file name (with /P)">, MetaVarName<"<file>">; def _SLASH_Fo : CLCompileJoined<"Fo">, - HelpText<"Set output object file, or directory (ends in / or \\)">, + HelpText<"Set output object file, or directory (ends in / or \\) (with /c)">, MetaVarName<"<file or directory>">; def _SLASH_LD : CLFlag<"LD">, HelpText<"Create DLL">; def _SLASH_LDd : CLFlag<"LDd">, HelpText<"Create debug DLL">; |