[Python-checkins] cpython: Update OS X installer build target compilers.

ned.deily python-checkins at python.org
Sun Jun 24 10:28:42 CEST 2012


http://hg.python.org/cpython/rev/d1c93a2ee324
changeset:   77679:d1c93a2ee324
user:        Ned Deily <nad at acm.org>
date:        Sun Jun 24 01:27:51 2012 -0700
summary:
  Update OS X installer build target compilers.

files:
  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
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -137,8 +137,10 @@
 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]

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list