*** unixccompiler.py 2009-09-08 19:18:10.000000000 +0300 --- unixccompiler.py.new 2009-09-08 19:17:24.000000000 +0300 *************** *** 253,259 **** while '=' in linker[i]: i = i + 1 ! linker[i] = self.compiler_cxx[i] if sys.platform == 'darwin': linker = _darwin_compiler_fixup(linker, ld_args) --- 253,259 ---- while '=' in linker[i]: i = i + 1 ! linker = linker[:i] + self.compiler_cxx + linker[i+1:] if sys.platform == 'darwin': linker = _darwin_compiler_fixup(linker, ld_args)