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
c1df95e1
Kaydet (Commit)
c1df95e1
authored
Haz 16, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
starting distutils.ccompiler test coverage and cleanup
üst
fdefc0a5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
21 deletions
+56
-21
ccompiler.py
Lib/distutils/ccompiler.py
+19
-21
test_ccompiler.py
Lib/distutils/tests/test_ccompiler.py
+37
-0
No files found.
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
c1df95e1
...
...
@@ -1217,27 +1217,27 @@ def gen_preprocess_options (macros, include_dirs):
return
pp_opts
# gen_preprocess_options ()
def
gen_lib_options
(
compiler
,
library_dirs
,
runtime_library_dirs
,
libraries
):
def
gen_lib_options
(
compiler
,
library_dirs
,
runtime_library_dirs
,
libraries
):
"""Generate linker options for searching library directories and
linking with specific libraries. 'libraries' and 'library_dirs' are,
respectively, lists of library names (not filenames!) and search
directories. Returns a list of command-line options suitable for use
with some compiler (depending on the two format strings passed in).
linking with specific libraries.
'libraries' and 'library_dirs' are, respectively, lists of library names
(not filenames!) and search directories. Returns a list of command-line
options suitable for use with some compiler (depending on the two format
strings passed in).
"""
lib_opts
=
[]
for
dir
in
library_dirs
:
lib_opts
.
append
(
compiler
.
library_dir_option
(
dir
))
lib_opts
.
append
(
compiler
.
library_dir_option
(
dir
))
for
dir
in
runtime_library_dirs
:
opt
=
compiler
.
runtime_library_dir_option
(
dir
)
if
type
(
opt
)
is
ListType
:
lib_opts
=
lib_opts
+
opt
opt
=
compiler
.
runtime_library_dir_option
(
dir
)
if
isinstance
(
opt
,
list
)
:
lib_opts
.
extend
(
opt
)
else
:
lib_opts
.
append
(
opt
)
lib_opts
.
append
(
opt
)
# XXX it's important that we *not* remove redundant library mentions!
# sometimes you really do have to say "-lfoo -lbar -lfoo" in order to
...
...
@@ -1246,17 +1246,15 @@ def gen_lib_options (compiler, library_dirs, runtime_library_dirs, libraries):
# pretty nasty way to arrange your C code.
for
lib
in
libraries
:
(
lib_dir
,
lib_name
)
=
os
.
path
.
split
(
lib
)
if
lib_dir
:
lib_file
=
compiler
.
find_library_file
([
lib_dir
],
lib_name
)
if
lib_file
:
lib_opts
.
append
(
lib_file
)
lib_dir
,
lib_name
=
os
.
path
.
split
(
lib
)
if
lib_dir
!=
''
:
lib_file
=
compiler
.
find_library_file
([
lib_dir
],
lib_name
)
if
lib_file
is
not
None
:
lib_opts
.
append
(
lib_file
)
else
:
compiler
.
warn
(
"no library file corresponding to "
compiler
.
warn
(
"no library file corresponding to "
"'
%
s' found (skipping)"
%
lib
)
else
:
lib_opts
.
append
(
compiler
.
library_option
(
lib
))
lib_opts
.
append
(
compiler
.
library_option
(
lib
))
return
lib_opts
# gen_lib_options ()
Lib/distutils/tests/test_ccompiler.py
0 → 100644
Dosyayı görüntüle @
c1df95e1
"""Tests for distutils.ccompiler."""
import
os
import
unittest
from
distutils.ccompiler
import
gen_lib_options
class
FakeCompiler
(
object
):
def
library_dir_option
(
self
,
dir
):
return
"-L"
+
dir
def
runtime_library_dir_option
(
self
,
dir
):
return
[
"-cool"
,
"-R"
+
dir
]
def
find_library_file
(
self
,
dirs
,
lib
,
debug
=
0
):
return
'found'
def
library_option
(
self
,
lib
):
return
"-l"
+
lib
class
CCompilerTestCase
(
unittest
.
TestCase
):
def
test_gen_lib_options
(
self
):
compiler
=
FakeCompiler
()
libdirs
=
[
'lib1'
,
'lib2'
]
runlibdirs
=
[
'runlib1'
]
libs
=
[
os
.
path
.
join
(
'dir'
,
'name'
),
'name2'
]
opts
=
gen_lib_options
(
compiler
,
libdirs
,
runlibdirs
,
libs
)
wanted
=
[
'-Llib1'
,
'-Llib2'
,
'-cool'
,
'-Rrunlib1'
,
'found'
,
'-lname2'
]
self
.
assertEquals
(
opts
,
wanted
)
def
test_suite
():
return
unittest
.
makeSuite
(
CCompilerTestCase
)
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
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