From 1f1fab8c9117812159d2d92eabd693d7548bbeea Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Wed, 26 Nov 2008 10:57:31 +0000 Subject: [PATCH] Fix the -I option (llvmc -I dir1 -I dir2 didn't work). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60101 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CompilerDriver/Tools.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/llvm/CompilerDriver/Tools.td b/include/llvm/CompilerDriver/Tools.td index f0c2226519e..e701b476494 100644 --- a/include/llvm/CompilerDriver/Tools.td +++ b/include/llvm/CompilerDriver/Tools.td @@ -33,6 +33,8 @@ class llvm_gcc_based : Tool< (help "Stop after checking the input for syntax errors")), (parameter_list_option "include", (forward), (help "Include the named file prior to preprocessing")), + (prefix_list_option "I", (forward), + (help "Add a directory to include path")), (sink) ]>; -- 2.34.1