| ... | ... | @@ -2889,48 +2889,41 @@ pub const LibExeObjStep = struct { |
| 2889 | 2889 | |
| 2890 | 2890 | try zig_args.append("--enable-cache"); |
| 2891 | 2891 | |
| 2892 | | const is_build = switch (self.kind) { |
| 2893 | | .lib => true, |
| 2894 | | .exe => true, |
| 2895 | | .obj => true, |
| 2896 | | else => false, |
| 2897 | | }; |
| 2898 | | if (is_build) { |
| 2899 | | // Windows has an argument length limit of 32,766 characters, macOS 262,144 and Linux |
| 2900 | | // 2,097,152. If our args exceed 30 KiB, we instead write them to a "response file" and |
| 2901 | | // pass that to zig, e.g. via 'zig build-lib @args.rsp' |
| 2902 | | var args_length: usize = 0; |
| 2903 | | for (zig_args.items) |arg| { |
| 2904 | | args_length += arg.len + 1; // +1 to account for null terminator |
| 2905 | | } |
| 2906 | | if (args_length >= 30 * 1024) { |
| 2907 | | const args_dir = try fs.path.join( |
| 2908 | | builder.allocator, |
| 2909 | | &[_][]const u8{ builder.pathFromRoot("zig-cache"), "args" }, |
| 2910 | | ); |
| 2911 | | try std.fs.cwd().makePath(args_dir); |
| 2912 | | |
| 2913 | | // Write the args to zig-cache/args/<SHA256 hash of args> to avoid conflicts with |
| 2914 | | // other zig build commands running in parallel. |
| 2915 | | const partially_quoted = try std.mem.join(builder.allocator, "\" \"", zig_args.items[2..]); |
| 2916 | | const args = try std.mem.concat(builder.allocator, u8, &[_][]const u8{ "\"", partially_quoted, "\"" }); |
| 2917 | | |
| 2918 | | var args_hash: [Sha256.digest_length]u8 = undefined; |
| 2919 | | Sha256.hash(args, &args_hash, .{}); |
| 2920 | | var args_hex_hash: [Sha256.digest_length * 2]u8 = undefined; |
| 2921 | | _ = try std.fmt.bufPrint( |
| 2922 | | &args_hex_hash, |
| 2923 | | "{s}", |
| 2924 | | .{std.fmt.fmtSliceHexLower(&args_hash)}, |
| 2925 | | ); |
| 2892 | // Windows has an argument length limit of 32,766 characters, macOS 262,144 and Linux |
| 2893 | // 2,097,152. If our args exceed 30 KiB, we instead write them to a "response file" and |
| 2894 | // pass that to zig, e.g. via 'zig build-lib @args.rsp' |
| 2895 | var args_length: usize = 0; |
| 2896 | for (zig_args.items) |arg| { |
| 2897 | args_length += arg.len + 1; // +1 to account for null terminator |
| 2898 | } |
| 2899 | if (args_length >= 30 * 1024) { |
| 2900 | const args_dir = try fs.path.join( |
| 2901 | builder.allocator, |
| 2902 | &[_][]const u8{ builder.pathFromRoot("zig-cache"), "args" }, |
| 2903 | ); |
| 2904 | try std.fs.cwd().makePath(args_dir); |
| 2905 | |
| 2906 | // Write the args to zig-cache/args/<SHA256 hash of args> to avoid conflicts with |
| 2907 | // other zig build commands running in parallel. |
| 2908 | const partially_quoted = try std.mem.join(builder.allocator, "\" \"", zig_args.items[2..]); |
| 2909 | const args = try std.mem.concat(builder.allocator, u8, &[_][]const u8{ "\"", partially_quoted, "\"" }); |
| 2910 | |
| 2911 | var args_hash: [Sha256.digest_length]u8 = undefined; |
| 2912 | Sha256.hash(args, &args_hash, .{}); |
| 2913 | var args_hex_hash: [Sha256.digest_length * 2]u8 = undefined; |
| 2914 | _ = try std.fmt.bufPrint( |
| 2915 | &args_hex_hash, |
| 2916 | "{s}", |
| 2917 | .{std.fmt.fmtSliceHexLower(&args_hash)}, |
| 2918 | ); |
| 2926 | 2919 | |
| 2927 | | const args_file = try fs.path.join(builder.allocator, &[_][]const u8{ args_dir, args_hex_hash[0..] }); |
| 2928 | | try std.fs.cwd().writeFile(args_file, args); |
| 2920 | const args_file = try fs.path.join(builder.allocator, &[_][]const u8{ args_dir, args_hex_hash[0..] }); |
| 2921 | try std.fs.cwd().writeFile(args_file, args); |
| 2929 | 2922 | |
| 2930 | | zig_args.shrinkRetainingCapacity(2); |
| 2931 | | try zig_args.append(try std.mem.concat(builder.allocator, u8, &[_][]const u8{ "@", args_file })); |
| 2932 | | } |
| 2923 | zig_args.shrinkRetainingCapacity(2); |
| 2924 | try zig_args.append(try std.mem.concat(builder.allocator, u8, &[_][]const u8{ "@", args_file })); |
| 2933 | 2925 | } |
| 2926 | |
| 2934 | 2927 | const output_dir_nl = try builder.execFromStep(zig_args.items, &self.step); |
| 2935 | 2928 | const build_output_dir = mem.trimRight(u8, output_dir_nl, "\r\n"); |
| 2936 | 2929 | |