Skip to content

Commit 854841e

Browse files
committed
Fix comment which incorrectly represents the value of the install/lib path
1 parent b5e52e5 commit 854841e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Driver/ToolChains/Darwin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2865,7 +2865,7 @@ void AppleMachO::AddCXXStdlibLibArgs(const ArgList &Args,
28652865
// name) which may have been configured with different options, be at a
28662866
// different version, etc.
28672867
SmallString<128> InstallLib = llvm::sys::path::parent_path(getDriver().Dir);
2868-
llvm::sys::path::append(InstallLib, "lib"); // <install>/bin/../lib
2868+
llvm::sys::path::append(InstallLib, "lib"); // <install>/lib
28692869
auto Link = [&](StringRef Library) {
28702870
SmallString<128> Shared(InstallLib);
28712871
llvm::sys::path::append(Shared,

0 commit comments

Comments
 (0)