Re: 64-bit Python for Solaris

2013-05-27 Thread Matchek
Crickets 2013/5/21 Maciej (Matchek) Bliziński mac...@opencsw.org: the ${prefix}/lib/pythonX.Y/_sysconfigdata.py file contains system-specific information ...and is installed in an architecture-independent directory by the Python installer. This looks broken to me. --

64-bit Python for Solaris

2013-05-21 Thread Matchek
Hello python-list, I'm looking into creating a 32/64-bit Python (2.x and/or 3.x) package for Solaris. The specificity of that package is that I need to include both 32-bit and 64-bit binaries in it. The exact way in which the 32/64 support is done is described at [1]. There currently is a Python

Re: How to build 64-bit Python on Solaris with GCC?

2011-12-09 Thread Skip Montanaro
Karim kliateni at gmail.com writes: ./configure make make install Thanks. I have several different versions in my local sandbox. None are 64-bit ELFs. Just to make sure I hadn't missed some new development in this area, I cloned the hg repository and build the trunk version from scratch.

Re: How to build 64-bit Python on Solaris with GCC?

2011-12-09 Thread Stefan Krah
Skip Montanaro s...@pobox.com wrote: Thanks. I have several different versions in my local sandbox. None are 64-bit ELFs. Just to make sure I hadn't missed some new development in this area, I cloned the hg repository and build the trunk version from scratch. I get a 32-bit executable on

Re: How to build 64-bit Python on Solaris with GCC?

2011-12-09 Thread Skip Montanaro
./configure CFLAGS=-m64 LDFLAGS=-m64 should work with a reasonably recent revision. Thanks, that did, indeed work with CPython trunk. I eventually switched from gcc to Sun's compiler though because I was getting link warnings. Skip -- http://mail.python.org/mailman/listinfo/python-list

Re: How to build 64-bit Python on Solaris with GCC?

2011-12-07 Thread Skip Montanaro
Does anyone have a recipe for the subject build? I know Solaris is a minority platform these days, but surely someone has tackled this problem, haven't they? Thx, Skip -- http://mail.python.org/mailman/listinfo/python-list

Re: How to build 64-bit Python on Solaris with GCC?

2011-12-07 Thread Karim
Le 07/12/2011 12:30, Skip Montanaro a écrit : Does anyone have a recipe for the subject build? I know Solaris is a minority platform these days, but surely someone has tackled this problem, haven't they? Thx, Skip ./configure make make install Karim --

How to build 64-bit Python on Solaris with GCC?

2011-12-06 Thread Skip Montanaro
I'd like to build a 64-bit version of Python on Solaris using gcc. I did a bit of Googling, but everything I came up with seemed old, inconclusive or assumes the use of the Sun Studio compiler, with which i have no experience. Does anyone have a recipe for the subject build? Thanks, -- Skip