| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/ |
| H A D | dependent-libraries.test | 1 ## Check that we can use the --dependent-libraries option 8 # RUN: llvm-readobj --dependent-libraries %t1 | \ 10 # RUN: llvm-readelf --dependent-libraries %t1 | \ 19 # GNU:Dependent libraries section .deplibs at offset 0x40 contains 3 entries: 38 # RUN: llvm-readobj --dependent-libraries %t3 2>&1 | FileCheck %s --check-prefix=NONE 48 # RUN: llvm-readelf --dependent-libraries %t2 2>&1 | FileCheck %s --check-prefix=MIX-GNU -DFILE=%t2 60 # MIX-GNU-NEXT: Dependent libraries section .deplibs.nonul at offset 0x40 contains 0 entries: 62 # MIX-GNU-NEXT: Dependent libraries section .deplibs.single at offset 0x43 contains 1 entries: 65 # MIX-GNU-NEXT: Dependent libraries section .deplibs.empty at offset 0x47 contains 0 entries: 70 # MIX-GNU-NEXT: Dependent libraries section .deplibs.multiple at offset 0x4b contains 2 entries: [all …]
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Shape/ |
| H A D | TestShapeFunctions.cpp | 59 SmallVector<shape::FunctionLibraryOp, 4> libraries; in runOnOperation() local 67 libraries.reserve(arrayAttr.size()); in runOnOperation() 69 libraries.push_back(lookup(attr)); in runOnOperation() 71 libraries.reserve(1); in runOnOperation() 72 libraries.push_back(lookup(attr)); in runOnOperation() 82 bool found = llvm::any_of(libraries, [&](shape::FunctionLibraryOp lib) { in runOnOperation()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | Projects.rst | 12 projects that use LLVM header files, libraries, and tools. In order to use 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. 184 linked into the program. These libraries must be LLVM libraries. The 192 into a large number of static libraries, and the list of libraries you 201 the program. For example, to link with all LLVM libraries use 208 libraries as it does for static libraries. [all …]
|
| H A D | BuildingADistribution.rst | 43 Clang libraries into the tools to reduce code duplication. This will come at a 54 global data which can end up being duplicated across shared libraries 98 another for libraries (to enable development). These are configured by setting 125 ``llvm-libraries`` to install all LLVM libraries); a target can appear in a 224 of the libraries and runtimes. Component names match the names of the build 235 components of runtime libraries that you want to include in your distribution. 245 #. ``all`` - All LLVM available component libraries 247 #. ``AllTargetsAsmParsers`` - All the included target ASM parsers libraries 248 #. ``AllTargetsDescs`` - All the included target descriptions libraries 250 #. ``AllTargetsInfos`` - All the included target info libraries [all …]
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-config.rst | 15 print the compiler flags, linker flags and object libraries needed to link 82 Ignore libLLVM and link component libraries instead. 90 Print the flags needed to link against LLVM libraries. 94 Print the installation directory for LLVM libraries. 104 Similar to **--libs**, but prints the bare filenames of the libraries 110 Print all the libraries needed to link against the specified LLVM 115 Link the components as shared libraries. 119 Link the component libraries statically. 139 Print all the system libraries needed to link against the specified LLVM 156 libraries. Useful "virtual" components include: [all …]
|
| /llvm-project-15.0.7/polly/lib/External/ |
| H A D | README.txt | 1 The libraries in this directory are mirrored from external projects. 4 as normal (re)imports of these updated libraries. 6 We currently have the following external libraries. 16 To update these libraries run 'autoreconf -i && ./configure && make dist' in
|
| /llvm-project-15.0.7/clang/tools/clang-shlib/ |
| H A D | CMakeLists.txt | 10 # Xcode doesn't support object libraries, so we have to trick it into 11 # linking the static libraries instead. 17 # If we are building static libraries, then we don't need to add the static 18 # libraries as a depedency, because we are already linking against the 23 # clang libraries are redundant since we are linking all the individual
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | deplibs.s | 9 ## Error if dependent libraries cannot be found. 14 ## Can ignore dependent libraries. 15 # RUN: not ld.lld %t.o -o /dev/null --no-dependent-libraries 2>&1 | FileCheck %s --check-prefix IGN… 18 ## -r links preserve dependent libraries. 25 ## Dependent libraries searched for symbols after libraries on the command line. 43 ## When using library search paths for dependent libraries, LLD follows the same 44 ## rules as for libraries specified on the command line.
|
| /llvm-project-15.0.7/llvm/test/LTO/X86/ |
| H A D | list-dependent-libraries.ll | 3 ; RUN: llvm-as -o %t/2.bc %S/Inputs/list-dependent-libraries.ll 4 ; RUN: llvm-lto -list-dependent-libraries-only %t/1.bc %t/2.bc | FileCheck %s 16 !llvm.dependent-libraries = !{!0}
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | CrossCompilation.rst | 28 headers, libraries, etc. So, it's usually simple to download a package 42 the headers, libraries or binutils to generate target specific code. 50 have your host's libraries installed. 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 164 All libraries that you compile as part of your build will be 174 Also, finding the libraries for your target are not as easy 178 extract the libraries and headers, put them in specific directories [all …]
|
| /llvm-project-15.0.7/mlir/docs/Tutorials/ |
| H A D | CreatingADialect.md | 61 Dialects may have multiple libraries. Each library is typically 62 declared with add_mlir_dialect_library(). Dialect libraries often 64 using the DEPENDS keyword). Dialect libraries may also depend on 65 other dialect libraries. Typically this dependence is declared using 84 which collects a list of all the dialect libraries. This list is 103 In addition, linkage to MLIR libraries is specified using the 104 LINK_LIBS descriptor and linkage to LLVM libraries is specified using 131 add_mlir_conversion_library(). Conversion libraries typically depend 151 libraries. This list is often useful for linking tools
|
| /llvm-project-15.0.7/mlir/ |
| H A D | CMakeLists.txt | 231 # Custom target to install all mlir libraries 232 add_custom_target(mlir-libraries) 233 set_target_properties(mlir-libraries PROPERTIES FOLDER "Misc") 236 add_llvm_install_targets(install-mlir-libraries 237 DEPENDS mlir-libraries 238 COMPONENT mlir-libraries) 245 add_dependencies(mlir-libraries ${lib}) 247 add_dependencies(install-mlir-libraries install-${lib}) 248 add_dependencies(install-mlir-libraries-stripped install-${lib}-stripped)
|
| /llvm-project-15.0.7/mlir/cmake/modules/ |
| H A D | AddMLIR.cmake | 209 # for test libraries, executable-specific libraries, or rarely used libraries 215 # TODO: Make this the default for all MLIR libraries once all libraries 273 # Test libraries and such shouldn't be include in libMLIR.so 283 # The Xcode generator doesn't handle object libraries correctly. 314 set_target_properties(${name} PROPERTIES FOLDER "MLIR libraries") 358 # Sets a variable with a transformed list of link libraries such individual 359 # libraries will be dynamically excluded when evaluated on a final library 361 # libraries. Each link library can be a generator expression but must not 386 # PUBLIC_LIBS: list of dependent libraries to add to the 553 # API libraries compile with hidden visibility and macros that enable [all …]
|
| /llvm-project-15.0.7/mlir/lib/Dialect/GPU/Transforms/ |
| H A D | SerializeToHsaco.cpp | 98 SmallVectorImpl<StringRef> &libraries, 150 SmallVectorImpl<StringRef> &libraries, in loadLibraries() argument 161 for (const StringRef file : libraries) { in loadLibraries() 272 llvm::SmallVector<StringRef, 4> libraries; in translateToLLVMIR() local 274 libraries.push_back("opencl.bc"); in translateToLLVMIR() 276 libraries.push_back("ocml.bc"); in translateToLLVMIR() 278 libraries.push_back("ockl.bc"); in translateToLLVMIR() 284 mbModules = loadLibraries(bitcodePath, libraries, llvmContext); in translateToLLVMIR()
|
| /llvm-project-15.0.7/clang/cmake/caches/ |
| H A D | MultiDistributionExample.cmake | 28 # (intended for most end users), and Development, which has libraries (for end 29 # users who wish to develop their own tooling using those libraries). This will 68 llvm-libraries 73 clang-libraries
|
| /llvm-project-15.0.7/llvm/cmake/modules/ |
| H A D | FindGRPC.cmake | 10 # static libraries when BUILD_SHARED_LIBS is Off and dynamic libraries when 21 # gRPC CMake CONFIG gives the libraries slightly odd names, make them match 36 # We always link dynamically in this mode. While the static libraries are 37 # usually installed, the CMake files telling us *which* static libraries to 47 # On macOS the libraries are typically installed via Homebrew and are not on 54 # If Homebrew is not found, the user might have installed libraries
|
| /llvm-project-15.0.7/lld/test/MachO/Inputs/WatchOS.sdk/usr/lib/ |
| H A D | libc++.tbd | 11 reexported-libraries: 13 libraries: [ '/usr/lib/libc++abi.dylib' ]
|
| /llvm-project-15.0.7/llvm/docs/HistoricalNotes/ |
| H A D | 2007-OriginalClangReadme.txt | 13 The world needs better compiler tools, tools which are built as libraries. This 15 the tools as libraries isn't enough: they must have clean APIs, be as 17 requires clean layering, decent design, and avoiding tying the libraries to a 18 specific use. Oh yeah, did I mention that we want the resultant libraries to 58 higher-level clients and libraries such as code refactoring. 70 clang - An example driver, client of the libraries at various levels. 71 This depends on all these libraries, and on LLVM VMCore. 73 This front-end has been intentionally built as a DAG of libraries, making it 75 build a preprocessor, you take the Basic and Lexer libraries. If you want an
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/ |
| H A D | README.md | 14 This feature uses gRPC and Protobuf libraries, so you will need to install them. 20 ### System-installed libraries 31 CMake (we need CMake config files to find necessary libraries in LLVM). The 52 By default, CMake will look for system-installed libraries when building remote
|
| /llvm-project-15.0.7/lld/test/MachO/Inputs/MacOSX.sdk/System/Library/Frameworks/MacOnly-Indirect.framework/ |
| H A D | MacOnly-Indirect.tbd | 11 reexported-libraries: 13 libraries: [ 'MacOnly-reexport.dylib' ]
|
| /llvm-project-15.0.7/lld/test/MachO/Inputs/ |
| H A D | libStubLink.tbd | 11 reexported-libraries: 13 libraries: [ '/usr/lib/libArm64Sim.dylib' ]
|
| /llvm-project-15.0.7/llvm/test/LTO/Resolution/X86/ |
| H A D | symtab-elf.ll | 12 ; CHECK: {{^dependent libraries: \"foo\" \"b a r\" \"baz\"$}} 16 !llvm.dependent-libraries = !{!1, !2, !3}
|
| /llvm-project-15.0.7/llvm/tools/llvm-symbolizer/ |
| H A D | CMakeLists.txt | 2 # libraries, it has to be compiled for all supported targets (x86_64, i386 etc). 3 # This means that we need LLVM libraries to be compiled for these
|
| /llvm-project-15.0.7/lld/test/wasm/lto/ |
| H A D | pic-empty.s | 2 ; libraries. 5 ; mandatory for ; shared libraries) was generating a linker error.
|
| /llvm-project-15.0.7/compiler-rt/lib/builtins/Darwin-excludes/ |
| H A D | README.TXT | 2 libraries for Darwin. There are two reasons symbols are excluded: 7 The builtin libraries must contain all symbols not provided by the lowest
|