| ... | @@ -1576,7 +1576,7 @@ pub const LibExeObjStep = struct { | ... | @@ -1576,7 +1576,7 @@ pub const LibExeObjStep = struct { |
| 1576 | | 1576 | |
| 1577 | pub fn addBuildOption(self: *LibExeObjStep, comptime T: type, name: []const u8, value: T) void { | 1577 | pub fn addBuildOption(self: *LibExeObjStep, comptime T: type, name: []const u8, value: T) void { |
| 1578 | const out = &std.io.BufferOutStream.init(&self.build_options_contents).stream; | 1578 | const out = &std.io.BufferOutStream.init(&self.build_options_contents).stream; |
| 1579 | out.print("pub const {} = {};\n", name, value) catch unreachable; | 1579 | out.print("pub const {} = {};\n", .{ name, value }) catch unreachable; |
| 1580 | } | 1580 | } |
| 1581 | | 1581 | |
| 1582 | pub fn addSystemIncludeDir(self: *LibExeObjStep, path: []const u8) void { | 1582 | pub fn addSystemIncludeDir(self: *LibExeObjStep, path: []const u8) void { |