[Python-checkins] python/dist/src README,1.184.2.4,1.184.2.5

gvanrossum@users.sourceforge.net gvanrossum at users.sourceforge.net
Tue Sep 20 21:04:38 CEST 2005


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

Modified Files:
      Tag: release24-maint
	README 
Log Message:
Update 64-bit AIX and HP-UX build instructions.


Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/README,v
retrieving revision 1.184.2.4
retrieving revision 1.184.2.5
diff -u -d -r1.184.2.4 -r1.184.2.5
--- README	14 Sep 2005 17:54:39 -0000	1.184.2.4
+++ README	20 Sep 2005 19:04:34 -0000	1.184.2.5
@@ -367,6 +367,14 @@
 	like "cc_r".  For full C++ module support, set CC="xlC_r" (or
 	CC="xlC" without thread support).
 
+AIX 5.3: To build a 64-bit version with IBM's compiler, I used the
+        following:
+
+        export PATH=/usr/bin:/usr/vacpp/bin
+	./configure --with-gcc="xlc_r -q64" --with-cxx="xlC_r -q64" \
+                    --disable-ipv6 AR="ar -X64"
+	make
+
 HP-UX:  When using threading, you may have to add -D_REENTRANT to the
 	OPT variable in the top-level Makefile; reported by Pat Knight,
 	this seems to make a difference (at least for HP-UX 10.20)
@@ -378,9 +386,7 @@
 	compiler, some experience has shown that the compiler's
 	optimiser produces a completely broken version of python
 	(see http://www.python.org/sf/814976). To work around this,
-	edit the Makefile and remove -O from the OPT line.  (This is
-	old information; with the latest compiler this problem does
-	not occur.)
+	edit the Makefile and remove -O from the OPT line.
 
 	To build a 64-bit executable on an Itanium 2 system using HP's
 	compiler, use these environment variables:
@@ -396,7 +402,8 @@
 
 	then *unset* the environment variables again before running
 	make.  (At least one of these flags causes the build to fail
-	if it remains set.)
+	if it remains set.)  You still have to edit the Makefile and
+	remove -O from the OPT line.
 
 HP PA-RISC 2.0: A recent bug report (http://www.python.org/sf/546117)
 	suggests that the C compiler in this 64-bit system has bugs



More information about the Python-checkins mailing list