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
1a020868
Kaydet (Commit)
1a020868
authored
Şub 16, 2001
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Linking just got simpiler on AIX and BeOS (closes SF patch #103679).
üst
67ea6d85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
25 deletions
+2
-25
sysconfig.py
Lib/distutils/sysconfig.py
+2
-25
No files found.
Lib/distutils/sysconfig.py
Dosyayı görüntüle @
1a020868
...
@@ -305,31 +305,8 @@ def _init_posix():
...
@@ -305,31 +305,8 @@ def _init_posix():
# On AIX, there are wrong paths to the linker scripts in the Makefile
# On AIX, there are wrong paths to the linker scripts in the Makefile
# -- these paths are relative to the Python source, but when installed
# -- these paths are relative to the Python source, but when installed
# the scripts are in another directory.
# the scripts are in another directory.
if
sys
.
platform
==
'aix4'
:
# what about AIX 3.x ?
if
python_build
:
# Linker script is in the config directory, not in Modules as the
g
[
'LDSHARED'
]
=
g
[
'BLDSHARED'
]
# Makefile says.
python_lib
=
get_python_lib
(
standard_lib
=
1
)
ld_so_aix
=
os
.
path
.
join
(
python_lib
,
'config'
,
'ld_so_aix'
)
python_exp
=
os
.
path
.
join
(
python_lib
,
'config'
,
'python.exp'
)
g
[
'LDSHARED'
]
=
"
%
s
%
s -bI:
%
s"
%
(
ld_so_aix
,
g
[
'CC'
],
python_exp
)
elif
sys
.
platform
==
'beos'
:
# Linker script is in the config directory. In the Makefile it is
# relative to the srcdir, which after installation no longer makes
# sense.
python_lib
=
get_python_lib
(
standard_lib
=
1
)
linkerscript_name
=
os
.
path
.
basename
(
string
.
split
(
g
[
'LDSHARED'
])[
0
])
linkerscript
=
os
.
path
.
join
(
python_lib
,
'config'
,
linkerscript_name
)
# XXX this isn't the right place to do this: adding the Python
# library to the link, if needed, should be in the "build_ext"
# command. (It's also needed for non-MS compilers on Windows, and
# it's taken care of for them by the 'build_ext.get_libraries()'
# method.)
g
[
'LDSHARED'
]
=
(
"
%
s -L
%
s/lib -lpython
%
s"
%
(
linkerscript
,
PREFIX
,
sys
.
version
[
0
:
3
]))
global
_config_vars
global
_config_vars
_config_vars
=
g
_config_vars
=
g
...
...
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