[issue7715] Allow use of GNU arch on Darwin

2010-02-11 Thread Ronald Oussoren
Ronald Oussoren added the comment: Ned: I fixed the ARCH_RUN_32BIT definition for 3-way universal builds in r78150. Also ported the patch to 2.6, 3.2 and 3.1. -- status: open -> closed ___ Python tracker ___

[issue7715] Allow use of GNU arch on Darwin

2010-01-17 Thread Ned Deily
Ned Deily added the comment: BTW, I believe there is a problem with ARCH_RUN_32BIT as it stands: as far as I can tell, unlike lipo, /usr/bin/arch requires -ppc and rejects -ppc7400 regardless if the executable is -arch ppc7400 or -arch ppc. -- ___

[issue7715] Allow use of GNU arch on Darwin

2010-01-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've applied a patch to use /usr/bin/arch instead of just 'arch' in r7715 (trunk). I will port this to the other branches soonish. -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tra

[issue7715] Allow use of GNU arch on Darwin

2010-01-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree with Ned: the correct patch is to hardcode usage of /usr/bin/arch, because that's the one the build environment is expecting to use and the only one I care to support. -- ___ Python tracker

[issue7715] Allow use of GNU arch on Darwin

2010-01-16 Thread Ned Deily
Ned Deily added the comment: Note that with current trunk and in-the-pipeline proposed changes, configure is depending on using the Apple-supplied enhanced version of arch on 10.5+ (e.g. to force execution in 32-bit mode) so, while the patch here doesn't harm anything, it points to another po

[issue7715] Allow use of GNU arch on Darwin

2010-01-16 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing

[issue7715] Allow use of GNU arch on Darwin

2010-01-16 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue7715] Allow use of GNU arch on Darwin

2010-01-16 Thread Fabian Groffen
New submission from Fabian Groffen : Configure will die on Darwin with the message Unexpected output of 'arch' on OSX when GNU arch is in use. The following patch simply adds the output as given by GNU arch to allow a successful configure run. -- components: Build files: python-2.6.4