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
d486c43d
Kaydet (Commit)
d486c43d
authored
Eki 02, 2014
tarafından
doko@ubuntu.com
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #18096: Fix library order returned by python-config.
üst
1de0ba2c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
NEWS
Misc/NEWS
+2
-0
python-config.in
Misc/python-config.in
+3
-2
python-config.sh.in
Misc/python-config.sh.in
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
d486c43d
...
@@ -38,6 +38,8 @@ Build
...
@@ -38,6 +38,8 @@ Build
-
Issue
#
16537
:
Check
whether
self
.
extensions
is
empty
in
setup
.
py
.
Patch
by
-
Issue
#
16537
:
Check
whether
self
.
extensions
is
empty
in
setup
.
py
.
Patch
by
Jonathan
Hosmer
.
Jonathan
Hosmer
.
-
Issue
#
18096
:
Fix
library
order
returned
by
python
-
config
.
What
's New in Python 3.4.2?
What
's New in Python 3.4.2?
===========================
===========================
...
...
Misc/python-config.in
Dosyayı görüntüle @
d486c43d
...
@@ -47,8 +47,9 @@ for opt in opt_flags:
...
@@ -47,8 +47,9 @@ for opt in opt_flags:
print
(
' '
.
join
(
flags
))
print
(
' '
.
join
(
flags
))
elif
opt
in
(
'--libs'
,
'--ldflags'
):
elif
opt
in
(
'--libs'
,
'--ldflags'
):
libs
=
getvar
(
'LIBS'
)
.
split
()
+
getvar
(
'SYSLIBS'
)
.
split
()
libs
=
[
'-lpython'
+
pyver
+
sys
.
abiflags
]
libs
.
append
(
'-lpython'
+
pyver
+
sys
.
abiflags
)
libs
+=
getvar
(
'LIBS'
)
.
split
()
libs
+=
getvar
(
'SYSLIBS'
)
.
split
()
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
# shared library in prefix/lib/.
# shared library in prefix/lib/.
if
opt
==
'--ldflags'
:
if
opt
==
'--ldflags'
:
...
...
Misc/python-config.sh.in
Dosyayı görüntüle @
d486c43d
...
@@ -40,7 +40,7 @@ LIBM="@LIBM@"
...
@@ -40,7 +40,7 @@ LIBM="@LIBM@"
LIBC
=
"@LIBC@"
LIBC
=
"@LIBC@"
SYSLIBS
=
"
$LIBM
$LIBC
"
SYSLIBS
=
"
$LIBM
$LIBC
"
ABIFLAGS
=
"@ABIFLAGS@"
ABIFLAGS
=
"@ABIFLAGS@"
LIBS
=
"
@LIBS@
$SYSLIBS
-lpython
${
VERSION
}${
ABIFLAGS
}
"
LIBS
=
"
-lpython
${
VERSION
}${
ABIFLAGS
}
@LIBS@
$SYSLIBS
"
BASECFLAGS
=
"@BASECFLAGS@"
BASECFLAGS
=
"@BASECFLAGS@"
LDLIBRARY
=
"@LDLIBRARY@"
LDLIBRARY
=
"@LDLIBRARY@"
LINKFORSHARED
=
"@LINKFORSHARED@"
LINKFORSHARED
=
"@LINKFORSHARED@"
...
...
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