Seems to be complaining that there is something wrong with the version
of glibc on your box. Sometimes on 64 bit machines there is also a 32
bit version of glibc, could you be pointing to it for some reason? I
see you are using a non CentOS standard version of Python, could this
be messing up your paths for other things?
~Carl
> --
> You received this message because you are subscribed to the Google Groups "modwsgi" group.
> To post to this group, send email to mod...@googlegroups.com.
> To unsubscribe from this group, send email to modwsgi+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
>
>
--
-------------------------------------------------------------------------------
Carl J. Nobile (Software Engineer)
carl....@gmail.com
-------------------------------------------------------------------------------
This would normally indicate you are using a 64 bit GCC compiler but
have only a 32 bit Python installation or vice versa.
Have only ever seen this on MacOS X before. See:
http://code.google.com/p/modwsgi/wiki/InstallationOnMacOSX#Non_Universal_Developer_Tools
Graham
$ ldd /usr/bin/python
linux-vdso.so.1 => (0x00007fff6bbb4000)
libpthread.so.0 => /lib/libpthread.so.0 (0x00007f3b8562b000)
libdl.so.2 => /lib/libdl.so.2 (0x00007f3b85427000)
libutil.so.1 => /lib/libutil.so.1 (0x00007f3b85223000)
libssl.so.0.9.8 => /lib/libssl.so.0.9.8 (0x00007f3b84fd1000)
libcrypto.so.0.9.8 => /lib/libcrypto.so.0.9.8 (0x00007f3b84c41000)
libz.so.1 => /lib/libz.so.1 (0x00007f3b84a29000)
libm.so.6 => /lib/libm.so.6 (0x00007f3b847a6000)
libc.so.6 => /lib/libc.so.6 (0x00007f3b84423000)
/lib64/ld-linux-x86-64.so.2 (0x00007f3b8586b000)
Notice the last line it indicates that the Python executable that I am
using is 64bit since it is pulling in the /lib64/ld-linux-x86-64.so.2
shared object. Your's may be the 32bit version.
~Carl
> For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
>
>
--
-------------------------------------------------------------------------------
Carl J. Nobile (Software Engineer)
carl....@gmail.com
-------------------------------------------------------------------------------