From: Ronald Oussoren Date: Sun, 28 Dec 2008 19:50:40 +0000 (+0000) Subject: Update the fix for issue4064 to deal correctly with all three variants of X-Git-Tag: v2.7a1~2470 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88a3083c28c9572bfa145f40e21d9c86e9fade04;p=python Update the fix for issue4064 to deal correctly with all three variants of universal builds that are presented by the configure script. --- diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index a932fbd387..65f175f6be 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1107,6 +1107,7 @@ other utility module. For universal binary builds on MacOS X the architecture value reflects the univeral binary status instead of the architecture of the current processor. For 32-bit universal binaries the architecture is ``fat``, + for 64-bit universal binaries the architecture is ``fat64``, and for 4-way universal binaries the architecture is ``universal``. Examples of returned values on MacOS X: diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 48cc17f624..e9d29ff49c 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -140,9 +140,13 @@ def get_platform (): # 'universal' instead of 'fat'. machine = 'fat' + cflags = get_config_vars().get('CFLAGS') - if '-arch x86_64' in get_config_vars().get('CFLAGS'): - machine = 'universal' + if '-arch x86_64' in cflags: + if '-arch i386' in cflags: + machine = 'universal' + else: + machine = 'fat64' elif machine in ('PowerPC', 'Power_Macintosh'): # Pick a sane name for the PPC architecture.