[Python-checkins] python/dist/src/Modules ld_so_aix,2.5,2.6

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Mon Oct 3 05:57:12 CEST 2005


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13804/Modules

Modified Files:
	ld_so_aix 
Log Message:
SF Bug # 941346, AIX shared library fix

Since I can't test this, I'm just adding a comment.  If we get access
to AIX boxes, we can test this and really resolve.  Anyone from IBM
want to offer help?

Backport candidate I suppose.


Index: ld_so_aix
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/ld_so_aix,v
retrieving revision 2.5
retrieving revision 2.6
diff -u -d -r2.5 -r2.6
--- ld_so_aix	3 Sep 1997 00:45:30 -0000	2.5
+++ ld_so_aix	3 Oct 2005 03:57:09 -0000	2.6
@@ -168,6 +168,10 @@
 
 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"
+# Note: to use dynamic libraries like libtcl8.4.so and libtk8.4.so 
+# you may need to replace the second CCOPT line above with the following:
+# CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -brtl -bnortllib -lm -o $objfile"
+
 CCARGS="$args"
 
 # Export list generation.



More information about the Python-checkins mailing list