Home
last modified time | relevance | path

Searched refs:libraries (Results 1 – 25 of 1263) sorted by relevance

12345678910>>...51

/external/python/cpython2/PCbuild/
Dget_externals.bat3 rem Simple script to fetch source for external libraries
20 echo.Cleaning up external libraries.
52 echo.Fetching external libraries...
57 set libraries= variable
58 set libraries=%libraries% bzip2-1.0.6 variable
59 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% db-4.7.25.0 variable
60 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% nasm-2.11.06 variable
61 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2j variable
62 set libraries=%libraries% sqlite-3.8.11.0 variable
63 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tcl-8.5.15.0 variable
[all …]
/external/python/cpython2/Lib/distutils/command/
Dbuild_clib.py59 self.libraries = None
83 self.libraries = self.distribution.libraries
84 if self.libraries:
85 self.check_library_list(self.libraries)
96 if not self.libraries:
116 self.build_libraries(self.libraries)
119 def check_library_list(self, libraries): argument
129 if not isinstance(libraries, list):
133 for lib in libraries:
158 if not self.libraries:
[all …]
Dconfig.py58 self.libraries = None
75 if self.libraries is None:
76 self.libraries = []
77 elif isinstance(self.libraries, str):
78 self.libraries = [self.libraries]
106 if self.libraries:
107 self.compiler.set_libraries(self.libraries)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs, argument
146 libraries=libraries,
241 def try_link(self, body, headers=None, include_dirs=None, libraries=None, argument
[all …]
Dbuild_ext.py119 self.libraries = None
168 if self.libraries is None:
169 self.libraries = []
301 self.libraries.extend(build_clib.get_library_names() or [])
330 if self.libraries is not None:
331 self.compiler.set_libraries(self.libraries)
524 libraries=self.get_libraries(ext),
713 return ext.libraries + [pythonlib]
715 return ext.libraries
728 return ext.libraries + [pythonlib]
[all …]
/external/python/cpython2/Lib/distutils/
Dccompiler.py113 self.libraries = []
261 self.libraries.append (libname)
269 self.libraries = libnames[:]
426 def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs): argument
433 if libraries is None:
434 libraries = self.libraries
435 elif isinstance(libraries, (list, tuple)):
436 libraries = list (libraries) + (self.libraries or [])
459 return (libraries, library_dirs, runtime_library_dirs)
618 libraries=None, library_dirs=None, runtime_library_dirs=None, argument
[all …]
/external/python/cpython2/Misc/
DBeOS-setup.py186 libraries=math_libs) )
190 libraries=math_libs) )
195 libraries=math_libs) )
277 libraries=readline_libs) )
286 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
305 libraries = ['ssl', 'crypto'],
321 libraries = ['ndbm'] ) )
328 libraries = ['gdbm'] ) )
352 libraries = dblib ) )
356 libraries = dblib) )
[all …]
/external/curl/m4/
Dxc-lt-iface.m439 # Default behavior is to enable shared and static libraries on systems
48 # User may have disabled shared or static libraries.
62 AC_MSG_ERROR([can not disable shared and static libraries simultaneously])
67 # and build runs for shared and static is to enable shared libraries
91 # Default behavior is to build PIC objects for shared libraries and
92 # non-PIC objects for static libraries.
114 # is to build PIC objects even for static libraries. This behavior may
174 dnl Checks wether libtool shared and static libraries
185 # Verify if finally libtool shared libraries will be built
198 # Verify if finally libtool static libraries will be built
[all …]
/external/v8/
DAndroid.v8gen.mk42 GEN1 := $(generated_sources)/libraries.cc
48 V8_GENERATED_LIBRARIES := $(generated_sources)/libraries.cc
49 GEN2 := $(generated_sources)/experimental-libraries.cc
55 V8_GENERATED_LIBRARIES += $(generated_sources)/experimental-libraries.cc
56 GEN3 := $(generated_sources)/extra-libraries.cc
62 V8_GENERATED_LIBRARIES += $(generated_sources)/extra-libraries.cc
63 GEN4 := $(generated_sources)/experimental-extra-libraries.cc
69 V8_GENERATED_LIBRARIES += $(generated_sources)/experimental-extra-libraries.cc
/external/llvm/docs/
DProjects.rst12 projects that use LLVM header files, libraries, and tools. In order to use
59 Libraries can be object files, archives, or dynamic libraries. The **lib**
60 directory is just a convenient place for libraries as it places them all in
108 The LLVM build system provides a convenient way to build libraries and
173 This variable holds a space separated list of libraries that should be
174 linked into the program. These libraries must be libraries that come from
175 your **lib** directory. The libraries must be specified without their
179 Note that this works only for statically linked libraries.
183 This variable holds a space separated list of libraries that should be
184 linked into the program. These libraries must be LLVM libraries. The
[all …]
/external/python/cpython2/Lib/distutils/tests/
Dtest_build_clib.py53 cmd.libraries = [('name', {})]
56 cmd.libraries = [('name', {'sources': 1})]
59 cmd.libraries = [('name', {'sources': ['a', 'b']})]
62 cmd.libraries = [('name', {'sources': ('a', 'b')})]
65 cmd.libraries = [('name', {'sources': ('a', 'b')}),
102 cmd.distribution.libraries = 'WONTWORK'
112 cmd.libraries = [('foo', {'sources': [foo_c]})]
/external/openssh/contrib/
Dfindssl.sh136 libraries=`locate libcrypto.s`
138 libraries=`find / -name 'libcrypto.s*' -print 2>/dev/null`
141 for lib in $libraries
165 libraries=`locate libcrypto.a`
167 libraries=`find / -name libcrypto.a -print 2>/dev/null`
170 for lib in $libraries
/external/libcxxabi/src/
DCMakeLists.txt53 set(libraries ${LIBCXXABI_CXX_ABI_LIBRARIES}) variable
56 append_if(libraries LIBCXXABI_HAS_PTHREAD_LIB pthread)
59 append_if(libraries LIBCXXABI_HAS_C_LIB c)
65 list(APPEND libraries unwind_shared)
67 list(APPEND libraries unwind_static)
69 list(APPEND libraries unwind)
72 append_if(libraries LIBCXXABI_HAS_GCC_S_LIB gcc_s)
120 target_link_libraries(cxxabi_shared ${libraries})
134 target_link_libraries(cxxabi_static ${libraries})
143 # Add a meta-target for both libraries.
/external/python/cpython2/
Dsetup.py593 libraries=math_libs) )
598 libraries=math_libs) )
603 libraries=math_libs) )
605 libraries=math_libs) )
655 libraries=locale_libs,
667 exts.append( Extension('fcntl', ['fcntlmodule.c'], libraries=libs) )
791 libraries=readline_libs) )
801 exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
809 libraries=math_libs) )
833 libraries = ['ssl', 'crypto'],
[all …]
/external/eigen/cmake/
DFindBLASEXT.cmake11 # - Find BLAS EXTENDED for MORSE projects: find include dirs and libraries
13 # This module allows to find BLAS libraries by calling the official FindBLAS module
17 # or IBMESSLMT then the module attempts to find the corresponding multithreaded libraries.
22 # BLAS_LIBRARY_DIRS - Link directories for BLAS libraries
23 # BLAS_SEQ_LIBRARIES - BLAS component libraries to be linked (sequential)
24 # BLAS_PAR_LIBRARIES - BLAS component libraries to be linked (multithreaded)
102 "\n have also potentially detected some multithreaded BLAS libraries from the MKL."
103 "\n We try to find both libraries lists (Sequential/Multithreaded).")
110 "\n have also potentially detected some multithreaded BLAS libraries from the ACML."
111 "\n We try to find both libraries lists (Sequential/Multithreaded).")
[all …]
DFindLAPACK.cmake15 # LAPACK_LIBRARIES_DIR - Directories containing the LAPACK libraries.
16 # May be null if LAPACK_LIBRARIES contains libraries name using full path.
17 # LAPACK_LIBRARIES - List of libraries to link against LAPACK interface.
20 # applications or libraries using LAPACK.
23 # - find libraries for a C++ compiler, instead of Fortran
30 # This macro checks for the existence of the combination of fortran libraries
34 # flags given by _flags. If the combination of libraries is found and passes
43 # Check for the existence of the libraries given by _list
84 # Test this combination of libraries with the Fortran/f2c interface.
89 # Some C++ linkers require the f2c library to link with Fortran libraries.
[all …]
/external/icu/icu4c/source/samples/legacy/
DREADME15 2) explicitly add old libraries to the linker.
21 … 1.8.1. Put both data libraries to wherever ICU_DATA points (usually it is $(prefix)/share/icu/$(i…
22 …ibicuuc.so.18* and libicui18n.so.18* to $(prefix)/lib directory, together with current libraries).
28 Run make check. You should get two different libraries running at the same time.
40 …ample won't link: The path for 1.8.1. libraries is broken. Edit it so that it reflects the path t…
41 Linker says: "Undefined symbol u_getVersion()" (or something similar): path to 1.8.1. libraries is …
42 …ys: "Undefined symbol u_getVersion()_X_Y" (or something similar): path to current libraries is bad.
43 … If legacy crashes that's most probably because it cannot find the data libraries. You can see whi…
/external/guava/
DREADME.android1 URL: http://code.google.com/p/guava-libraries/source/checkout
11 Guava-libraries are a grab bag of utility libraries published by Google as
12 open source, including among other things the Google collections libraries.
/external/llvm/docs/CommandGuide/
Dllvm-config.rst17 print the compiler flags, linker flags and object libraries needed to link
85 Print the installation directory for LLVM libraries.
97 Print the flags needed to link against LLVM libraries.
103 Print all the libraries needed to link against the specified LLVM
110 Similar to **--libs**, but prints the bare filenames of the libraries
149 libraries. Useful "virtual" components include:
154 Includes all LLVM libraries. The default if no components are specified.
/external/libunwind_llvm/src/
DCMakeLists.txt53 set(libraries ${LIBUNWINDCXX_ABI_LIBRARIES}) variable
54 append_if(libraries LIBUNWIND_HAS_C_LIB c)
55 append_if(libraries LIBUNWIND_HAS_DL_LIB dl)
57 append_if(libraries LIBUNWIND_HAS_PTHREAD_LIB pthread)
111 target_link_libraries(unwind_shared ${libraries})
124 target_link_libraries(unwind_static ${libraries})
132 # Add a meta-target for both libraries.
/external/conscrypt/benchmark-jmh/
Dbuild.gradle53 libraries.junit
55 jmhGeneratorAnnprocess libraries.jmh_generator_annprocess
58 jmh libraries.jmh_core,
59 libraries.jmh_generator_reflection,
60 libraries.jmh_generator_bytecode
/external/libxml2/python/
DREADME5 libxml2 and libxslt (if available) libraries. For general
6 informationss on those XML and XSLT libraries check their
13 associated libraries can be found at:
16 Binaries packages of the libxml2 and libxslt libraries can
29 those two libraries.
/external/icu/icu4c/source/
Dicudefs.mk.in135 # LIBCFLAGS are the flags for static and shared libraries.
137 # LIBCXXFLAGS are the flags for static and shared libraries.
139 # DEFAULT_LIBS are the default libraries to link against
147 # AR_OUTOPT is for creating a specific output name for static libraries.
156 # What kind of libraries are we building and linking against?
204 ## How ICU libraries are named... ex. $(LIBICU)uc$(SO)
210 ## If we can't use the shared libraries, use the static libraries
227 # INSTALL-L installs libraries. Override in mh-* file to INSTALL_PROGRAM
233 # Location of the libraries before "make install" is used
290 # Invoke, set library path for all ICU libraries.
[all …]
/external/icu/icu4c/packaging/
DPACKAGES14 - ICU libraries. This package contains the runtime libraries needed by
22 libraries used by the linker, static libraries, etc... It also
45 When referring to libraries, .so will be used to denote the extension
80 + The ICU libraries package
82 The ICU libraries package is typically named `libicuXX' where XX is
83 the major number of ICU's libraries. This number is ICU's version
92 - All the shared libraries, and their major number symbolic link, but
100 libraries package and commands to create and manipulate that data.
131 latest version of the libraries.
139 This package depends on the ICU libraries package with the exact same
[all …]
/external/vulkan-validation-layers/demos/smoke/
DCMakeLists.txt51 set(libraries PRIVATE ${CMAKE_THREAD_LIBS_INIT}) variable
63 list(APPEND libraries PRIVATE -ldl -lrt)
71 list(APPEND libraries PRIVATE ${XCB_LIBRARIES})
78 list(APPEND libraries PRIVATE ${WAYLAND_CLIENT_LIBRARIES})
87 target_link_libraries(smoketest ${libraries})
/external/libnl/python/
Dsetup.py.in14 libraries = ['nl-3'],
22 libraries = ['nl-3', 'nl-route-3'],
30 libraries = ['nl-3', 'nl-genl-3'],

12345678910>>...51