Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
90c61a2e
Kaydet (Commit)
90c61a2e
authored
Nis 28, 2009
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mips
instead of mipsel)
üst
3b23c9c5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
NEWS
Misc/NEWS
+2
-0
configure
Modules/_ctypes/libffi/configure
+3
-3
configure.ac
Modules/_ctypes/libffi/configure.ac
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
90c61a2e
...
...
@@ -255,6 +255,8 @@ Core and Builtins
Library
-------
- Issue #4305: ctypes should now build again on mipsel-linux-gnu
- Issue #1734234: Massively speedup ``unicodedata.normalize()`` when the
string is already in normalized form, by performing a quick check beforehand.
Original patch by Rauli Ruohonen.
...
...
Modules/_ctypes/libffi/configure
Dosyayı görüntüle @
90c61a2e
...
...
@@ -20426,10 +20426,10 @@ case "$host" in
;;
mips-sgi-irix5.* | mips-sgi-irix6.*)
TARGET=MIPS; TARGETDIR=mips
TARGET=MIPS
_IRIX
; TARGETDIR=mips
;;
mips*-*-linux*)
TARGET=MIPS; TARGETDIR=mips
TARGET=MIPS
_LINUX
; TARGETDIR=mips
;;
powerpc*-*-linux* | powerpc-*-sysv*)
...
...
@@ -20484,7 +20484,7 @@ echo "$as_me: error: \"libffi has not been ported to $host.\"" >&2;}
{ (exit 1); exit 1; }; }
fi
if
test x$TARGET = xMIPS
; then
if
expr x$TARGET : 'xMIPS' > /dev/null
; then
MIPS_TRUE=
MIPS_FALSE='#'
else
...
...
Modules/_ctypes/libffi/configure.ac
Dosyayı görüntüle @
90c61a2e
...
...
@@ -106,10 +106,10 @@ case "$host" in
;;
mips-sgi-irix5.* | mips-sgi-irix6.*)
TARGET=MIPS; TARGETDIR=mips
TARGET=MIPS
_IRIX
; TARGETDIR=mips
;;
mips*-*-linux*)
TARGET=MIPS; TARGETDIR=mips
TARGET=MIPS
_LINUX
; TARGETDIR=mips
;;
powerpc*-*-linux* | powerpc-*-sysv*)
...
...
@@ -162,7 +162,7 @@ if test $TARGETDIR = unknown; then
AC_MSG_ERROR(["libffi has not been ported to $host."])
fi
AM_CONDITIONAL(MIPS,
test x$TARGET = xMIPS
)
AM_CONDITIONAL(MIPS,
[expr x$TARGET : 'xMIPS' > /dev/null]
)
AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
AM_CONDITIONAL(X86, test x$TARGET = xX86)
AM_CONDITIONAL(X86_FREEBSD, test x$TARGET = xX86_FREEBSD)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment