Home | History | Annotate | Download | only in Linker

Lines Matching refs:Libraries

1 //===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===//
11 // and to handle annoying things like static libraries.
55 // we have an aggregated module at this point, the dependent libraries in
57 // now the time to process the dependent libraries to resolve any remaining
117 /// Libraries - The list of libraries to link into the module.
123 bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
125 // Process the set of libraries we've been provided.
127 for (unsigned i = 0; i < Libraries.size(); ++i)
128 if (LinkInLibrary(Libraries[i], is_native))
131 // At this point we have processed all the libraries provided to us. Since
132 // we have an aggregated module at this point, the dependent libraries in
134 // now the time to process the dependent libraries to resolve any remaining