[Python-checkins] bpo-42362: use clang name on 10.9 builds as well (GH-25834)

ned-deily webhook-mailer at python.org
Mon May 3 00:24:02 EDT 2021


https://github.com/python/cpython/commit/c3bfa762214e4fbe25699d75c0412791cefd7094
commit: c3bfa762214e4fbe25699d75c0412791cefd7094
branch: master
author: Ned Deily <nad at python.org>
committer: ned-deily <nad at python.org>
date: 2021-05-03T00:23:54-04:00
summary:

bpo-42362: use clang name on 10.9 builds as well (GH-25834)

files:
M Mac/BuildScript/build-installer.py

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index ff62096ec6cd4..60174eb6962ba 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -163,7 +163,6 @@ def getTargetCompilers():
         '10.6': ('gcc', 'g++'),
         '10.7': ('gcc', 'g++'),
         '10.8': ('gcc', 'g++'),
-        '10.9': ('gcc', 'g++'),
     }
     return target_cc_map.get(DEPTARGET, ('clang', 'clang++') )
 



More information about the Python-checkins mailing list