Compile on SunOS?

A

Alex Zhang

Hi All,
I'm trying to build Python 2.7.1 on Sun Solaris 10 amd64, however end up
with:

Python build finished, but the necessary bits to build these modules
were not found:
_bsddb _tkinter bsddb185
gdbm linuxaudiodev ossaudiodev
To find the necessary bits, look in setup.py in detect_modules() for the
module's name.


Failed to build these modules:
_bisect _codecs_cn _codecs_hk
_codecs_iso2022 _codecs_jp _codecs_kr
_codecs_tw _collections _csv
_ctypes _ctypes_test _curses
_curses_panel _elementtree _functools
_hashlib _heapq _hotshot
_io _json _locale
_lsprof _multibytecodec _multiprocessing
_random _socket _sqlite3
_ssl _struct _testcapi
array audioop binascii
bz2 cmath cPickle
crypt cStringIO datetime
dbm dl fcntl
future_builtins grp imageop
itertools math mmap
nis operator parser
pyexpat resource select
spwd strop sunaudiodev
syslog termios time
unicodedata zlib

running build_scripts

I am using cc provided in Solaris 10, readline downloaded from GNU and
compiled in 32bit. Also, I added this entry:

readline readline.c -I/local32/include -L/local32/lib -R/local32/lib
-lreadline -ltermcap

to Modules/Setup.local in order to get readline running.
Currently:

dns# /opt/python/bin/python
Python 2.7.1 (r271:86832, Dec 31 2010, 07:21:22) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/opt/python/lib/python2.7/hashlib.py", line 136, in <module>
globals()[__func_name] = __get_hash(__func_name)
File "/opt/python/lib/python2.7/hashlib.py", line 71, in
__get_builtin_constructor
import _md5
ImportError: No module named _md5

I can not use hashlib and many other modules however I can use the rest
modules.
Thanks for all your kind reply.
 
M

MrJean1

These command lines used to build 32-bit Python 2.4 and 2.5 on Solaris
10 Opteron using SUN's compilers:

setenv LD_LIBRARY_PATH ....
env CCSHARED="-KPIC" LDSHARED="cc -xtarget=native -G" LDFLAGS="-
xtarget=native" CC="cc" \
CPP="cc-xtarget=native -E" BASECFLAGS="-xtarget=native" OPT="-xO5"
CFLAGS="-xtarget=native" \
CXX="CC -xtarget=native" ./configure --enable-shared --without-gcc
--disable-ipv6 --prefix=....
make

Replace the ....'s accordingly. Use BASECFLAGS="-xtarget=native -
xlibmieee" for IEEE floating point.

Disclaimer, I have not tried building Python 2.6 nor 2.7.

/Jean


Hi All,
I'm trying to build Python 2.7.1 on Sun Solaris 10 amd64, however end up
with:

Python build finished, but the necessary bits to build these modules
were not found:
_bsddb             _tkinter           bsddb185
gdbm               linuxaudiodev      ossaudiodev
To find the necessary bits, look in setup.py in detect_modules() for the
module's name.

Failed to build these modules:
_bisect            _codecs_cn         _codecs_hk
_codecs_iso2022    _codecs_jp         _codecs_kr
_codecs_tw         _collections       _csv
_ctypes            _ctypes_test       _curses
_curses_panel      _elementtree       _functools
_hashlib           _heapq             _hotshot
_io                _json              _locale
_lsprof            _multibytecodec    _multiprocessing
_random            _socket            _sqlite3
_ssl               _struct            _testcapi
array              audioop            binascii
bz2                cmath              cPickle
crypt              cStringIO          datetime
dbm                dl                 fcntl
future_builtins    grp                imageop
itertools          math               mmap
nis                operator           parser
pyexpat            resource           select
spwd               strop              sunaudiodev
syslog             termios            time
unicodedata        zlib

running build_scripts

I am using cc provided in Solaris 10, readline downloaded from GNU and
compiled in 32bit. Also, I added this entry:

readline readline.c -I/local32/include -L/local32/lib -R/local32/lib
-lreadline -ltermcap

to Modules/Setup.local in order to get readline running.
Currently:

dns# /opt/python/bin/python
Python 2.7.1 (r271:86832, Dec 31 2010, 07:21:22) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
 >>> import hashlib
Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   File "/opt/python/lib/python2.7/hashlib.py", line 136, in <module>
     globals()[__func_name] = __get_hash(__func_name)
   File "/opt/python/lib/python2.7/hashlib.py", line 71, in
__get_builtin_constructor
     import _md5
ImportError: No module named _md5

I can not use hashlib and many other modules however I can use the rest
modules.
Thanks for all your kind reply.
 

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

No members online now.

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,898
Latest member
BlairH7607

Latest Threads

Top