python-mcrypt install on Mac OSX

G

Guest

Hi,
I'm having a hard time getting python-mcrypt extension to build.
I installed libmcrypt with --prefix=/usr and I checked that the
library exists

-rwxr-xr-x 1 root wheel 352K Sep 19 16:53 /usr/lib/libmcrypt.
4.4.8.dylib*
lrwxr-xr-x 1 root wheel 21B Sep 19 16:53 /usr/lib/libmcrypt.
4.dylib@ -> libmcrypt.4.4.8.dylib
lrwxr-xr-x 1 root wheel 21B Sep 19 16:53 /usr/lib/
libmcrypt.dylib@ -> libmcrypt.4.4.8.dylib
-rwxr-xr-x 1 root wheel 801B Sep 19 16:53 /usr/lib/libmcrypt.la*

But this is the output from setting up python-mcrypt

# python setup.py build
running build
running build_ext
building 'mcrypt' extension
creating build
creating build/temp.macosx-10.3-fat-2.5
gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -
fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -
fno-common -dynamic -DNDEBUG -g -O3 -DVERSION="1.1" -I/usr/include -I/
Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c
mcrypt.c -o build/temp.macosx-10.3-fat-2.5/mcrypt.o
creating build/lib.macosx-10.3-fat-2.5
gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
-bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.5/
mcrypt.o -lmcrypt -o build/lib.macosx-10.3-fat-2.5/mcrypt.so
/usr/bin/ld: for architecture ppc
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
/usr/bin/ld: for architecture i386
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccGRKjU2.out (No such file or
directory)
error: command 'gcc' failed with exit status 1


What am I missing here? I linked PHP with the same libmcrypt library
just fine. This is only happening for this extension only.

Would appreciate any help, thx

Ahmad Baitalmal
 
D

Diez B. Roggisch

Ahmad said:
Hi,
I'm having a hard time getting python-mcrypt extension to build.
I installed libmcrypt with --prefix=/usr and I checked that the library
exists

-rwxr-xr-x 1 root wheel 352K Sep 19 16:53
/usr/lib/libmcrypt.4.4.8.dylib*
lrwxr-xr-x 1 root wheel 21B Sep 19 16:53
/usr/lib/libmcrypt.4.dylib@ -> libmcrypt.4.4.8.dylib
lrwxr-xr-x 1 root wheel 21B Sep 19 16:53
/usr/lib/libmcrypt.dylib@ -> libmcrypt.4.4.8.dylib
-rwxr-xr-x 1 root wheel 801B Sep 19 16:53 /usr/lib/libmcrypt.la*

But this is the output from setting up python-mcrypt

# python setup.py build
running build
running build_ext
building 'mcrypt' extension
creating build
creating build/temp.macosx-10.3-fat-2.5
gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd
-fno-common -dynamic -DNDEBUG -g -O3 -DVERSION="1.1" -I/usr/include
-I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c
mcrypt.c -o build/temp.macosx-10.3-fat-2.5/mcrypt.o
creating build/lib.macosx-10.3-fat-2.5
gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
-bundle -undefined dynamic_lookup
build/temp.macosx-10.3-fat-2.5/mcrypt.o -lmcrypt -o
build/lib.macosx-10.3-fat-2.5/mcrypt.so
/usr/bin/ld: for architecture ppc
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
/usr/bin/ld: for architecture i386
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccGRKjU2.out (No such file or
directory)
error: command 'gcc' failed with exit status 1


What am I missing here? I linked PHP with the same libmcrypt library
just fine. This is only happening for this extension only.

Try setting the DYLD_LIBRARY_PATH might help. Or altering the setup.py
to add -L/usr/lib.

Diez
 
G

Guest

Try setting the DYLD_LIBRARY_PATH might help. Or altering the setup.py
to add -L/usr/lib.

Diez

Nope, that didn't do it.
The first clue I got that something is wrong was that mcrypt.h could
not be found. Even though it exists in /usr/include. So I added the
include_dirs and library_dirs to setup.py


mcrypt=Extension(
"mcrypt",
sources=["mcrypt.c"],
include_dirs=['/usr/include'],
libraries=["mcrypt"],
library_dirs=["/usr/lib"],
define_macros=[("VERSION", '"%s"'%VERSION)]
)

setup(name="python-mcrypt",
version = VERSION,
description = "Python interface to mcrypt library",
author = "Gustavo Niemeyer",
author_email = "(e-mail address removed)",
license = "LGPL",
long_description = \
"""
Python interface to mcrypt library.
""",
ext_modules = [mcrypt],
)


I'm still getting the same output:
unning build
running build_ext
building 'mcrypt' extension
gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
-bundle -undefined dynamic_lookup build/temp.macosx-10.3-fat-2.5/
mcrypt.o -L/usr/lib -lmcrypt -o build/lib.macosx-10.3-fat-2.5/mcrypt.so
/usr/bin/ld: for architecture ppc
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
/usr/bin/ld: for architecture i386
/usr/bin/ld: can't locate file for: -lmcrypt
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccqN4eHR.out (No such file or
directory)
error: command 'gcc' failed with exit status 1


It makes no sense, so I went to another brand new mac, installed
XCode and Python 2.5 and libmcrypt-2.5.8. I got the same results. So
I'm at a loss, how can ld not see libmcrypt.

I'm digging into disutils.sysconfig to see what is the build
environment that disutils is using.
Does anyone know how to build an extension manually? without using
distutils. If I can get it to build outside of distutils I might be
able to figure out what need to be done.

Thx
 
G

Guest

Try setting the DYLD_LIBRARY_PATH might help. Or altering the setup.py
to add -L/usr/lib.

Diez

Ok, I got it to work, but it still makes no sense. I had to install
libmcrypt with --prefix=/usr/local.
If I do it with --prefix=/usr then for some reason ld won't find it
when building python-mcrypt.

Obviously I had to also change the include_dirs and library_dirs in
the setup.py file.


I thought I'd share that so hopefully someone can explain what that's
all about.

Thx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top