1998-12-17 14:00:33 -04:00
|
|
|
Python 1.5.x (x > 1) for BeOS
|
1998-08-04 14:57:28 -03:00
|
|
|
|
|
|
|
This directory contains several useful things to help you build your own
|
|
|
|
version of Python for BeOS.
|
|
|
|
|
|
|
|
What's Here?
|
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
ar-fake - A shell script used by the build process to emulate a "real"
|
|
|
|
POSIX ar command; helps to build the Python shared library.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
|
|
|
linkcc - A shell script used by the build process to build the Python
|
|
|
|
shared library.
|
|
|
|
|
|
|
|
linkmodule - A shell script used by the build process to build the
|
|
|
|
shared library versions of the standard modules; you'll
|
|
|
|
probably need this if you want to build dynamically loaded
|
|
|
|
modules from the Python archives.
|
|
|
|
|
|
|
|
PyImport_BeImageID.html - Documentation for a function added to the
|
|
|
|
Python interpreter under BeOS; not interesting
|
|
|
|
unless you're writing your own BeOS-specific
|
|
|
|
modules for dealing with dynamically-loaded
|
|
|
|
Python modules.
|
|
|
|
|
|
|
|
README - This file (obviously!).
|
|
|
|
|
|
|
|
README.readline-2.2 - Instructions for compiling/installing GNU readline 2.2.
|
|
|
|
You'll have to grab the GNU readline source code from
|
|
|
|
prep.ai.mit.edu:/pub/GNU or any other GNU mirror.
|
|
|
|
|
|
|
|
The Python interpreter is much nicer to work with
|
|
|
|
interactively if you've got readline installed. Highly
|
|
|
|
recommended.
|
|
|
|
|
|
|
|
Compiling Your Own Version
|
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
To compile your own version of Python 1.5.x for BeOS (with any luck,
|
|
|
|
Python 1.5.2 and later will compile "out of the box" on BeOS), try this:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
1) Get the latest Python source code from ftp.python.org.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
2) Configure with:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
AR=$(pwd)/BeOS/ar-fake RANLIB=: ./configure --verbose --without-gcc \
|
1998-08-04 14:57:28 -03:00
|
|
|
--prefix=/boot/home/config --with-thread
|
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
3) Copy Modules/Setup.in to Modules/Setup.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
4) Edit Modules/Setup to turn on all the modules you want built.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
Make sure you use _socket instead of socket for the name of the
|
|
|
|
socketmodule on BeOS.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
If you want the modules to be built as shared libraries, instead of as
|
|
|
|
part of the Python shared library, be sure to uncomment the #*shared*
|
|
|
|
line.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
5) Make sure Modules/Makefile.pre has REALLIBRARY set to:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
REALLIBRARY=../libpython$(VERSION).so
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
6) Make:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
make AR=$(pwd)/BeOS/ar-fake RANLIB=: OPT=-DUSE_DL_EXPORT \
|
|
|
|
CCSHARED=-UUSE_DL_EXPORT
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
7) Test:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
make AR=$(pwd)/BeOS/ar-fake RANLIB=: OPT=-DUSE_DL_EXPORT \
|
|
|
|
CCSHARED=-UUSE_DL_EXPORT test
|
1998-08-04 14:57:28 -03:00
|
|
|
|
|
|
|
Expect the following errors:
|
|
|
|
|
|
|
|
test_grp crashed -- exceptions.KeyError : getgrnam(): name not found
|
|
|
|
test_pwd failed -- Writing: 'fakename', expected: 'caught e'
|
|
|
|
test_socket crashed -- exceptions.AttributeError : SOCK_RAW
|
|
|
|
|
|
|
|
These are all due to either partial support for certain things (like
|
1998-12-17 14:00:33 -04:00
|
|
|
sockets), or valid differences between systems.
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
NOTE: On R4/x86, the pause() function is broken; expect the signal
|
|
|
|
module test to crash Python!
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
8) Install:
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
make AR=$(pwd)/BeOS/ar-fake RANLIB=: OPT=-DUSE_DL_EXPORT \
|
|
|
|
CCSHARED=-UUSE_DL_EXPORT install
|
1998-08-04 14:57:28 -03:00
|
|
|
|
1998-12-17 14:00:33 -04:00
|
|
|
9) Enjoy!
|
1998-08-04 14:57:28 -03:00
|
|
|
|
|
|
|
- Chris Herborth (chrish@qnx.com)
|
1998-12-17 14:00:33 -04:00
|
|
|
December 17, 1998
|