Re: problems trying to build python 2.6 as a shared library

2013-01-18 Thread scubbojj
On Friday, 25 September 2009 04:36:28 UTC-7, Marco Nawijn wrote: On Sep 25, 1:08 pm, Chris Withers ch...@simplistix.co.uk wrote: Hi All, I'm trying to build Python 2.6 as a shared library, so I did:    ./configure --enable-shared    make    make altinstall No obvious signs of

Re: problems trying to build python 2.6 as a shared library

2009-09-30 Thread Chris Withers
Marco Nawijn wrote: 2. Add path to dynamic linker configuration file. This typically is in '/etc/ld.so.conf'. See man page for ld for more information. Yes, this was it. Don't forget to run ldconfig after you've changed /etc/ld.so.conf It's frustrating how the contents of this file vary

problems trying to build python 2.6 as a shared library

2009-09-25 Thread Chris Withers
Hi All, I'm trying to build Python 2.6 as a shared library, so I did: ./configure --enable-shared make make altinstall No obvious signs of failure, but when I try and use the resulting python, I get: python2.6: error while loading shared libraries: libpython2.6.so.1.0: cannot open

Re: problems trying to build python 2.6 as a shared library

2009-09-25 Thread Marco Nawijn
On Sep 25, 1:08 pm, Chris Withers ch...@simplistix.co.uk wrote: Hi All, I'm trying to build Python 2.6 as a shared library, so I did:    ./configure --enable-shared    make    make altinstall No obvious signs of failure, but when I try and use the resulting python, I get: python2.6:

Re: problems trying to build python 2.6 as a shared library

2009-09-25 Thread Christian Heimes
Marco Nawijn wrote: The dynamic loader cannot find the python shared library. There are at least 2 options: 1. Add path that contains the shared library to the LD_LIBRARY_PATH environment variable. In a bash shell this can be accomplished by: export