Home
last modified time | relevance | path

Searched refs:lib_type (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dunixccompiler.py250 shared_f = self.library_filename(lib, lib_type='shared')
251 dylib_f = self.library_filename(lib, lib_type='dylib')
252 xcode_stub_f = self.library_filename(lib, lib_type='xcode_stub')
253 static_f = self.library_filename(lib, lib_type='static')
Dccompiler.py675 self.library_filename(output_libname, lib_type='shared'),
842 def library_filename(self, libname, lib_type='static', # or 'shared' argument
845 if lib_type not in ("static", "shared", "dylib", "xcode_stub"):
848 fmt = getattr(self, lib_type + "_lib_format")
849 ext = getattr(self, lib_type + "_lib_extension")
/external/python/cpython2/Misc/
DBeOS-setup.py44 filename = compiler.library_filename(libname, lib_type='shared')
48 filename = compiler.library_filename(libname, lib_type='static')
/external/llvm/cmake/modules/
DAddLLVM.cmake699 get_target_property(lib_type ${lib} TYPE)
700 if("${lib_type}" STREQUAL "STATIC_LIBRARY")
/external/python/cpython2/Doc/distutils/
Dapiref.rst711 .. method:: CCompiler.library_filename(libname[, lib_type='static', strip_dir=0, output_dir=''])
714 a library with *lib_type* of ``'static'`` will typically be of the form
715 :file:`liblibname.a`, while a *lib_type* of ``'dynamic'`` will be of the form