aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/ccc-analyzer4
1 files changed, 2 insertions, 2 deletions
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