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: Fix various x86_64 build issues
Type: Stage:
Components: Build Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: loewis, rthalley
Priority: normal Keywords: patch

Created on 2004-10-20 04:53 by rthalley, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
x86_64.patch rthalley, 2004-10-20 04:53 patch for clean build/test on linux x86_64
Messages (2)
msg47104 - (view) Author: Bob Halley (rthalley) Date: 2004-10-20 04:53
This patch does the following: 
 
        Puts the correct library directories for linux x86_64 
        systems into setup.py search paths. 
 
        Fixes a type-casting bug in the _tkinter module 
        that would cause incorrect pointer printing on 64-bit 
        systems (a pointer was cast to an int). 
 
        Adds imageop and rgbimg to the list of expected 
        to be skipped tests on 64-bit platforms 
 
With these changes, I get a clean build and a clean "make 
test". 
 
I also ran the regression suite in '-uall' mode.  This was 
mostly good, and the few errors that occurred do not appear 
related to x86_64.  (Well, with the possible exception of 
some linux audio-related cores which I don't know about yet) 
 
/Bob 
 
msg47105 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-11-13 11:14
Logged In: YES 
user_id=21627

Thanks for the patch. Committed as

setup.py 1.204
regrtest.py 1.165
_tkinter.c 1.168
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41051
2004-10-20 04:53:38rthalleycreate