File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ pub fn build(b: *Builder) !void {
7
7
const want_pty = b .option (bool , "pty" , "Create a separate serial port path" ) orelse false ;
8
8
9
9
const mode = b .standardReleaseOptions ();
10
- const exe = b .addStaticExecutable ("tOS " , "src/kernel.zig" );
10
+ const exe = b .addStaticExecutable ("trOS " , "src/kernel.zig" );
11
11
exe .addAssemblyFile ("src/asm/boot.S" );
12
- exe .addIncludeDir ("src/vga" );
12
+ // exe.addIncludeDir("src/vga");
13
13
exe .setBuildMode (mode );
14
14
15
15
exe .setLinkerScriptPath ("./linker.ld" );
16
16
// Use eabihf for freestanding arm code with hardware float support
17
- exe .setTarget (builtin .Arch . aarch64v8 , builtin .Os .freestanding , builtin .Environ .eabihf );
17
+ exe .setTarget (builtin.Arch { . aarch64 = builtin . Arch . Arm64 . v8 } , builtin .Os .freestanding , builtin .Abi .eabihf );
18
18
19
19
const qemu = b .step ("qemu" , "run kernel in qemu" );
20
20
var qemu_args = std .ArrayList ([]const u8 ).init (b .allocator );
You can’t perform that action at this time.
0 commit comments