aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/link.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/link.cpp b/src/link.cpp
index 0ee0b49d01..39cadaea0f 100644
--- a/src/link.cpp
+++ b/src/link.cpp
@@ -757,8 +757,12 @@ static void construct_linker_job_macho(LinkJob *lj) {
// so we always link against libSystem
lj->args.append("-lSystem");
} else {
- Buf *arg = buf_sprintf("-l%s", buf_ptr(link_lib->name));
- lj->args.append(buf_ptr(arg));
+ if (strchr(buf_ptr(link_lib->name), '/') == nullptr) {
+ Buf *arg = buf_sprintf("-l%s", buf_ptr(link_lib->name));
+ lj->args.append(buf_ptr(arg));
+ } else {
+ lj->args.append(buf_ptr(link_lib->name));
+ }
}
}
} else {