[Python-checkins] commit of r41465 - python/branches/release24-maint

skip.montanaro@python.org skip.montanaro at python.org
Thu Nov 17 19:22:01 CET 2005


Author: skip.montanaro
Date: Thu Nov 17 19:22:01 2005
New Revision: 41465

Modified:
   python/branches/release24-maint/README
Log:
backport

Modified: python/branches/release24-maint/README
==============================================================================
--- python/branches/release24-maint/README	(original)
+++ python/branches/release24-maint/README	Thu Nov 17 19:22:01 2005
@@ -309,6 +309,12 @@
 	4. Modify the installed GCC specs file, adding -R options into the
 	   *link: section.
 
+        The complex object fails to compile on Solaris 10 with gcc 3.4 (at
+        least up to 3.4.3).  To work around it, define Py_HUGE_VAL as
+        HUGE_VAL(), e.g.:
+
+          make CPPFLAGS='-D"Py_HUGE_VAL=HUGE_VAL()" -I. -I$(srcdir)/Include'
+
 Linux:  A problem with threads and fork() was tracked down to a bug in
 	the pthreads code in glibc version 2.0.5; glibc version 2.0.7
 	solves the problem.  This causes the popen2 test to fail;


More information about the Python-checkins mailing list