From 4eaa389519d3afa02db7e2e66c9544e17e2122e7 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Fri, 30 May 2008 06:11:45 +0000 Subject: [PATCH] Enable the response file ('llvmc @file') support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51731 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvmc2/llvmc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/llvmc2/llvmc.cpp b/tools/llvmc2/llvmc.cpp index a749274543a..c06ea59ed9a 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) { -- 2.34.1