[PATCH] D13148: ELF2: Support reponse files.
Shankar Easwaran via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 24 20:54:19 PDT 2015
shankare added a subscriber: shankare.
================
Comment at: ELF/DriverUtils.cpp:58-60
@@ -55,4 +57,5 @@
- opt::InputArgList Args = Table.ParseArgs(Argv, MissingIndex, MissingCount);
+ std::vector<const char *> ArgvVec = replaceResponseFiles(Argv);
+ opt::InputArgList Args = Table.ParseArgs(ArgvVec, MissingIndex, MissingCount);
if (MissingCount)
error(Twine("missing arg value for \"") + Args.getArgString(MissingIndex) +
----------------
Can you add the option @ to the help ?
http://reviews.llvm.org/D13148
More information about the llvm-commits
mailing list