remove many usingnamespace, introduce new ref count and ref leak debugging tools (#18353)

This commit is contained in:
chloe caruso
2025-03-31 17:17:38 -07:00
committed by GitHub
parent 323d78df5e
commit a199b85f2b
99 changed files with 1857 additions and 1018 deletions

View File

@@ -153,13 +153,6 @@ pub fn build(b: *Build) !void {
std.log.info("zig compiler v{s}", .{builtin.zig_version_string});
checked_file_exists = std.AutoHashMap(u64, void).init(b.allocator);
// TODO: Upgrade path for 0.14.0
// b.graph.zig_lib_directory = brk: {
// const sub_path = "vendor/zig/lib";
// const dir = try b.build_root.handle.openDir(sub_path, .{});
// break :brk .{ .handle = dir, .path = try b.build_root.join(b.graph.arena, &.{sub_path}) };
// };
var target_query = b.standardTargetOptionsQueryOnly(.{});
const optimize = b.standardOptimizeOption(.{});