0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 00:38:00 +01:00

bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855)

This commit is contained in:
Ned Deily 2018-02-24 14:30:44 -05:00 committed by GitHub
parent 42c35d9c0c
commit acd7163c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,7 +161,7 @@ def getTargetCompilers():
'10.5': ('gcc', 'g++'),
'10.6': ('gcc', 'g++'),
}
return target_cc_map.get(DEPTARGET, ('gcc', 'gcc++') )
return target_cc_map.get(DEPTARGET, ('gcc', 'g++') )
CC, CXX = getTargetCompilers()