reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  536     fullPath.assign(path);
  537     llvm::sys::path::append(fullPath, libName);
  538     if (fileExists(fullPath))
  539       return fullPath.str().copy(_allocator);
  544   fullPath.assign(path);
  545   llvm::sys::path::append(fullPath, Twine("lib") + libName + ".dylib");
  546   if (fileExists(fullPath))
  547     return fullPath.str().copy(_allocator);
  550   fullPath.assign(path);
  551   llvm::sys::path::append(fullPath, Twine("lib") + libName + ".a");
  552   if (fileExists(fullPath))
  553     return fullPath.str().copy(_allocator);