summaryrefslogtreecommitdiffstats
path: root/Modules/ld_so_aix
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-08 19:05:09 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-08 19:05:09 (GMT)
commitb4ae6a39992c43578a96320151003ee38680f681 (patch)
tree8308b6120dc942e323fb405db540a324e1c88871 /Modules/ld_so_aix
parent3bedce018553f99140be1ccf7e07ff6730ba7743 (diff)
downloadcpython-b4ae6a39992c43578a96320151003ee38680f681.zip
cpython-b4ae6a39992c43578a96320151003ee38680f681.tar.gz
cpython-b4ae6a39992c43578a96320151003ee38680f681.tar.bz2
Re-install aix files (what happened?)
Diffstat (limited to 'Modules/ld_so_aix')
-rwxr-xr-xModules/ld_so_aix58
1 files changed, 58 insertions, 0 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix
new file mode 100755
index 0000000..77605c8
--- /dev/null
+++ b/Modules/ld_so_aix
@@ -0,0 +1,58 @@
+#!/bin/sh
+#
+# ========================================================================
+# FILE: ld_so_aix
+# TYPE: executable, uses makexp_aix
+# SYSTEM: AIX
+#
+# DESCRIPTION: Creates a shareable .o from a pre-compiled (unshared)
+# .o file
+#
+# ARGUMENTS: Same as for "ld". The -bM, -bE, -bI, -H, -T, and -lc
+# arguments of "ld" will be supplied by this script.
+#
+# NOTES: 1. Currently specific to the building of Python
+# interpreter shared objects, in that the entry
+# point name is hardcoded based on the object file
+# name (the "mathmodule.o" file will expect an
+# entry point of "initmath"). This could be remedied
+# by the support (or simple expectation) of a "-e"
+# argument.
+# 2. The resulting shared object file is left in the
+# current directory with the extension .so
+# 3. Uncommenting the "echo" lines gives detailed output
+# about the commands executed in the script.
+#
+# HISTORY: Jul-1-1996 -- Make sure to use /usr/ccs/bin/ld --
+# -- Use makexp_aix for the export list. --
+# Vladimir Marangozov (Vladimir.Marangozov@imag.fr)
+#
+# Manus Hand (mhand@csn.net) -- Initial code -- 6/24/96
+# ========================================================================
+#
+
+# Variables
+objfile=$1
+shift
+filename=`echo $objfile | sed -e "s:.*/\([^/]*\)$:\1:" -e "s/\..*$//"`
+entry=init`echo $filename | sed "s/module.*//"`
+ldopts="-e$entry -bE:$filename.exp -bI:python.exp -bM:SRE -T512 -H512 -lc"
+ldargs="$objfile $*"
+
+# Export list generation
+makexp_aix $filename.exp "$objfile" $objfile
+
+# Perform the link.
+#echo "ld $ldopts $ldargs"
+/usr/ccs/bin/ld $ldopts $ldargs
+
+# Delete the module's export list file.
+# Comment this line if you need it.
+rm -f $filename.exp
+
+# Remove the exec rights on the shared module.
+#echo chmod -x `echo $objfile | sed "s/\.o$/.so/"`
+chmod -x `echo $objfile | sed "s/\.o$/.so/"`
+
+
+