commit d0fd67cffe664ff70d9a70dd4d2d28aba5a378e8 (tree) parent f96d773d989bdca0a7eb08965a84ae2f63ea7f4c Author: Andrew Kelley <andrew@ziglang.org> Date: Thu, 3 Aug 2023 09:51:21 -0700 std.zig.system.NativePaths: remove bad framework dir This path actually has nothing useful in it. Diffstat:
| M | lib/std/zig/system/NativePaths.zig | | | 2 | -- |
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/lib/std/zig/system/NativePaths.zig b/lib/std/zig/system/NativePaths.zig @@ -86,8 +86,6 @@ pub fn detect(arena: Allocator, native_info: NativeTargetInfo) !NativePaths { try self.addIncludeDir(try std.fs.path.join(arena, &.{ sdk.path, "usr/include" })); return self; } - // These do not include headers, so the ones that come with the SDK are preferred. - try self.addFrameworkDir("/System/Library/Frameworks"); return self; }