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)
........
This commit is contained in:
Ronald Oussoren 2009-09-15 19:16:02 +00:00
parent d097efe99f
commit bea37aee6b
2 changed files with 26 additions and 6 deletions

View file

@ -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?