| author | |
| committer | |
| log | 4230bbb2f041b2b66505d8935f4bca9836eccc77 |
| tree | 0ee9170e1462c85b3b83dd52173dce70af217c78 |
| parent | 85223242a3720198a235b4416d47696a489b9c93 |
builtin.mode is the mode that build.zig is itself running in1 files changed, 1 insertions(+), 1 deletions(-)
build.zig+1-1| ... | ... | @@ -16,7 +16,7 @@ pub fn build(b: *Builder) void { |
| 16 | 16 | const exe = b.addExecutable(exe_name, "src/main.zig"); |
| 17 | 17 | exe.setTarget(target); |
| 18 | 18 | exe.setBuildMode(mode); |
| 19 | if (builtin.mode != .Debug) { | |
| 19 | if (mode != .Debug) { | |
| 20 | 20 | exe.strip = true; |
| 21 | 21 | } |
| 22 | 22 |