diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-11-26 10:57:31 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-11-26 10:57:31 +0000 |
commit | 1f1fab8c9117812159d2d92eabd693d7548bbeea (patch) | |
tree | d7be880cdec2dee4631f93d23337ed29ecce0e2a | |
parent | 8b4c5f5d2660cc5b37d0bd14e1ee34986793e1b1 (diff) |
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
-rw-r--r-- | include/llvm/CompilerDriver/Tools.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CompilerDriver/Tools.td b/include/llvm/CompilerDriver/Tools.td index f0c2226519..e701b47649 100644 --- a/include/llvm/CompilerDriver/Tools.td +++ b/include/llvm/CompilerDriver/Tools.td @@ -33,6 +33,8 @@ class llvm_gcc_based <string cmd_prefix, string in_lang> : 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) ]>; |