authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-15 22:04:34 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-15 22:04:34 -08:00
log9d95a343c2f9c61b67c7e6f36f0e3907052f140f
tree694cb8b8f66fc084cfcbb0dfe6745960e068118a
parenta4de26641137d522861b4227181c344e9bed412d

remove run step


1 files changed, 0 insertions(+), 11 deletions(-)

build.zig-11
......@@ -6,17 +6,6 @@ pub fn build(b: *std.Build) void {
66 const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug;
77 const disable_llvm = b.option(bool, "disable_llvm", "use the non-llvm zig codegen") orelse false;
88
9 const exe = b.addExecutable(.{
10 .name = "zig-pek",
11 .root_source_file = b.path("src/main.zig"),
12 .target = target,
13 .optimize = mode,
14 });
15 deps.addAllTo(exe);
16 exe.use_llvm = !disable_llvm;
17 exe.use_lld = !disable_llvm;
18 b.installArtifact(exe);
19
209 const tests = b.addTest(.{
2110 .root_source_file = b.path("test.zig"),
2211 .target = target,