diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-02-20 21:47:02 -0600 |
|---|---|---|
| committer | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-02-20 21:47:02 -0600 |
| commit | ee6681aaca8ddffbb3e5cf1fb06ae6471c8be9e5 (patch) | |
| tree | 11d81058417de3aa37dcb953bb838e4c10cac46d | |
| parent | ad1cd6c5ede326cd12c591f16c494ff945489e8b (diff) | |
| download | funcz-ee6681aaca8ddffbb3e5cf1fb06ae6471c8be9e5.tar.gz | |
Removed IR generation
| -rw-r--r-- | build.zig | 3 | ||||
| -rw-r--r-- | build.zig.zon | 2 |
2 files changed, 1 insertions, 4 deletions
@@ -29,9 +29,6 @@ pub fn build(b: *std.Build) !void { b.installArtifact(exe); - const ir_file = b.addInstallFile(exe.getEmittedLlvmIr(), "output.ll"); - b.getInstallStep().dependOn(&ir_file.step); - const run_cmd = b.addRunArtifact(exe); run_cmd.step.dependOn(b.getInstallStep()); if (b.args) |args| run_cmd.addArgs(args); diff --git a/build.zig.zon b/build.zig.zon index 1fd6518..89b79b7 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .funcz, .fingerprint = 0x30f8633228105f1a, - .version = "0.1.2", + .version = "0.1.2.1", .paths = .{ "src", "build.zig", "build.zig.zon" }, } |
