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
c59cc8f5
Kaydet (Commit)
c59cc8f5
authored
Tem 24, 2012
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #14197: merge
üst
e9f35cc1
ecd4e9de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
Makefile.pre.in
Makefile.pre.in
+3
-0
NEWS
Misc/NEWS
+3
-0
python-config.in
Misc/python-config.in
+2
-1
No files found.
Makefile.pre.in
Dosyayı görüntüle @
c59cc8f5
...
...
@@ -1238,8 +1238,11 @@ frameworkinstallstructure: $(LDLIBRARY)
# Install a number of symlinks to keep software that expects a normal unix
# install (which includes python-config) happy.
frameworkinstallmaclib
:
ln
-fs
"../../../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/python
$(VERSION)
/config-
$(LDVERSION)
/libpython
$(LDVERSION)
.a"
ln
-fs
"../../../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/python
$(VERSION)
/config-
$(LDVERSION)
/libpython
$(LDVERSION)
.dylib"
ln
-fs
"../../../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/python
$(VERSION)
/config-
$(LDVERSION)
/libpython
$(VERSION)
.a"
ln
-fs
"../../../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/python
$(VERSION)
/config-
$(LDVERSION)
/libpython
$(VERSION)
.dylib"
ln
-fs
"../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/libpython
$(LDVERSION)
.dylib"
ln
-fs
"../
$(PYTHONFRAMEWORK)
"
"
$(DESTDIR)$(prefix)
/lib/libpython
$(VERSION)
.dylib"
# This installs the IDE, the Launcher and other apps into /Applications
...
...
Misc/NEWS
Dosyayı görüntüle @
c59cc8f5
...
...
@@ -229,6 +229,9 @@ Tests
Build
-----
-
Issue
#
14197
:
For
OS
X
framework
builds
,
ensure
links
to
the
shared
library
are
created
with
the
proper
ABI
suffix
.
-
Issue
#
14330
:
For
cross
builds
,
don
't use host python, use host search paths
for host compiler.
...
...
Misc/python-config.in
Dosyayı görüntüle @
c59cc8f5
...
...
@@ -52,7 +52,8 @@ for opt in opt_flags:
if
opt
==
'--ldflags'
:
if
not
getvar
(
'Py_ENABLE_SHARED'
):
libs
.
insert
(
0
,
'-L'
+
getvar
(
'LIBPL'
))
libs
.
extend
(
getvar
(
'LINKFORSHARED'
)
.
split
())
if
not
getvar
(
'PYTHONFRAMEWORK'
):
libs
.
extend
(
getvar
(
'LINKFORSHARED'
)
.
split
())
print
(
' '
.
join
(
libs
))
elif
opt
==
'--extension-suffix'
:
...
...
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