/third_party/python/Lib/distutils/command/ |
H A D | build_clib.py | 30 description = "build C/C++ libraries used by Python extensions" 34 "directory to build C/C++ libraries to"), 56 # List of libraries to build 57 self.libraries = None 59 # Compilation options for all libraries 71 # I think that C libraries are really just temporary build 81 self.libraries = self.distribution.libraries 82 if self.libraries: 83 self.check_library_list(self.libraries) [all...] |
H A D | config.py | 36 ('libraries=', 'l', 37 "external C libraries to link with"), 39 "directories to search for external C libraries"), 55 self.libraries = None 72 if self.libraries is None: 73 self.libraries = [] 74 elif isinstance(self.libraries, str): 75 self.libraries = [self.libraries] 102 if self.libraries [all...] |
H A D | build_ext.py | 73 ('libraries=', 'l', 74 "external C libraries to link with"), 76 "directories to search for external C libraries" + sep_by), 78 "directories to search for shared C libraries at runtime"), 117 self.libraries = None 169 self.ensure_string_list('libraries') 174 if self.libraries is None: 175 self.libraries = [] 296 # If we were asked to build any C/C++ libraries, make sure that the 301 self.libraries [all...] |
/third_party/python/PCbuild/ |
H A D | get_externals.bat | 3 rem Simple script to fetch source for external libraries
35 echo.Cleaning up external libraries.
51 echo.Fetching external libraries...
53 set libraries=
variable 54 set libraries=%libraries% bzip2-1.0.8
variable 55 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4
variable 56 if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries variable 57 set libraries=%libraries% sqlite-3.42.0.0 global() variable 58 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.1 global() variable 59 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.1 global() variable 60 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6 global() variable 61 set libraries=%libraries% xz-5.2.5 global() variable 62 set libraries=%libraries% zlib-1.2.13 global() variable [all...] |
/third_party/python/Lib/distutils/ |
H A D | ccompiler.py | 23 link steps -- include directories, macros to define, libraries to link 103 # 'libraries': a list of libraries to include in any link 105 self.libraries = [] 107 # 'library_dirs': a list of directories to search for libraries 111 # shared libraries/objects at runtime 127 linker_so linker used to create shared objects and libraries 236 """Add 'libname' to the list of libraries that will be included in 243 The linker will be instructed to link against libraries in the 246 names; the linker will be instructed to link against libraries a [all...] |
H A D | cygwinccompiler.py | 37 # it tries to link against dlls instead their import libraries. (If 39 # By specifying -static we force ld to link against the import libraries, 145 # cygwin and mingw32 need different sets of libraries 173 libraries=None, library_dirs=None, runtime_library_dirs=None, 179 libraries = copy.copy(libraries or []) 182 # Additional libraries 183 libraries.extend(self.dll_libraries) 215 # next add options for def-file and to creating import libraries 242 output_dir, libraries, library_dir [all...] |
H A D | extension.py | 46 list of directories to search for C/C++ libraries at link time 47 libraries : [string] 50 list of directories to search for C/C++ libraries at run time 92 libraries=None, 116 self.libraries = libraries or [] 213 ext.libraries.append(value)
|
H A D | bcppcompiler.py | 176 libraries=None, 190 (libraries, library_dirs, runtime_library_dirs) = \ 191 self._fix_lib_args (libraries, library_dirs, runtime_library_dirs) 264 # no map file and start libraries 267 for lib in libraries: 278 # some default libraries 317 # seems to have a different format for static libraries.
|
H A D | unixccompiler.py | 8 * libraries specified with -lllib 149 output_filename, output_dir=None, libraries=None, 154 fixed_args = self._fix_lib_args(libraries, library_dirs, 156 libraries, library_dirs, runtime_library_dirs = fixed_args 159 libraries) 278 # libraries with .tbd extensions rather than the normal .dylib 279 # shared libraries installed in /. The Apple compiler tool 282 # for specific libraries. Callers of find_library_file need to
|
H A D | _msvccompiler.py | 439 libraries=None, 452 fixed_args = self._fix_lib_args(libraries, library_dirs, 454 libraries, library_dirs, runtime_library_dirs = fixed_args 462 libraries)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_build_clib.py | 32 # 'libraries' option must be a list 35 # each element of 'libraries' must a 2-tuple 39 # first element of each tuple in 'libraries' 62 # "in 'libraries' option 'sources' must be present and must be 64 cmd.libraries = [('name', {})] 67 cmd.libraries = [('name', {'sources': 1})] 70 cmd.libraries = [('name', {'sources': ['a', 'b']})] 73 cmd.libraries = [('name', {'sources': ('a', 'b')})] 76 cmd.libraries = [('name', {'sources': ('a', 'b')}), 113 cmd.distribution.libraries [all...] |
H A D | test_config_cmd.py | 72 cmd.libraries = 'one' 77 self.assertEqual(cmd.libraries, ['one'])
|
/third_party/skia/build/fuchsia/ |
H A D | fidl_gen_cpp | 19 def GetFIDLFilesRecursive(libraries, sdk_base, path): 26 GetFIDLFilesRecursive(libraries, sdk_base, dep_meta_json) 27 libraries[parsed['name']] = result + parsed['sources'] 30 libraries = collections.OrderedDict() 31 GetFIDLFilesRecursive(libraries, sdk_base, root) 32 return libraries
|
/third_party/python/Tools/msi/ |
H A D | get_externals.bat | 3 rem Simple script to fetch source for external libraries
24 echo.Cleaning up external libraries.
37 echo.Fetching external libraries...
39 set libraries=
variable 41 for %%e in (%libraries%) do (
78 echo.modules that rely on external libraries.
|
/third_party/vk-gl-cts/scripts/android/ |
H A D | build_apk.py | 492 def __init__ (self, package, libraries = []): 494 self.libraries = libraries 507 for lib in self.libraries: 520 classPaths = [objPath] + [resolvePath(config, lib.getClassesJarPath()) for lib in self.libraries] 555 def __init__ (self, package, libraries): 557 self.libraries = libraries 560 return [self.package.getClassesJarPath()] + [lib.getClassesJarPath() for lib in self.libraries] 570 for lib in self.libraries [all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | export_targets.py | 312 libraries = set() 319 libraries.add(target_name) 323 return libraries 327 libraries = gather_libraries(ROOTS, descs) variable 328 print(f'\n{len(libraries)} libraries:', file=sys.stderr) 329 for k in libraries: 337 out = {k: flattened_target(k, descs) for k in libraries}
|
/third_party/gn/src/gn/ |
H A D | rust_variables.cc | 68 libraries, as well as the appropriate output extension in the 77 Static libraries, rust libraries, and executables have this field set 90 This file is usually the `main.rs` or `lib.rs` for binaries and libraries,
|
H A D | function_toolchain.cc | 295 "alink": Linker for static libraries (archives) 296 "solink": Linker for shared libraries 310 "rust_cdylib": Tool for compiling C-compatible dynamic libraries. 311 "rust_dylib": Tool for compiling Rust dynamic libraries. 313 "rust_rlib": Tool for compiling Rust libraries. 314 "rust_staticlib": Tool for compiling Rust static libraries. 393 The default is empty for executables, shared, and static libraries and 403 These strings will be prepended to the libraries and library search 504 dependencies for shared libraries" below for more. 524 This is typically used to prepend "lib" to libraries o [all...] |
/third_party/selinux/libselinux/src/ |
H A D | setup.py | 16 libraries=['selinux']), variable 21 libraries=['selinux'], variable
|
/third_party/protobuf/python/ |
H A D | setup.py | 169 # extension. Note that those libraries have to be compiled with 172 libraries = ['protobuf'] 175 libraries = None 230 libraries=libraries,
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFunctionLibrary.cpp | 79 CompositeFunctionLibrary::CompositeFunctionLibrary (const FunctionLibrary* libraries, int numLibraries) in CompositeFunctionLibrary() argument 80 : m_libraries (libraries) in CompositeFunctionLibrary()
|
/third_party/icu/icu4c/source/test/depstest/ |
H A D | dependencies.py | 22 Each item can have an optional set of "deps" (libraries & groups). 26 libraries: Set of library names mentioned in the dependencies file. 40 libraries = set() variable 144 global items, libraries, _line_number, _groups_to_be_defined 158 libraries.add(name)
|
/third_party/python/ |
H A D | setup.py | 104 libraries, as well as to various windowing systems (X11, Motif, Tk, 162 headers or libraries. 247 # system, but with only header files and libraries. 376 ext.libraries.append(value) 465 # Remove the shared libraries built by a previous build. 763 # Parse paths in libraries line. The line is like: 764 # On Linux, "libraries: = path1:path2:path3" 765 # On Windows, "libraries: = path1;path2;path3" 767 if not line.startswith("libraries"): 882 # libraries [all...] |
/third_party/rust/crates/clang-sys/build/ |
H A D | static.rs | 15 /// Clang static libraries required to link to `libclang` 3.5 and later. 44 /// Gets the LLVM static libraries required to link to `libclang`. 51 // libraries may be in one of two forms, a full path to the library in get_llvm_libraries() 62 /// Gets the Clang static libraries required to link to `libclang`. 70 if let Ok(libraries) = glob::glob(&pattern) { in get_clang_libraries() 71 libraries in get_clang_libraries() 79 /// Finds a directory containing LLVM and Clang static libraries and returns the 92 panic!("could not find any static libraries"); in find() 100 /// Finds and links to `libclang` static libraries. 106 // Specify required Clang static libraries in link() [all...] |
/third_party/lz4/lib/ |
H A D | Makefile | 184 @echo Installing libraries in $(DESTDIR)$(libdir) 206 @echo lz4 libraries installed 223 @echo lz4 libraries successfully uninstalled
|