This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 2.6.5 OS X 10.5 --with-universal-archs=all (4-way) fails building pythonw-64
Type: compile error Stage: resolved
Components: Build, macOS Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: ronaldoussoren Nosy List: barry, ned.deily, ronaldoussoren
Priority: normal Keywords:

Created on 2010-03-19 10:10 by ned.deily, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue-universal-archs-all-26.txt ned.deily, 2010-03-19 10:10
Messages (2)
msg101318 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-03-19 10:10
A change made to Mac/Makefile in r78813 for 2.6.5 does not work correctly
when the --with-universal-archs=all (4-way) framework configure option is selected.  The build of pythonw-64 fails with an incorrect gcc command: "gcc-4.0   64 -arch x86_64".  The attached patch corrects the problem.

Note, as documented in the 2.6.5 Mac/README file, the "all" variant can currently only be built on OS X 10.5.
         
Run autoconf after applying to update configure.
msg103517 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2010-04-18 19:14
Applied as r80193, thanks for looking into this.
History
Date User Action Args
2022-04-11 14:56:58adminsetgithub: 52422
2010-04-18 19:14:39ronaldoussorensetstatus: open -> closed
type: compile error
messages: + msg103517

resolution: accepted
stage: resolved
2010-03-19 10:10:16ned.deilycreate