diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-09-15 19:13:15 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-09-15 19:13:15 (GMT) |
commit | 5d90029041bd3ef4e5e1009b8fd741719283b928 (patch) | |
tree | 6f59a35f879f258e221cf5754e4f8b688e224800 /Doc | |
parent | 038f38d3ac8e9c671b18ce6b17f3a408503b3fe9 (diff) | |
download | cpython-5d90029041bd3ef4e5e1009b8fd741719283b928.zip cpython-5d90029041bd3ef4e5e1009b8fd741719283b928.tar.gz cpython-5d90029041bd3ef4e5e1009b8fd741719283b928.tar.bz2 |
Finish support for --with-universal-archs=intel
and --with-universal-archs=3-way (issue6245)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/distutils/apiref.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index f0408e8..e227833 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1095,7 +1095,10 @@ other utility module. 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``. + for 4-way universal binaries the architecture is ``universal``. Starting + from Python 2.7 and Python 3.2 the architecture ``fat3`` is used for + a 3-way universal build (ppc, i386, x86_64) and ``intel`` is used for + a univeral build with the i386 and x86_64 architectures Examples of returned values on Mac OS X: @@ -1105,6 +1108,8 @@ other utility module. * ``macosx-10.5-universal`` + * ``macosx-10.6-intel`` + .. % XXX isn't this also provided by some other non-distutils module? |