bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855)
This commit is contained in:
parent
42c35d9c0c
commit
acd7163c0a
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue