mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Merged revisions 63395-63396,63511,63522-63523 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63395 | thomas.heller | 2008-05-16 22:06:31 +0200 (Fr, 16 Mai 2008) | 4 lines Issue 1793: Add ctypes.util.find_msvcrt() function (on Windows). ........ r63396 | thomas.heller | 2008-05-16 22:19:07 +0200 (Fr, 16 Mai 2008) | 4 lines Very simple test for ctypes.util.find_library on Windows. ........ r63511 | thomas.heller | 2008-05-20 21:53:47 +0200 (Di, 20 Mai 2008) | 6 lines 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. ........ r63522 | thomas.heller | 2008-05-21 20:47:02 +0200 (Mi, 21 Mai 2008) | 2 lines The -x <test1[,test2...]> flag allows to exclude tests. ........ r63523 | thomas.heller | 2008-05-21 21:47:44 +0200 (Mi, 21 Mai 2008) | 2 lines Oops, get_tests may be called with 3 arguments. ........
This commit is contained in:
parent
ab081cfbb1
commit
3eaaeb437f
6 changed files with 64 additions and 6 deletions
|
@ -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@'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue