From: Daniel Dunbar Date: Mon, 26 Jan 2009 18:00:14 +0000 (+0000) Subject: ccc: -o should not be automatically forwarded to generic gcc tools. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd8d98f3ede0ee7e0f65dc283eefe7f3dcac60eb;p=clang 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 --- 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