diff options
author | Guido van Rossum <guido@python.org> | 1996-08-08 19:07:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-08 19:07:06 (GMT) |
commit | 1dc19ba2ee952d9ee2541dd93a9dc2d246d2321a (patch) | |
tree | ae246a26ca62688cde14bcd989db44deb89c7206 /Modules | |
parent | a93b504a23ac24cd574253fabdd97eac622d4fef (diff) | |
download | cpython-1dc19ba2ee952d9ee2541dd93a9dc2d246d2321a.zip cpython-1dc19ba2ee952d9ee2541dd93a9dc2d246d2321a.tar.gz cpython-1dc19ba2ee952d9ee2541dd93a9dc2d246d2321a.tar.bz2 |
Removed
Diffstat (limited to 'Modules')
-rwxr-xr-x | Modules/bindit | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Modules/bindit b/Modules/bindit deleted file mode 100755 index 87dda1f..0000000 --- a/Modules/bindit +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/ksh - -################################# -# AIX shared library helper # -################################# - -# ------------------------------------------------------------ -# This script should be in the Modules directory, and I run it -# (from there) after having built all the shared objects. -# ------------------------------------------------------------ - -# -------------------------------------------------- -# Create the export file which will list all symbols -# that the statically linked python executable has -# to make available to dynamically loaded modules. -# -------------------------------------------------- -sort -u *.imp > python.exp - -# --------------------------------------------------------------------- -# Link the python executable. I think this is exactly the same command -# which the unmodified python makefile comes up with, except for the -# addition of the -bE: argument. -# --------------------------------------------------------------------- -cc -O main.o config.o getpath.o libModules.a ../Python/libPython.a \ - ../Objects/libObjects.a ../Parser/libParser.a -lm -lc -lg \ - -H512 -T512 -bE:python.exp \ - -o python - -# ----------------------------------------------------------------- -# Install the Python executable up one directory from Modules (just -# like the unmodified makefile does). -# ----------------------------------------------------------------- -mv python .. |