aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2023-08-20 08:37:44 +0200
committerJakub Konka <kubkon@jakubkonka.com>2023-08-20 08:37:44 +0200
commite687c87d691518d63414aed4f355dabbd8565dc3 (patch)
tree244d77229edd3ebabd3a89582cc309256b45e26c /src/main.zig
parent020105d0dde614538a5839ede697e63a43bf6aa6 (diff)
downloadzig-e687c87d691518d63414aed4f355dabbd8565dc3.tar.gz
zig-e687c87d691518d63414aed4f355dabbd8565dc3.zip
macho: we no longer need to resolve framework dirs against sysroot
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index fd220bf172..01ef0d87be 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -2566,7 +2566,7 @@ fn buildOutputType(
want_native_include_dirs = true;
}
- // Resolve the library path arguments with respect to sysroot.
+ // Resolve the library and framework path arguments with respect to sysroot.
var lib_dirs = std.ArrayList([]const u8).init(arena);
if (sysroot) |root| {
for (lib_dir_args.items) |dir| {