diff options
author | Guido van Rossum <guido@python.org> | 1997-08-06 23:42:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-06 23:42:07 (GMT) |
commit | fb84255e6756adcb4c38e23d63c0f3c017012789 (patch) | |
tree | 9d3c1117729bb91258f2ead299a2a71ec9b35b18 /Modules/ld_so_aix | |
parent | b06df27843611d9b1a9988da7aacf01073a1fbc4 (diff) | |
download | cpython-fb84255e6756adcb4c38e23d63c0f3c017012789.zip cpython-fb84255e6756adcb4c38e23d63c0f3c017012789.tar.gz cpython-fb84255e6756adcb4c38e23d63c0f3c017012789.tar.bz2 |
New version of Vladimir Marangozov's AIX hacks -- simpler etc.
Diffstat (limited to 'Modules/ld_so_aix')
-rwxr-xr-x | Modules/ld_so_aix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix index 57fbdeb..7106c0b 100755 --- a/Modules/ld_so_aix +++ b/Modules/ld_so_aix @@ -20,6 +20,7 @@ # (*) -bE:[ExportFile] -bE:[OutputBaseName].exp # (*) -bI:[ImportFile] -bI:./python.exp # -bM:[ModuleType] -bM:SRE +# -bhalt:[Number] -bhalt:4 # -T[Number] -T512 # -H[Number] -H512 # -lm @@ -155,7 +156,7 @@ if test -z "$entry"; then entry=init`echo $filename | sed "s/module.*//"` fi -#echo "ld_so_aix: Debug info section +#echo "ld_so_aix: Debug info section" #echo " -> output file : $objfile" #echo " -> import file : $impfile" #echo " -> export file : $expfile" @@ -163,7 +164,7 @@ fi #echo " -> object files: $objs" #echo " -> CC arguments: $args" -CCOPT="-Wl,-e$entry -Wl,-bE:$expfile -Wl,-bI:$impfile" +CCOPT="-Wl,-e$entry -Wl,-bE:$expfile -Wl,-bI:$impfile -Wl,-bhalt:4" CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -lm -o $objfile" CCARGS="$args" |