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
f0219ba2
Kaydet (Commit)
f0219ba2
authored
Şub 08, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ditch .def file kludge for (much smaller) /export option kludge.
üst
da8d216e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
build_ext.py
Lib/distutils/command/build_ext.py
+1
-12
No files found.
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
f0219ba2
...
...
@@ -236,18 +236,7 @@ class BuildExt (Command):
library_dirs
=
build_info
.
get
(
'library_dirs'
)
extra_args
=
build_info
.
get
(
'extra_link_args'
)
or
[]
if
self
.
compiler
.
compiler_type
==
'msvc'
:
def_file
=
build_info
.
get
(
'def_file'
)
if
def_file
is
None
:
source_dir
=
os
.
path
.
dirname
(
sources
[
0
])
ext_base
=
(
string
.
split
(
extension_name
,
'.'
))[
-
1
]
def_file
=
os
.
path
.
join
(
source_dir
,
"
%
s.def"
%
ext_base
)
if
not
os
.
path
.
exists
(
def_file
):
self
.
warn
(
"file '
%
s' not found: "
%
def_file
+
"might have problems building DLL"
)
def_file
=
None
if
def_file
is
not
None
:
extra_args
.
append
(
'/DEF:'
+
def_file
)
extra_args
.
append
(
'/export:init
%
s'
%
extension_name
)
ext_filename
=
self
.
extension_filename
\
(
extension_name
,
self
.
package
)
...
...
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