diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-26 18:00:14 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-26 18:00:14 +0000 |
commit | fd8d98f3ede0ee7e0f65dc283eefe7f3dcac60eb (patch) | |
tree | 43d5d8331af98f279d8fa128cac4c3aa97082a15 /tools/ccc/ccclib/Arguments.py | |
parent | b2f37958941751337f975c0728a7c7abb51dc683 (diff) |
ccc: -o should not be automatically forwarded to generic gcc tools.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63015 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Arguments.py')
-rw-r--r-- | tools/ccc/ccclib/Arguments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Arguments.py b/tools/ccc/ccclib/Arguments.py index e936aec4a7..7c5765c28d 100644 --- a/tools/ccc/ccclib/Arguments.py +++ b/tools/ccc/ccclib/Arguments.py @@ -82,7 +82,7 @@ class Option(object): return self.name not in ('-E', '-S', '-c', '-arch', '-fsyntax-only', '-combine', '-x', - '-###') + '-###', '-o') class OptionGroup(Option): """OptionGroup - A fake option class used to group options so that |