Skip to content

Commit

Permalink
[no ci]: cheshire
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan-Velickovic <[email protected]>
  • Loading branch information
Ivan-Velickovic committed Dec 2, 2024
1 parent cafeace commit 728d3fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/simple/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const std = @import("std");
const MicrokitBoard = enum {
qemu_virt_aarch64,
qemu_virt_riscv64,
ariane,
cheshire,
odroidc4,
maaxboard,
};
Expand Down Expand Up @@ -37,7 +37,7 @@ const targets = [_]Target {
},
},
.{
.board = MicrokitBoard.ariane,
.board = MicrokitBoard.cheshire,
.zig_target = std.Target.Query{
.cpu_arch = .riscv64,
.cpu_model = .{ .explicit = &std.Target.riscv.cpu.baseline_rv64 },
Expand Down Expand Up @@ -119,7 +119,7 @@ pub fn build(b: *std.Build) !void {
const arm_vgic_version: usize = switch (microkit_board_option.?) {
.qemu_virt_aarch64, .odroidc4 => 2,
.maaxboard => 3,
.qemu_virt_riscv64, .ariane => 0,
.qemu_virt_riscv64, .cheshire => 0,
};

const libvmm_dep = b.dependency("libvmm", .{
Expand Down

0 comments on commit 728d3fb

Please sign in to comment.