/third_party/python/Lib/distutils/command/ |
D | build_clib.py | 57 self.libraries = None 81 self.libraries = self.distribution.libraries 82 if self.libraries: 83 self.check_library_list(self.libraries) 95 if not self.libraries: 115 self.build_libraries(self.libraries) 118 def check_library_list(self, libraries): argument 128 if not isinstance(libraries, list): 132 for lib in libraries: 157 if not self.libraries: [all …]
|
D | config.py | 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: 103 self.compiler.set_libraries(self.libraries) 135 def _link(self, body, headers, include_dirs, libraries, library_dirs, argument 140 libraries=libraries, 234 def try_link(self, body, headers=None, include_dirs=None, libraries=None, argument [all …]
|
/third_party/python/PCbuild/ |
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.6 variable 55 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.3.0 variable 56 if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.1m variable 57 set libraries=%libraries% sqlite-3.35.5.0 variable 58 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.0 variable 59 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.0 variable [all …]
|
/third_party/boost/libs/dll/example/tutorial7/ |
D | tutorial7.cpp | 16 void load_and_execute(const boost::dll::fs::path libraries[], std::size_t libs_count) { in load_and_execute() argument 21 boost::dll::library_info inf(libraries[i]); in load_and_execute() 27 boost::dll::shared_library lib(libraries[i]); in load_and_execute() 39 std::vector<boost::dll::fs::path> libraries; in main() local 40 libraries.reserve(argc - 1); in main() 43 libraries.push_back(argv[i]); in main() 47 load_and_execute(&libraries[0], libraries.size()); in main()
|
/third_party/boost/tools/build/src/tools/ |
D | unix.jam | 8 # libraries must be specified in a fixed order on the linker command line. Generators 51 local libraries ; 56 libraries += $(l) ; 64 sources = $(sources2) [ unix.order-libraries $(libraries) ] ; 196 local used-libraries ; 202 used-libraries += $(l) ; 206 local created-libraries ; 211 created-libraries += $(l) ; 215 created-libraries = [ set.difference $(created-libraries) : $(used-libraries) ] ; 216 set-library-order-aux $(created-libraries) : $(used-libraries) ; [all …]
|
/third_party/python/Lib/distutils/ |
D | ccompiler.py | 105 self.libraries = [] 249 self.libraries.append(libname) 257 self.libraries = libnames[:] 427 def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs): argument 434 if libraries is None: 435 libraries = self.libraries 436 elif isinstance(libraries, (list, tuple)): 437 libraries = list (libraries) + (self.libraries or []) 459 return (libraries, library_dirs, runtime_library_dirs) 622 libraries=None, argument [all …]
|
/third_party/curl/m4/ |
D | xc-lt-iface.m4 | 39 # 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 whether 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 …]
|
/third_party/node/deps/cares/m4/ |
D | xc-lt-iface.m4 | 39 # 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 …]
|
/third_party/boost/tools/check_build/test/ |
D | Jamfile | 29 local all-libraries = [ MATCH .*libs/(.*)/build/.* : 33 all-libraries = [ sequence.unique $(all-libraries) ] ; 38 all-libraries = [ set.difference $(all-libraries) : function_types ] ; 40 #ECHO all-libraries: $(all-libraries) ; 75 for local lib in $(all-libraries) 81 for local lib in $(all-libraries)
|
/third_party/boost/ |
D | Jamroot | 48 # the libraries. Note, that which variants get built 53 # multithreaded libraries in debug and release 55 # static and shared multithreaded libraries in 63 # --show-libraries Display the list of Boost libraries that require 94 # --buildid=ID Add the specified ID to the name of built libraries. 97 # --python-buildid=ID Add the specified ID to the name of built libraries 104 # option is used, only libraries specified using this 108 # <library>. By default, all libraries are built. 116 # link=static|shared Whether to build static or shared libraries 212 # Using static runtime with shared libraries is impossible on Linux, and [all …]
|
/third_party/flatbuffers/android/app/src/main/cpp/ |
D | CMakeLists.txt | 10 # You can define multiple libraries, and CMake builds them for you. 11 # Gradle automatically packages shared libraries with your APK. 32 # variable. Because CMake includes system libraries in the search path by 44 # Specifies libraries CMake should link to your target library. You 45 # can link multiple libraries, such as libraries you define in this 46 # build script, prebuilt third-party libraries, or system libraries.
|
/third_party/gettext/gettext-tools/examples/hello-c++-gnome/ |
D | INSTALL | 2 - the GNOME libraries (libgnomeui, libgnome, libgnomesupport, libart_lgpl) 5 - the GTK libraries (libgtk, libgdk) 6 - the glib libraries (libglib, libgmodule) 7 - the X11 libraries 10 - the C++ runtime libraries (libstdc++)
|
/third_party/gettext/gettext-tools/examples/hello-objc-gnome/ |
D | INSTALL | 2 - the GNOME libraries (libgnomeui, libgnome, libgnomesupport, libart_lgpl) 5 - the GTK libraries (libgtk, libgdk) 6 - the glib libraries (libglib, libgmodule) 7 - the X11 libraries 10 - the Objective C runtime libraries (libobjc)
|
/third_party/skia/third_party/externals/oboe/samples/iolib/src/main/cpp/ |
D | CMakeLists.txt | 38 # You can define multiple libraries, and CMake builds them for you. 39 # Gradle automatically packages shared libraries with your APK. 53 # Specifies libraries CMake should link to your target library. You 54 # can link multiple libraries, such as libraries you define in this 55 # build script, prebuilt third-party libraries, or system libraries.
|
/third_party/skia/build/fuchsia/ |
D | fidl_gen_cpp | 19 def GetFIDLFilesRecursive(libraries, sdk_base, path): argument 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/skia/third_party/externals/oboe/samples/parselib/src/main/cpp/ |
D | CMakeLists.txt | 34 # You can define multiple libraries, and CMake builds them for you. 35 # Gradle automatically packages shared libraries with your APK. 55 # Specifies libraries CMake should link to your target library. You 56 # can link multiple libraries, such as libraries you define in this 57 # build script, prebuilt third-party libraries, or system libraries.
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/ |
D | CMakeLists.txt | 17 # You can define multiple libraries, and CMake builds them for you. 18 # Gradle automatically packages shared libraries with your APK. 39 # variable. Because CMake includes system libraries in the search path by 69 # Specifies libraries CMake should link to your target library. You 70 # can link multiple libraries, such as libraries you define in this 71 # build script, prebuilt third-party libraries, or system libraries.
|
/third_party/python/Lib/distutils/tests/ |
D | test_build_clib.py | 62 cmd.libraries = [('name', {})] 65 cmd.libraries = [('name', {'sources': 1})] 68 cmd.libraries = [('name', {'sources': ['a', 'b']})] 71 cmd.libraries = [('name', {'sources': ('a', 'b')})] 74 cmd.libraries = [('name', {'sources': ('a', 'b')}), 111 cmd.distribution.libraries = 'WONTWORK' 121 cmd.libraries = [('foo', {'sources': [foo_c]})]
|
/third_party/gstreamer/gstplugins_bad/ |
D | REQUIREMENTS | 1 GStreamer uses a *large* array of tools and libraries, most of which are 3 optional libraries doesn't get built unless you have those libraries. If 20 Required libraries: 23 The core GStreamer libraries. See the gstreamer/ module in GStreamer cvs, or 26 Optional libraries: 29 This file lists supporting libraries for which gst-plugins contains plugins,
|
/third_party/gettext/gettext-tools/examples/hello-c-gnome/ |
D | INSTALL | 2 - the GNOME libraries (libgnomeui, libgnome, libgnomesupport, libart_lgpl) 5 - the GTK libraries (libgtk, libgdk) 6 - the glib libraries (libglib, libgmodule) 7 - the X11 libraries
|
/third_party/boost/libs/stacktrace/build/ |
D | Jamfile.v2 | 54 local libraries ; 67 libraries += boost_stacktrace_noop ; 83 libraries += boost_stacktrace_backtrace ; 98 libraries += boost_stacktrace_addr2line ; 113 libraries += boost_stacktrace_basic ; 128 libraries += boost_stacktrace_windbg ; 143 libraries += boost_stacktrace_windbg_cached ; 145 boost-install $(libraries) ;
|
/third_party/expat/win32/ |
D | README.txt | 21 * Creating MinGW dynamic libraries from MS VC++ DLLs: 29 The *.a files are mingw libraries. 31 * Special note about MS VC++ and runtime libraries: 36 one can build three different Expat libraries depending 43 The libraries are named 53 The libraries should be named like this: 59 An application linking to the static libraries must
|
/third_party/skia/third_party/externals/expat/expat/win32/ |
D | README.txt | 21 * Creating MinGW dynamic libraries from MS VC++ DLLs: 29 The *.a files are mingw libraries. 31 * Special note about MS VC++ and runtime libraries: 36 one can build three different Expat libraries depending 43 The libraries are named 53 The libraries should be named like this: 59 An application linking to the static libraries must
|
/third_party/ffmpeg/ |
D | LICENSE.md | 79 ## External libraries 81 FFmpeg can be combined with a number of external libraries, which sometimes 84 ### Compatible libraries argument 86 The following libraries are under GPL version 2: 102 The following libraries are under LGPL version 3: 110 The VMAF, mbedTLS, RK MPI, OpenCORE and VisualOn libraries are under the Apache License 112 version 3 of those licenses. So to combine these libraries with FFmpeg, the 119 ### Incompatible libraries argument 121 There are certain libraries you can combine with FFmpeg whose licenses are not 123 libraries, even in circumstances that their license may be incompatible, pass [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/samples/legacy/ |
D | README | 15 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…
|