diff options
author | Ned Deily <nad@python.org> | 2021-05-03 04:23:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 04:23:54 (GMT) |
commit | c3bfa762214e4fbe25699d75c0412791cefd7094 (patch) | |
tree | 4606a2238dfa232e69bb9e61c88eccd5a41f951d /Mac | |
parent | 4ae828f3c0e8548939161ef3b6154e9c3122d812 (diff) | |
download | cpython-c3bfa762214e4fbe25699d75c0412791cefd7094.zip cpython-c3bfa762214e4fbe25699d75c0412791cefd7094.tar.gz cpython-c3bfa762214e4fbe25699d75c0412791cefd7094.tar.bz2 |
bpo-42362: use clang name on 10.9 builds as well (GH-25834)
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index ff62096..60174eb 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++') ) |