mirror of
https://github.com/ziglang/zig.git
synced 2024-11-29 00:22:33 +00:00
22 lines
647 B
Zig
22 lines
647 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.build.Builder) !void {
|
|
const target = std.zig.CrossTarget{
|
|
.os_tag = .freestanding,
|
|
.cpu_arch = .arm,
|
|
.cpu_model = .{
|
|
.explicit = &std.Target.arm.cpu.arm1176jz_s,
|
|
},
|
|
};
|
|
const mode = b.standardReleaseOptions();
|
|
const kernel = b.addExecutable("kernel", "./main.zig");
|
|
kernel.addObjectFile("./boot.S");
|
|
kernel.setLinkerScriptPath(.{ .path = "./linker.ld" });
|
|
kernel.setBuildMode(mode);
|
|
kernel.setTarget(target);
|
|
kernel.install();
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&kernel.step);
|
|
}
|