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
642c8a11
Kaydet (Commit)
642c8a11
authored
Haz 04, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #926209: Patch to setup.py to run on x86_64 Linux.
üst
2d6783b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
642c8a11
...
...
@@ -485,6 +485,9 @@ Tools/Demos
Build
-----
- In order to find libraries, setup.py now also looks in /lib64, for use
on AMD64.
- Bug #934635: Fixed a bug where the configure script couldn'
t
detect
getaddrinfo
()
properly
if
the
KAME
stack
had
SCTP
support
.
...
...
setup.py
Dosyayı görüntüle @
642c8a11
...
...
@@ -264,7 +264,7 @@ class PyBuildExt(build_ext):
# lib_dirs and inc_dirs are used to search for files;
# if a file is found in one of those directories, it can
# be assumed that no additional -I,-L directives are needed.
lib_dirs
=
self
.
compiler
.
library_dirs
+
[
'/lib'
,
'/usr/lib'
]
lib_dirs
=
self
.
compiler
.
library_dirs
+
[
'/lib'
,
'/usr/lib'
,
'/usr/lib/lib64'
]
inc_dirs
=
self
.
compiler
.
include_dirs
+
[
'/usr/include'
]
exts
=
[]
...
...
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