[pypy-commit] pypy py3k: Manually reapply commit c6e45df

arigo noreply at buildbot.pypy.org
Sat Aug 22 16:40:34 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: py3k
Changeset: r79139:c08c77400148
Date: 2015-08-22 16:40 +0200
http://bitbucket.org/pypy/pypy/changeset/c08c77400148/

Log:	Manually reapply commit c6e45df

diff --git a/lib-python/3/distutils/unixccompiler.py b/lib-python/3/distutils/unixccompiler.py
--- a/lib-python/3/distutils/unixccompiler.py
+++ b/lib-python/3/distutils/unixccompiler.py
@@ -55,7 +55,7 @@
     executables = {'preprocessor' : None,
                    'compiler'     : ["cc"],
                    'compiler_so'  : ["cc"],
-                   'compiler_cxx' : ["cc"],
+                   'compiler_cxx' : ["c++"],  # pypy: changed, 'cc' is bogus
                    'linker_so'    : ["cc", "-shared"],
                    'linker_exe'   : ["cc"],
                    'archiver'     : ["ar", "-cr"],


More information about the pypy-commit mailing list