diff options
author | Skip Montanaro <skip@pobox.com> | 2005-11-17 18:22:01 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2005-11-17 18:22:01 (GMT) |
commit | 6736b862724133b60fe3fb920d380df854f29558 (patch) | |
tree | 17e611817c2c1e02c6b2329bb5bbce271f81eb83 /README | |
parent | a68d719e154e7f2fe877819eaad7118b54b55e6e (diff) | |
download | cpython-6736b862724133b60fe3fb920d380df854f29558.zip cpython-6736b862724133b60fe3fb920d380df854f29558.tar.gz cpython-6736b862724133b60fe3fb920d380df854f29558.tar.bz2 |
backport
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -309,6 +309,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; |