From fd8d98f3ede0ee7e0f65dc283eefe7f3dcac60eb Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 26 Jan 2009 18:00:14 +0000 Subject: [PATCH] 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 --- tools/ccc/ccclib/Arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1