[issue9181] Solaris extension building does not work with 64 bit python

2011-03-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for checking. Closing as fixed. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue9181] Solaris extension building does not work with 64 bit python

2011-03-28 Thread Charles Solar
Charles Solar added the comment: Hello again, I got a copy of the latest python from the 2.7 branch, recompiled with CFLAGS="-m64 -O3" and LDFLAGS="-m64" and my extension compiled just fine. So I can verify this bug fixed -- ___ Python tracker

[issue9181] Solaris extension building does not work with 64 bit python

2011-03-20 Thread Éric Araujo
Éric Araujo added the comment: Charles, can you still reproduce your bug now that #9437 has been fixed? -- ___ Python tracker ___ ___

[issue9181] Solaris extension building does not work with 64 bit python

2010-09-29 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +3rd party ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue9181] Solaris extension building does not work with 64 bit python

2010-09-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Is specifying CC the recommended way to build 64 bit python? Currently, yes. LDFLAGS is supposed to work, but it doesn't (open bug: #9437). -- ___ Python tracker ___

[issue9181] Solaris extension building does not work with 64 bit python

2010-09-13 Thread Charles Solar
Charles Solar added the comment: I just recompiled using your suggested flags and it is now properly linking my extensions. I guess using CFLAGS and LDFLAGS was causing the problem. Is specifying CC the recommended way to build 64 bit python? If so when I guess this issue is not really an is

[issue9181] Solaris extension building does not work with 64 bit python

2010-09-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you try using CC="cc -m64" OPT="-O3" instead? (replace "cc" with the proper compiler name, of course) -- nosy: +pitrou ___ Python tracker __

[issue9181] Solaris extension building does not work with 64 bit python

2010-09-12 Thread Éric Araujo
Éric Araujo added the comment: Thank you for the report. Do you want to work on a patch? The usual process is that someone makes a patch for the active version (branch named py3k, the future 3.2), then the committer backports to stable versions (3.1 and 2.7) and forward-ports to distutils2.

[issue9181] Solaris extension building does not work with 64 bit python

2010-07-06 Thread Charles Solar
New submission from Charles Solar : On solaris, if you build a 64 bit python and use it to build an extension, it will not properly link the module. Apparently solaris requires the -m64 flag in the linker as well as the compile steps. Python distutils successfully compiles all the object file