From: Ted Kremenek Date: Thu, 1 May 2008 21:26:22 +0000 (+0000) Subject: Add missing "-" that prefix arguments to forward to clang. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73c083c27c00228fce8c9f139dc7cda5754b0837;p=clang Add missing "-" that prefix arguments to forward to clang. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50540 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index e453cec4a2..d19955381e 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -184,11 +184,11 @@ def main(args): i += 1 # Options with no argument that should pass through to compiler - if arg in [ '-nostdinc', 'fobjc-gc-only', 'fobjc-gc' ]: + if arg in [ '-nostdinc', '-fobjc-gc-only', '-fobjc-gc' ]: compile_opts.append(arg) # Options with one argument that should pass through to linker - if arg == 'framework': + if arg == '-framework': link_opts.append(arg) link_opts.append(args[i+1]) i += 1