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

This commit is contained in:
Ned Deily 2021-05-03 00:23:54 -04:00 committed by GitHub
parent 4ae828f3c0
commit c3bfa76221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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++') )