4541ffca4e
- python-2.7.4-aarch64.patch: add missing bits of aarch64 support - python-2.7.4-no-REUSEPORT.patch: disable test of missing kernel functionality - drop unnecessary patch: python-2.7.1-distutils_test_path.patch - switch to xz archive OBS-URL: https://build.opensuse.org/request/show/177274 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=142
19 lines
737 B
Diff
19 lines
737 B
Diff
# HG changeset patch
|
|
# User Andreas Schwab <schwab@suse.de>
|
|
# Date 1367276434 -7200
|
|
# Node ID 05e8999a3901b4853e60d6701510e9b3dd54a7f3
|
|
# Parent 84cef4f1999ad9e362694cdac2f65f0981e3d5d0
|
|
Add missing fficonfig.py bits for aarch64
|
|
|
|
diff -r 84cef4f1999a -r 05e8999a3901 Modules/_ctypes/libffi/fficonfig.py.in
|
|
--- a/Modules/_ctypes/libffi/fficonfig.py.in Mon Apr 29 16:09:39 2013 -0400
|
|
+++ b/Modules/_ctypes/libffi/fficonfig.py.in Tue Apr 30 01:00:34 2013 +0200
|
|
@@ -28,6 +28,7 @@
|
|
'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'],
|
|
+ 'AARCH64' : ['src/aarch64/ffi.c', 'src/aarch64/sysv.S'],
|
|
}
|
|
|
|
ffi_sources += ffi_platforms['@TARGET@']
|