Compare commits
No commits in common. "53fb1d163b3a39d4a2c78973be62df063ca234a3" and "3c619df3dcfaa664e763bb01e0c232853168366a" have entirely different histories.
53fb1d163b
...
3c619df3dc
|
@ -65,9 +65,9 @@ pub fn build(b: *std.Build) void {
|
|||
const zgui_pkg = zgui.package(b, target, optimize, .{ .options = .{ .backend = .sdl2_opengl3, .shared = true } });
|
||||
zgui_pkg.link(exe);
|
||||
|
||||
b.installArtifact(exe);
|
||||
exe.install();
|
||||
|
||||
const run_cmd = b.addRunArtifact(exe);
|
||||
const run_cmd = exe.run();
|
||||
run_cmd.step.dependOn(b.getInstallStep());
|
||||
if (b.args) |args| {
|
||||
run_cmd.addArgs(args);
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 36e192a74f3be878766e1aa3e6f13ba5f92650cb
|
||||
Subproject commit 37f4ba9e31bea895fa19ef8b90d1f51111e52e67
|
2
lib/zgui
2
lib/zgui
|
@ -1 +1 @@
|
|||
Subproject commit 281f95b4606d449b7877f13cd5f408790b410491
|
||||
Subproject commit 5b2b64a9dedd91f0cbf69ccb7a0a5ebf1fdf1691
|
|
@ -39,7 +39,7 @@ pub const arm = struct {
|
|||
}
|
||||
|
||||
fn populate() [0x1000]InstrFn {
|
||||
return comptime comptime_blk: {
|
||||
comptime {
|
||||
@setEvalBranchQuota(0xE000);
|
||||
var table = [_]InstrFn{und} ** 0x1000;
|
||||
|
||||
|
@ -106,8 +106,8 @@ pub const arm = struct {
|
|||
};
|
||||
}
|
||||
|
||||
break :comptime_blk table;
|
||||
};
|
||||
return table;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -135,7 +135,7 @@ pub const thumb = struct {
|
|||
}
|
||||
|
||||
fn populate() [0x400]InstrFn {
|
||||
return comptime comptime_blk: {
|
||||
comptime {
|
||||
@setEvalBranchQuota(5025); // This is exact
|
||||
var table = [_]InstrFn{und} ** 0x400;
|
||||
|
||||
|
@ -228,8 +228,8 @@ pub const thumb = struct {
|
|||
};
|
||||
}
|
||||
|
||||
break :comptime_blk table;
|
||||
};
|
||||
return table;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue