Skip to content

Commit

Permalink
Add Linux RISC-V support for JVM (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton authored Sep 12, 2024
1 parent a9fe1da commit b3c1d49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mosaic-terminal/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pub fn build(b: *std.Build) !void {
b.getInstallStep().dependOn(&deleteLib.step);

setupMosaicTarget(b, &deleteLib.step, .linux, .aarch64, "arm64");
setupMosaicTarget(b, &deleteLib.step, .linux, .riscv64, "riscv");
setupMosaicTarget(b, &deleteLib.step, .linux, .x86_64, "x86_64");
setupMosaicTarget(b, &deleteLib.step, .macos, .aarch64, "aarch64");
setupMosaicTarget(b, &deleteLib.step, .macos, .x86_64, "x86_64");
Expand Down

0 comments on commit b3c1d49

Please sign in to comment.