From: Ned Deily Date: Mon, 3 May 2021 04:23:54 +0000 (-0400) Subject: bpo-42362: use clang name on 10.9 builds as well (GH-25834) X-Git-Tag: v3.10.0b1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3bfa762214e4fbe25699d75c0412791cefd7094;p=thirdparty%2FPython%2Fcpython.git bpo-42362: use clang name on 10.9 builds as well (GH-25834) --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index ff62096ec6cd..60174eb6962b 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++') )