diff options
author | Skip Montanaro <skip@pobox.com> | 2005-11-17 18:19:39 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2005-11-17 18:19:39 (GMT) |
commit | 9f6606aab1096216062be3a41c88a03fa8f11751 (patch) | |
tree | 7cbac35e61bd7eb498518bcbb1581287e269a561 | |
parent | 82a3e1a9b2f19b6fbc3142c170bdabb292fd23da (diff) | |
download | cpython-9f6606aab1096216062be3a41c88a03fa8f11751.zip cpython-9f6606aab1096216062be3a41c88a03fa8f11751.tar.gz cpython-9f6606aab1096216062be3a41c88a03fa8f11751.tar.bz2 |
note build workaround for Sol10/gcc 3.4
-rw-r--r-- | README | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -307,6 +307,12 @@ Solaris: When using Sun's C compiler with threads, at least on Solaris 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; |