diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-15 05:59:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-15 05:59:37 +0000 |
commit | 41577f1130fa017e91fb1ea57deab9c1a4716d0a (patch) | |
tree | 104e6c499d2bdbefffc13d1f59c836bc3b40a191 | |
parent | 61a0f17301f889260de739219c3e1d4c8039210e (diff) |
ccc: Pass -P to clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64578 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/ccc/ccclib/Tools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py index 642732a713..d3ba30e8bd 100644 --- a/tools/ccc/ccclib/Tools.py +++ b/tools/ccc/ccclib/Tools.py @@ -290,6 +290,7 @@ class Clang_CompileTool(Tool): arglist.addAllArgs(cmd_args, arglist.parser.vOption) arglist.addAllArgs2(cmd_args, arglist.parser.DOption, arglist.parser.UOption) arglist.addAllArgs2(cmd_args, arglist.parser.IGroup, arglist.parser.FOption) + arglist.addLastArg(cmd_args, arglist.parser.POption) arglist.addAllArgs(cmd_args, arglist.parser.m_macosxVersionMinOption) # Special case debug options to only pass -g to clang. This is |