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
3c678c33
Kaydet (Commit)
3c678c33
authored
Eyl 30, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary.
Patch by Oscar Benjamin.
üst
1a67bee7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
8 deletions
+22
-8
cygwinccompiler.py
Lib/distutils/cygwinccompiler.py
+18
-8
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/cygwinccompiler.py
Dosyayı görüntüle @
3c678c33
...
@@ -48,7 +48,7 @@ cygwin in no-cygwin mode).
...
@@ -48,7 +48,7 @@ cygwin in no-cygwin mode).
import
os
import
os
import
sys
import
sys
import
copy
import
copy
from
subprocess
import
Popen
,
PIPE
from
subprocess
import
Popen
,
PIPE
,
check_output
import
re
import
re
from
distutils.ccompiler
import
gen_preprocess_options
,
gen_lib_options
from
distutils.ccompiler
import
gen_preprocess_options
,
gen_lib_options
...
@@ -294,13 +294,18 @@ class Mingw32CCompiler(CygwinCCompiler):
...
@@ -294,13 +294,18 @@ class Mingw32CCompiler(CygwinCCompiler):
else
:
else
:
entry_point
=
''
entry_point
=
''
self
.
set_executables
(
compiler
=
'gcc -mno-cygwin -O -Wall'
,
if
self
.
gcc_version
<
'4'
or
is_cygwingcc
():
compiler_so
=
'gcc -mno-cygwin -mdll -O -Wall'
,
no_cygwin
=
' -mno-cygwin'
compiler_cxx
=
'g++ -mno-cygwin -O -Wall'
,
else
:
linker_exe
=
'gcc -mno-cygwin'
,
no_cygwin
=
''
linker_so
=
'
%
s -mno-cygwin
%
s
%
s'
%
(
self
.
linker_dll
,
shared_option
,
self
.
set_executables
(
compiler
=
'gcc
%
s -O -Wall'
%
no_cygwin
,
entry_point
))
compiler_so
=
'gcc
%
s -mdll -O -Wall'
%
no_cygwin
,
compiler_cxx
=
'g++
%
s -O -Wall'
%
no_cygwin
,
linker_exe
=
'gcc
%
s'
%
no_cygwin
,
linker_so
=
'
%
s
%
s
%
s
%
s'
%
(
self
.
linker_dll
,
no_cygwin
,
shared_option
,
entry_point
))
# Maybe we should also append -mthreads, but then the finished
# Maybe we should also append -mthreads, but then the finished
# dlls need another dll (mingwm10.dll see Mingw32 docs)
# dlls need another dll (mingwm10.dll see Mingw32 docs)
# (-mthreads: Support thread-safe exception handling on `Mingw32')
# (-mthreads: Support thread-safe exception handling on `Mingw32')
...
@@ -393,3 +398,8 @@ def get_versions():
...
@@ -393,3 +398,8 @@ def get_versions():
"""
"""
commands
=
[
'gcc -dumpversion'
,
'ld -v'
,
'dllwrap --version'
]
commands
=
[
'gcc -dumpversion'
,
'ld -v'
,
'dllwrap --version'
]
return
tuple
([
_find_exe_version
(
cmd
)
for
cmd
in
commands
])
return
tuple
([
_find_exe_version
(
cmd
)
for
cmd
in
commands
])
def
is_cygwingcc
():
'''Try to determine if the gcc that would be used is from cygwin.'''
out_string
=
check_output
([
'gcc'
,
'-dumpmachine'
])
return
out_string
.
strip
()
.
endswith
(
b
'cygwin'
)
Misc/ACKS
Dosyayı görüntüle @
3c678c33
...
@@ -101,6 +101,7 @@ Thomas Bellman
...
@@ -101,6 +101,7 @@ Thomas Bellman
Alexander “Саша” Belopolsky
Alexander “Саша” Belopolsky
Eli Bendersky
Eli Bendersky
David Benjamin
David Benjamin
Oscar Benjamin
Andrew Bennetts
Andrew Bennetts
Andy Bensky
Andy Bensky
Bennett Benson
Bennett Benson
...
...
Misc/NEWS
Dosyayı görüntüle @
3c678c33
...
@@ -71,6 +71,9 @@ Core and Builtins
...
@@ -71,6 +71,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except
when necessary. Patch by Oscar Benjamin.
- Properly initialize all fields of a SSL object after allocation.
- Properly initialize all fields of a SSL object after allocation.
- Issue #4366: Fix building extensions on all platforms when --enable-shared
- Issue #4366: Fix building extensions on all platforms when --enable-shared
...
...
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