diff options
author | Ned Deily <nad@acm.org> | 2012-06-24 01:27:51 -0700 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2012-06-24 01:27:51 -0700 |
commit | 1bc276d7ab567ff5ef216a213e851e317b909529 (patch) | |
tree | c00d85d0fb445673f22cc80c5eab502e44aa854a /Mac | |
parent | Packaging removal: remove pysetup3 install from Makefile. (diff) | |
download | cpython-1bc276d7ab567ff5ef216a213e851e317b909529.tar.gz cpython-1bc276d7ab567ff5ef216a213e851e317b909529.tar.bz2 cpython-1bc276d7ab567ff5ef216a213e851e317b909529.zip |
Update OS X installer build target compilers.
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 9f8d0259c19..1a1616589a0 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] |