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
e5e6015e
Kaydet (Commit)
e5e6015e
authored
Agu 04, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added 'debug' flag to 'find_library_file()'.
üst
d9827c47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
ccompiler.py
Lib/distutils/ccompiler.py
+5
-3
unixccompiler.py
Lib/distutils/unixccompiler.py
+1
-1
No files found.
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
e5e6015e
...
...
@@ -682,10 +682,12 @@ class CCompiler:
"""
raise
NotImplementedError
def
find_library_file
(
self
,
dirs
,
lib
):
def
find_library_file
(
self
,
dirs
,
lib
,
debug
=
0
):
"""Search the specified list of directories for a static or shared
library file 'lib' and return the full path to that file. Return
None if it wasn't found in any of the specified directories.
library file 'lib' and return the full path to that file. If
'debug' true, look for a debugging version (if that makes sense on
the current platform). Return None if 'lib' wasn't found in any of
the specified directories.
"""
raise
NotImplementedError
...
...
Lib/distutils/unixccompiler.py
Dosyayı görüntüle @
e5e6015e
...
...
@@ -317,7 +317,7 @@ class UnixCCompiler (CCompiler):
return
"-l"
+
lib
def
find_library_file
(
self
,
dirs
,
lib
):
def
find_library_file
(
self
,
dirs
,
lib
,
debug
=
0
):
for
dir
in
dirs
:
shared
=
os
.
path
.
join
(
...
...
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