| author | |
| committer | |
| log | af9676049a08827bfca33a05f9c2c763ca502fb2 |
| tree | 54da2053cc604bf7451eb287623cf570ac32d567 |
| parent | d9aad76acddeedb1ba9ae0566a35eb23e9998aa5 |
Tracked at https://codeberg.org/ziglang/zig/issues/360131 files changed, 4 insertions(+), 0 deletions(-)
test/standalone/config_header/build.zig+4| ... | ... | @@ -1,9 +1,13 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | const builtin = @import("builtin"); | |
| 2 | 3 | |
| 3 | 4 | pub fn build(b: *std.Build) void { |
| 4 | 5 | const test_step = b.step("test", "Test it"); |
| 5 | 6 | b.default_step = test_step; |
| 6 | 7 | |
| 8 | // https://codeberg.org/ziglang/zig/issues/36013 | |
| 9 | if (builtin.os.tag == .freebsd) return; | |
| 10 | ||
| 7 | 11 | const config_header = b.addConfigHeader( |
| 8 | 12 | .{ .style = .{ .autoconf_undef = b.path("autoconf_undef/config.h.in") } }, |
| 9 | 13 | .{ |