summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-05-20 19:53:47 (GMT)
committerThomas Heller <theller@ctypes.org>2008-05-20 19:53:47 (GMT)
commit03b75ddf7c63bb7b7bc1b424661c94076b57be9e (patch)
tree8dfbbc2c4c42ee32f987eafdfd0d29dd8cfbac65 /Modules
parentc01288387c47a75cab059a6d0c6dfe4cb9eff2de (diff)
downloadcpython-03b75ddf7c63bb7b7bc1b424661c94076b57be9e.zip
cpython-03b75ddf7c63bb7b7bc1b424661c94076b57be9e.tar.gz
cpython-03b75ddf7c63bb7b7bc1b424661c94076b57be9e.tar.bz2
On HPUX, -fPIC must be used for linking. _ctypes now builds on HP-UX
IA64 and PA machines. The ctypes unittests work fine on the IA64, but dump core in test_qsort on the PA.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/libffi/fficonfig.py.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_ctypes/libffi/fficonfig.py.in b/Modules/_ctypes/libffi/fficonfig.py.in
index 09c13db..f5f3810 100644
--- a/Modules/_ctypes/libffi/fficonfig.py.in
+++ b/Modules/_ctypes/libffi/fficonfig.py.in
@@ -25,6 +25,7 @@ ffi_platforms = {
'SH64': ['src/sh64/sysv.S', 'src/sh64/ffi.c'],
'PA': ['src/pa/linux.S', 'src/pa/ffi.c'],
'PA_LINUX': ['src/pa/linux.S', 'src/pa/ffi.c'],
+ 'PA_HPUX': ['src/pa/hpux32.s', 'src/pa/ffi.c'],
}
ffi_srcdir = '@srcdir@'