From d0fd67cffe664ff70d9a70dd4d2d28aba5a378e8 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 3 Aug 2023 09:51:21 -0700 Subject: [PATCH] std.zig.system.NativePaths: remove bad framework dir This path actually has nothing useful in it. --- lib/std/zig/system/NativePaths.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/std/zig/system/NativePaths.zig b/lib/std/zig/system/NativePaths.zig index 1fd92292f9..4c8f1286b8 100644 --- 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; }