aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Option
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2013-08-02 21:20:27 +0000
committerHans Wennborg <hans@hanshq.net>2013-08-02 21:20:27 +0000
commit6bf104b165cec9c14dacf10bf3380eeb32c278d7 (patch)
treef611789d6ec1eb7f6f0b70dd7d545941f246e653 /lib/Option
parente8bc700a87b88751b82e132b10c4b96f311e0b3a (diff)
downloadexternal_llvm-6bf104b165cec9c14dacf10bf3380eeb32c278d7.zip
external_llvm-6bf104b165cec9c14dacf10bf3380eeb32c278d7.tar.gz
external_llvm-6bf104b165cec9c14dacf10bf3380eeb32c278d7.tar.bz2
Option parsing: recognize the special -- token
Everything that comes after -- should be treated as a filename. This enables passing in filenames that would otherwise be conflated with command-line options. This is especially important for clang-cl which supports options starting with /, which are easily conflatable with Unix-style path names. Differential Revision: http://llvm-reviews.chandlerc.com/D1274 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Option')
-rw-r--r--lib/Option/OptTable.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/Option/OptTable.cpp b/lib/Option/OptTable.cpp
index 11439d3..98e63bc 100644
--- a/lib/Option/OptTable.cpp
+++ b/lib/Option/OptTable.cpp
@@ -253,11 +253,26 @@ InputArgList *OptTable::ParseArgs(const char *const *ArgBegin,
unsigned Index = 0, End = ArgEnd - ArgBegin;
while (Index < End) {
// Ignore empty arguments (other things may still take them as arguments).
- if (Args->getArgString(Index)[0] == '\0') {
+ StringRef Str = Args->getArgString(Index);
+ if (Str == "") {
++Index;
continue;
}
+ if (Str == "--") {
+ // Everything after -- is a filename.
+ ++Index;
+
+ assert(TheInputOptionID != 0 && "Invalid input option ID.");
+ while (Index < End) {
+ Args->append(new Arg(getOption(TheInputOptionID),
+ Args->getArgString(Index), Index,
+ Args->getArgString(Index)));
+ ++Index;
+ }
+ break;
+ }
+
unsigned Prev = Index;
Arg *A = ParseOneArg(*Args, Index, FlagsToInclude, FlagsToExclude);
assert(Index > Prev && "Parser failed to consume argument.");