Home
last modified time | relevance | path

Searched refs:find_library_file (Results 1 – 10 of 10) sorted by relevance

/third_party/python/
Dsetup.py292 def find_library_file(compiler, libname, std_dirs, paths): function
293 result = compiler.find_library_file(std_dirs + paths, libname)
1077 do_readline = self.compiler.find_library_file(self.lib_dirs,
1107 elif self.compiler.find_library_file(self.lib_dirs, 'ncursesw'):
1111 elif AIX and self.compiler.find_library_file(self.lib_dirs, 'curses'):
1113 elif self.compiler.find_library_file(self.lib_dirs, 'ncurses'):
1115 elif self.compiler.find_library_file(self.lib_dirs, 'curses'):
1147 elif self.compiler.find_library_file(self.lib_dirs +
1194 if (self.compiler.find_library_file(self.lib_dirs, 'terminfo')):
1196 elif (self.compiler.find_library_file(self.lib_dirs, 'termcap')):
[all …]
/third_party/python/Lib/distutils/
Dbcppcompiler.py270 libfile = self.find_library_file(library_dirs, lib, debug)
308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
Dccompiler.py804 def find_library_file (self, dirs, lib, debug=0): member in CCompiler
1108 lib_file = compiler.find_library_file([lib_dir], lib_name)
Dunixccompiler.py266 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
D_msvccompiler.py525 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
Dmsvccompiler.py547 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
Dmsvc9compiler.py750 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch11370 - if self.compiler.find_library_file(self.lib_dirs, 'crypt'):
11375 + if self.compiler.find_library_file(self.lib_dirs, 'crypt'):
11477 - tklib = self.compiler.find_library_file(self.lib_dirs,
11479 - tcllib = self.compiler.find_library_file(self.lib_dirs,
11487 + tklib = self.compiler.find_library_file(self.lib_dirs,
11489 + tcllib = self.compiler.find_library_file(self.lib_dirs,
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst1155 Ensure distutils.unixxcompiler.find_library_file can find system provided
/third_party/python/Doc/distutils/
Dapiref.rst520 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])