diff options
author | Guido van Rossum <guido@python.org> | 2005-09-14 17:54:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2005-09-14 17:54:39 (GMT) |
commit | e42f446482780553e3e0b3faae1f0300c0a3206d (patch) | |
tree | c96951105e736f934268b994685008e2989a64ea /README | |
parent | 0a8c3ef536b4b73cf365a3081d7a824e3fb9ec15 (diff) | |
download | cpython-e42f446482780553e3e0b3faae1f0300c0a3206d.zip cpython-e42f446482780553e3e0b3faae1f0300c0a3206d.tar.gz cpython-e42f446482780553e3e0b3faae1f0300c0a3206d.tar.bz2 |
(backport from HEAD)
- Changes donated by Elemental Security to make it work on HP-UX 11 on
Itanium2 with HP's 64-bit compiler (SF patch #1225212).
Diffstat (limited to 'README')
-rw-r--r-- | README | 28 |
1 files changed, 23 insertions, 5 deletions
@@ -374,11 +374,29 @@ HP-UX: When using threading, you may have to add -D_REENTRANT to the using HP/UX 11 and later - threading seems to work "out of the box". -HP-UX ia64: When building on the ia64 (Itanium) platform using HP's - 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. +HP-UX ia64: When building on the ia64 (Itanium) platform using HP's + 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.) + + To build a 64-bit executable on an Itanium 2 system using HP's + compiler, use these environment variables: + + CC=cc + CXX=aCC + BASECFLAGS="+DD64" + LDFLAGS="+DD64 -lxnet" + + and call configure as: + + ./configure --without-gcc + + then *unset* the environment variables again before running + make. (At least one of these flags causes the build to fail + if it remains set.) 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 |