summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-09-15 19:14:37 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2009-09-15 19:14:37 (GMT)
commitcba2fd3ac958b4a85f8669ad5de9bafe47866939 (patch)
treedbc5d00c87ac41a893a7676149956b8ac97cf0ed /Doc
parentc6ddd7f9a7f6cfa06e6afc16d1cc300f8ac53a7c (diff)
downloadcpython-cba2fd3ac958b4a85f8669ad5de9bafe47866939.zip
cpython-cba2fd3ac958b4a85f8669ad5de9bafe47866939.tar.gz
cpython-cba2fd3ac958b4a85f8669ad5de9bafe47866939.tar.bz2
Merged revisions 74806 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74806 | ronald.oussoren | 2009-09-15 21:13:15 +0200 (Tue, 15 Sep 2009) | 3 lines Finish support for --with-universal-archs=intel and --with-universal-archs=3-way (issue6245) ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/distutils/apiref.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst
index a7db455..995b767 100644
--- a/Doc/distutils/apiref.rst
+++ b/Doc/distutils/apiref.rst
@@ -1112,7 +1112,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:
@@ -1122,6 +1125,8 @@ other utility module.
* ``macosx-10.5-universal``
+ * ``macosx-10.6-intel``
+
.. % XXX isn't this also provided by some other non-distutils module?