Skip to content
This repository was archived by the owner on Feb 17, 2024. It is now read-only.

Commit 541a3f8

Browse files
authored
Update microzig (#12)
* update microzig * fixed build.zig --------- Co-authored-by: mattnite <mattnite@users.noreply.github.com>
1 parent a548d0e commit 541a3f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub fn build(b: *std.build.Builder) void {
1818
.backing = .{ .board = @field(boards, decl.name) },
1919
.optimize = optimize,
2020
});
21-
exe.install();
21+
exe.installArtifact(b);
2222
}
2323

2424
inline for (@typeInfo(chips).Struct.decls) |decl| {
@@ -33,6 +33,6 @@ pub fn build(b: *std.build.Builder) void {
3333
.backing = .{ .chip = @field(chips, decl.name) },
3434
.optimize = optimize,
3535
});
36-
exe.install();
36+
exe.installArtifact(b);
3737
}
3838
}

deps/microzig

Submodule microzig updated 1 file

0 commit comments

Comments
 (0)