summaryrefslogtreecommitdiffstats
path: root/lib/Linker
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-01-10 03:12:29 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-01-10 03:12:29 +0000
commit3e5e127f2986ac177bc16f5970ae0dc4dee8acec (patch)
treecd929b0fe4f74305b649c29f9614433cad32c454 /lib/Linker
parent49dddb273dd5aa0e30d70fdab1549c5f766beaf7 (diff)
downloadexternal_llvm-3e5e127f2986ac177bc16f5970ae0dc4dee8acec.zip
external_llvm-3e5e127f2986ac177bc16f5970ae0dc4dee8acec.tar.gz
external_llvm-3e5e127f2986ac177bc16f5970ae0dc4dee8acec.tar.bz2
Be a little more explanatory in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/Linker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Linker/Linker.cpp b/lib/Linker/Linker.cpp
index 9ffe7a1..0afc2ee 100644
--- a/lib/Linker/Linker.cpp
+++ b/lib/Linker/Linker.cpp
@@ -134,7 +134,7 @@ static inline sys::Path IsLibrary(const std::string& Name,
if (FullPath.isArchive())
return FullPath;
- // Try the libX.so form
+ // Try the libX.so (or .dylib) form
FullPath.eraseSuffix();
FullPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
if (FullPath.isDynamicLibrary()) // Native shared library?