diff options
author | Thomas Wouters <thomas@python.org> | 2001-02-15 11:45:29 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-02-15 11:45:29 (GMT) |
commit | 8ee06148f98e1f23174575b5a3e41e7d4a0e7f03 (patch) | |
tree | 677db0cc66ca4f17d0392bce7d1c74174d966e61 /README | |
parent | 0f954a4256c3122918b9ef0d17f587a0003ee45e (diff) | |
download | cpython-8ee06148f98e1f23174575b5a3e41e7d4a0e7f03.zip cpython-8ee06148f98e1f23174575b5a3e41e7d4a0e7f03.tar.gz cpython-8ee06148f98e1f23174575b5a3e41e7d4a0e7f03.tar.bz2 |
Rewrite AIX blurb to make clear threads are the default, and add note about
setting the non-C++ compiler to a threadsafe one as well.
Diffstat (limited to 'README')
-rw-r--r-- | README | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -266,12 +266,13 @@ DEC Ultrix: compile with GCC to avoid bugs in the native compiler, and pass SHELL=/bin/sh5 to Make when installing. AIX: A complete overhaul of the shared library support is now in - place. See Misc/AIX-NOTES for some notes on how it's done. + place. See Misc/AIX-NOTES for some notes on how it's done. (The optimizer bug reported at this place in previous releases - has been worked around by a minimal code change.) - In addition, Gary Duzan has a hint for C++ users: to enable - full C++ module support, set CC="xlC" (or CC="xlC_r" for thread - support in AIX 4.2.1). + has been worked around by a minimal code change.) If you get + errors about ptread_* functions, during compile or during + testing, try setting CC to a thread-safe (reentrant) compiler, + like "cc_r". For full C++ module support, set CC="xlC_r" (or + CC="xlC" without thread support). HP-UX: Please read the file Misc/HPUX-NOTES for shared libraries. When using threading, you may have to add -D_REENTRANT to the |