diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-30 06:11:45 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-30 06:11:45 +0000 |
commit | 4eaa389519d3afa02db7e2e66c9544e17e2122e7 (patch) | |
tree | e863faa3cbf738ef660c61ec4f951968d2041440 | |
parent | 706aecf98edad4cc7d1bf9d17e2f7f2cee1e2d99 (diff) |
Enable the response file ('llvmc @file') support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51731 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc2/llvmc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvmc2/llvmc.cpp b/tools/llvmc2/llvmc.cpp index a749274543..c06ea59ed9 100644 --- a/tools/llvmc2/llvmc.cpp +++ b/tools/llvmc2/llvmc.cpp @@ -71,8 +71,8 @@ int main(int argc, char** argv) { try { CompilationGraph graph; - cl::ParseCommandLineOptions(argc, argv, - "LLVM Compiler Driver (Work In Progress)"); + cl::ParseCommandLineOptions + (argc, argv, "LLVM Compiler Driver (Work In Progress)", true); PopulateCompilationGraph(graph); if (WriteGraph) { |