summaryrefslogtreecommitdiff
path: root/Modules/ld_so_aix
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-08 19:06:31 +0000
committerGuido van Rossum <guido@python.org>1996-08-08 19:06:31 +0000
commita285e890d0623e77711466b0cf2314d23997bccc (patch)
tree85e6a3cb080ce56c9fd1f15daaedfdcede518a9e /Modules/ld_so_aix
parentdd0ce610c3430189eb598763398aa8b356d3a98a (diff)
downloadcpython-a285e890d0623e77711466b0cf2314d23997bccc.tar.gz
Latest AIX changes from Vlad
Diffstat (limited to 'Modules/ld_so_aix')
-rwxr-xr-xModules/ld_so_aix36
1 files changed, 25 insertions, 11 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix
index 77605c8c0e..e5da17eda5 100755
--- a/Modules/ld_so_aix
+++ b/Modules/ld_so_aix
@@ -8,8 +8,15 @@
# 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.
+# USAGE: ld_so_aix [CC] [arguments]
+#
+# ARGUMENTS: Same as for "ld". The -bM, -bE, -bI, -H, -T, and -lm
+# arguments will be supplied by this script. The compiler
+# specific ("-lc" or "-lc_r", "-lpthreads", etc) arguments
+# will be automatically passed to "ld" according to the CC
+# command provided as a first argument to this script.
+# Usually, the same CC command was used to produce the
+# pre-compiled .o file.
#
# NOTES: 1. Currently specific to the building of Python
# interpreter shared objects, in that the entry
@@ -23,7 +30,11 @@
# 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 --
+# HISTORY: Aug-6-1996 -- Take care of the compiler specific --
+# -- args by leaving CC to invoke "ld". --
+# Vladimir Marangozov
+#
+# Jul-1-1996 -- Make sure to use /usr/ccs/bin/ld --
# -- Use makexp_aix for the export list. --
# Vladimir Marangozov (Vladimir.Marangozov@imag.fr)
#
@@ -32,19 +43,24 @@
#
# Variables
-objfile=$1
-shift
+CC=$1; shift
+
+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 $*"
+expfile="$filename.exp"
+impfile="python.exp"
+
+CCOPT="-Wl,-e$entry -Wl,-bE:$expfile -Wl,-bI:$impfile"
+CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -lm"
+CCARGS="$objfile $*"
# Export list generation
makexp_aix $filename.exp "$objfile" $objfile
# Perform the link.
-#echo "ld $ldopts $ldargs"
-/usr/ccs/bin/ld $ldopts $ldargs
+#echo $CC $CCOPT $CCARGS
+$CC $CCOPT $CCARGS
# Delete the module's export list file.
# Comment this line if you need it.
@@ -54,5 +70,3 @@ rm -f $filename.exp
#echo chmod -x `echo $objfile | sed "s/\.o$/.so/"`
chmod -x `echo $objfile | sed "s/\.o$/.so/"`
-
-