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
67091776
Kaydet (Commit)
67091776
authored
Nis 06, 2010
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix python-config to use the new sysconfig module; silences deprecation warnings.
üst
603b7535
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
python-config.in
Misc/python-config.in
+7
-7
No files found.
Misc/python-config.in
Dosyayı görüntüle @
67091776
#!@EXENAME@
import sys
import os
import getopt
from distutils import sysconfig
import os
import sys
import sysconfig
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
'ldflags', 'help']
...
...
@@ -31,14 +31,14 @@ if '--help' in opt_flags:
for opt in opt_flags:
if opt == '--prefix':
print(sysconfig.
PREFIX
)
print(sysconfig.
get_config_var('prefix')
)
elif opt == '--exec-prefix':
print(sysconfig.
EXEC_PREFIX
)
print(sysconfig.
get_config_var('exec_prefix')
)
elif opt in ('--includes', '--cflags'):
flags = ['-I' + sysconfig.get_p
ython_inc(
),
'-I' + sysconfig.get_p
ython_inc(plat_specific=True
)]
flags = ['-I' + sysconfig.get_p
ath('include'
),
'-I' + sysconfig.get_p
ath('platinclude'
)]
if opt == '--cflags':
flags.extend(getvar('CFLAGS').split())
print(' '.join(flags))
...
...
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