Searched refs:find_library_file (Results 1 – 10 of 10) sorted by relevance
/third_party/python/ |
D | setup.py | 292 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/ |
D | bcppcompiler.py | 270 libfile = self.find_library_file(library_dirs, lib, debug) 308 def find_library_file (self, dirs, lib, debug=0): member in BCPPCompiler
|
D | ccompiler.py | 804 def find_library_file (self, dirs, lib, debug=0): member in CCompiler 1108 lib_file = compiler.find_library_file([lib_dir], lib_name)
|
D | unixccompiler.py | 266 def find_library_file(self, dirs, lib, debug=0): member in UnixCCompiler
|
D | _msvccompiler.py | 525 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
D | msvccompiler.py | 547 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
D | msvc9compiler.py | 750 def find_library_file(self, dirs, lib, debug=0): member in MSVCCompiler
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 11370 - 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/ |
D | 3.10.0a3.rst | 1155 Ensure distutils.unixxcompiler.find_library_file can find system provided
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 520 .. method:: CCompiler.find_library_file(dirs, lib[, debug=0])
|