summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-06-24 08:27:51 (GMT)
committerNed Deily <nad@acm.org>2012-06-24 08:27:51 (GMT)
commit1bc276d7ab567ff5ef216a213e851e317b909529 (patch)
treec00d85d0fb445673f22cc80c5eab502e44aa854a /Mac
parent99ac2f1d06874a00d59cf7632d68ecfe4c8de1d2 (diff)
downloadcpython-1bc276d7ab567ff5ef216a213e851e317b909529.zip
cpython-1bc276d7ab567ff5ef216a213e851e317b909529.tar.gz
cpython-1bc276d7ab567ff5ef216a213e851e317b909529.tar.bz2
Update OS X installer build target compilers.
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 9f8d025..1a16165 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -137,8 +137,10 @@ DEPTARGET = '10.3'
target_cc_map = {
'10.3': 'gcc-4.0',
'10.4': 'gcc-4.0',
- '10.5': 'gcc-4.0',
+ '10.5': 'gcc-4.2',
'10.6': 'gcc-4.2',
+ '10.7': 'clang',
+ '10.8': 'clang',
}
CC = target_cc_map[DEPTARGET]