Home
last modified time | relevance | path

Searched full:libraries (Results 1 – 25 of 2962) sorted by relevance

12345678910>>...119

/external/v8/build/android/gyp/
Dwrite_ordered_libraries.py7 """Writes dependency ordered list of native libraries.
9 The list excludes any Android system libraries, as those are not bundled with
12 This list of libraries is used for several steps of building an APK.
13 In the component build, the --input-libraries only needs to be the top-level
15 inspect the shared libraries and determine the full list of (non-system)
16 libraries that should be included in the APK.
57 # If the library doesn't exist in the libraries directory, assume that it is
80 def GetSortedTransitiveDependencies(libraries): argument
83 libraries, GetNonSystemDependencies)
88 libraries = [os.path.basename(lib) for lib in binaries]
[all …]
Dpack_relocations.py11 library files. This step is inserted after the libraries are stripped.
57 help='Names of any libraries explicitly not packed')
60 parser.add_option('--stripped-libraries-dir',
61 help='Directory for stripped libraries')
62 parser.add_option('--packed-libraries-dir',
63 help='Directory for packed libraries')
64 parser.add_option('--libraries', action='append',
65 help='List of libraries')
76 libraries = []
77 for libs_arg in options.libraries:
[all …]
Dpush_libraries.py7 """Pushes native libraries to a device.
27 libraries = build_utils.ParseGypList(options.libraries)
37 for lib in libraries:
58 parser.add_option('--libraries-dir',
59 help='Directory that contains stripped libraries.')
61 help='Device directory to push the libraries to.')
62 parser.add_option('--libraries',
63 help='List of native libraries.')
71 required_options = ['libraries', 'device_dir', 'libraries']
Dstrip_library_for_device.py32 parser.add_option('--libraries-dir',
33 help='Directory for un-stripped libraries')
34 parser.add_option('--stripped-libraries-dir',
35 help='Directory for stripped libraries')
36 parser.add_option('--libraries',
37 help='List of libraries to strip')
42 libraries = build_utils.ParseGypList(options.libraries)
46 for library in libraries:
Dcreate_device_library_links.py7 """Creates symlinks to native libraries for an APK.
9 The native libraries should have previously been pushed to the device (in
11 those native libraries.
39 libraries = build_utils.ParseGypList(options.libraries)
49 for lib in libraries:
92 parser.add_option('--libraries',
93 help='List of native libraries.')
95 help='Device directory that contains the target libraries for symlinks.')
105 required_options = ['apk', 'libraries', 'script_host_path',
Dinsert_chromium_version.py41 parser.add_option('--stripped-libraries-dir',
42 help='Directory of native libraries')
43 parser.add_option('--libraries',
44 help='List of libraries')
50 libraries = build_utils.ParseGypList(options.libraries)
52 for library in libraries:
/external/eigen/cmake/
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
35 # the link test, LIBRARIES is set to the list of complete library paths that
37 # Otherwise, LIBRARIES is set to FALSE.
40 macro(check_lapack_libraries DEFINITIONS LIBRARIES _prefix _name _flags _list _blas _path)
[all …]
DFindBLAS.cmake5 # The list of libraries searched for is mainly taken
16 # BLAS_LIBRARIES_DIR - Directories containing the BLAS libraries.
17 # May be null if BLAS_LIBRARIES contains libraries name using full path.
18 # BLAS_LIBRARIES - List of libraries to link against BLAS interface.
21 # applications or libraries using BLAS.
24 # - find libraries for a C++ compiler, instead of Fortran
31 # This macro checks for the existence of the combination of fortran libraries
35 # flags given by _flags. If the combination of libraries is found and passes
36 # the link test, LIBRARIES is set to the list of complete library paths that
38 # Otherwise, LIBRARIES is set to FALSE.
[all …]
/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
142 Variables for Building Libraries
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
[all …]
DMakefileGuide.rst140 Libraries
148 libraries are the default. For example:
158 the libraries produced will be the same, they are just constructed differently.
184 a loadable module named ``MyMod`` that uses the LLVM libraries ``LLVMSupport.a``
209 and the names of the libraries you wish to link with the tool. For example:
218 libraries: ``mylib``, ``LLVMSupport.a`` and ``LLVMSystem.a``.
220 Note that two different variables are used to indicate which libraries are
222 projects. ``LLVMLIBS`` refers to the LLVM libraries found in the LLVM object
223 directory. ``USEDLIBS`` refers to the libraries built by your project. In the
253 Of course, any additional libraries may be listed as other components. To get a
[all …]
/external/v8/build/android/
Dpack_relocations.gypi6 # packs relocations in Release builds of native libraries.
14 # 'exclude_packing_list': 'names of libraries explicitly not packed',
18 # 'stripped_libraries_dir': 'directory holding stripped libraries',
19 # 'packed_libraries_dir': 'directory holding packed libraries',
53 '--stripped-libraries-dir=<(stripped_libraries_dir)',
54 '--packed-libraries-dir=<(packed_libraries_dir)',
55 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
59 'message': 'Copying libraries (no relocation packing) for <(_target_name)',
64 '--stripped-libraries-dir=<(stripped_libraries_dir)',
65 '--packed-libraries-dir=<(packed_libraries_dir)',
[all …]
Dstrip_native_libraries.gypi6 # native libraries.
16 # 'stripped_libraries_dir': 'directory to store stripped libraries',
24 'message': 'Stripping libraries for <(_target_name)',
41 # changing base.so may not trigger changes to dependent libraries.
49 '--stripped-libraries-dir=<(stripped_libraries_dir)',
50 '--libraries-dir=<(SHARED_LIB_DIR),<(PRODUCT_DIR)',
51 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
Dpush_libraries.gypi6 # pushes stripped shared libraries to the attached Android device. This should
15 # 'libraries_source_dir': 'location where stripped libraries are stored'
16 # 'device_library_dir': 'location on the device where to put pushed libraries',
27 'message': 'Pushing libraries to device for <(_target_name)',
43 '--libraries-dir=<(libraries_source_dir)',
45 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
Dinsert_chromium_version.gypi6 # inserts a chromium version string into native libraries.
14 # 'stripped_libraries_dir': 'the directory contains native libraries'
24 'message': 'Inserting chromium version string into native libraries',
40 '--stripped-libraries-dir=<(stripped_libraries_dir)',
41 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
49 # changing base.so may not trigger changes to dependent libraries.
/external/v8/
DAndroid.libv8.mk44 # Generate libraries.cc
45 GEN1 := $(generated_sources)/libraries.cc
48 @echo "Generating libraries.cc"
51 V8_GENERATED_LIBRARIES := $(generated_sources)/libraries.cc
53 # Generate experimental-libraries.cc
54 GEN2 := $(generated_sources)/experimental-libraries.cc
57 @echo "Generating experimental-libraries.cc"
60 V8_GENERATED_LIBRARIES += $(generated_sources)/experimental-libraries.cc
62 # Generate extra-libraries.cc
63 GEN3 := $(generated_sources)/extra-libraries.cc
[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/ImageMagick/
DInstall-unix.txt21 (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick
41 Shared libraries --enable-shared=yes yes
42 Static libraries --enable-static=yes yes
107 You can influence choice of compiler, compilation flags, or libraries of the
127 Library paths (.e.g. -L/usr/local) to look for libraries systems that
129 argument in order to find shared libraries at run time. For example,
136 Extra libraries (.e.g. -l/usr/local/lib) required to link.
146 but if it doesn't, you can use the --x-includes=path and --x-libraries=path
160 libraries are found by compiler) it will be included in the build. The
169 build the shared libraries and support for loading coder and process
[all …]
/external/openssh/contrib/
Dfindssl.sh6 # Search for all instances of OpenSSL headers and libraries
22 # or libraries. You can use the following # procedure to help identify
26 # headers and libraries that were picked up, for example:
33 # Now run findssl.sh. This should identify the headers and libraries
35 # libraries and headers used and adjust your CFLAGS or remove incorrect
130 # Search for shared libraries.
131 # Relies on shared libraries looking like "libcrypto.s*"
136 libraries=`locate libcrypto.s`
138 libraries=`find / -name 'libcrypto.s*' -print 2>/dev/null`
141 for lib in $libraries
[all …]
/external/v8/build/linux/
Dsystem.gyp16 # Used below for the various libraries. In this scope for sharing with GN.
102 'libraries': [
123 'libraries': [
150 'libraries': [
164 'libraries': [
185 'libraries': [
212 'libraries': [
226 'libraries': [
245 'libraries': [
262 'libraries': [
[all …]
/external/icu/icu4c/packaging/
DPACKAGES12 - ICU libraries. This package contains the runtime libraries needed by
20 libraries used by the linker, static libraries, etc... It also
43 When referring to libraries, .so will be used to denote the extension
78 + The ICU libraries package
80 The ICU libraries package is typically named `libicuXX' where XX is
81 the major number of ICU's libraries. This number is ICU's version
90 - All the shared libraries, and their major number symbolic link, but
98 libraries package and commands to create and manipulate that data.
129 latest version of the libraries.
137 This package depends on the ICU libraries package with the exact same
[all …]
/external/llvm/lib/Target/
DLLVMBuild.txt39 ; This is a special group whose required libraries are extended (by llvm-build)
45 parent = Libraries
47 ; This is a special group whose required libraries are extended (by llvm-build)
52 parent = Libraries
54 ; This is a special group whose required libraries are extended (by llvm-build)
59 parent = Libraries
65 parent = Libraries
68 ; This is a special group whose required libraries are extended (by llvm-build)
74 parent = Libraries
/external/icu/icu4c/source/samples/legacy/
DREADME12 2) explicitly add old libraries to the linker.
18 … 1.8.1. Put both data libraries to wherever ICU_DATA points (usually it is $(prefix)/share/icu/$(i…
19 …ibicuuc.so.18* and libicui18n.so.18* to $(prefix)/lib directory, together with current libraries).
25 Run make check. You should get two different libraries running at the same time.
37 …ample won't link: The path for 1.8.1. libraries is broken. Edit it so that it reflects the path t…
38 Linker says: "Undefined symbol u_getVersion()" (or something similar): path to 1.8.1. libraries is …
39 …ys: "Undefined symbol u_getVersion()_X_Y" (or something similar): path to current libraries is bad.
40 … If legacy crashes that's most probably because it cannot find the data libraries. You can see whi…
/external/clang/docs/
DCrossCompilation.rst28 headers, libraries, etc. So, it's usually simple to download a package
42 the headers, libraries or binutils to generate target specific code.
46 Another problem is that compilers come with standard libraries only (like
50 have your host's libraries installed.
54 effectively changes the logical root for headers and libraries), assume
55 all your binaries and libraries are in the same directory, which may not
64 * have different sets of libraries and headers by default
133 but they're particularly important for additional libraries
144 additional headers or libraries are needed), as Clang will find
153 linker), but not always where the target headers and libraries
[all …]
/external/libcxxabi/src/
DCMakeLists.txt44 set(libraries ${LIBCXXABI_CXX_ABI_LIBRARIES}) variable
45 append_if(libraries LIBCXXABI_HAS_C_LIB c)
47 append_if(libraries LIBCXXABI_HAS_PTHREAD_LIB pthread)
51 list(APPEND libraries unwind)
53 append_if(libraries LIBCXXABI_HAS_GCC_EH_LIB gcc_eh)
95 target_link_libraries(cxxabi_shared ${libraries})
109 target_link_libraries(cxxabi_static ${libraries})
118 # Add a meta-target for both libraries.
/external/mesa3d/docs/
Dautoconf.html52 This will produce libGL.so and several other libraries depending on the
67 only used to derive the directory for the libraries. The default is
71 where the GL libraries will be installed. The default is
74 <code>--libdir=/usr/local/lib64</code> is used, the libraries will be
79 will build shared libraries. Either of these options will force static
80 libraries to be built. It is not currently possible to build static and
81 shared libraries in a single pass.
90 to direct the linker to use libraries in nonstandard directories. For
94 <code>pkg-config</code> utility is used to search for external libraries
106 <li><code>--with-x</code> - When the X11 development libraries are
[all …]

12345678910>>...119