[cfe-commits] r56991 - /cfe/trunk/utils/ccc
Daniel Dunbar
daniel at zuster.org
Thu Oct 2 18:54:54 PDT 2008
Author: ddunbar
Date: Thu Oct 2 20:54:54 2008
New Revision: 56991
URL: http://llvm.org/viewvc/llvm-project?rev=56991&view=rev
Log:
Bug fix, ccc was passing -std twice.
Modified:
cfe/trunk/utils/ccc
Modified: cfe/trunk/utils/ccc
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ccc?rev=56991&r1=56990&r2=56991&view=diff
==============================================================================
--- cfe/trunk/utils/ccc (original)
+++ cfe/trunk/utils/ccc Thu Oct 2 20:54:54 2008
@@ -235,8 +235,6 @@
arg += args[i+1]
i += 1
compile_opts.append(arg)
- if arg[:5] in ['-std=']:
- compile_opts.append(arg)
if argkey in ('-std', '-mmacosx-version-min'):
compile_opts.append(arg)
More information about the cfe-commits
mailing list