8 lines
177 B
Batchfile
8 lines
177 B
Batchfile
@echo off
|
|
|
|
IF NOT EXIST build mkdir build
|
|
|
|
clang --target=riscv32 -march=rv32im -nostdlib boot.S -c -o build\boot.o
|
|
|
|
ld.lld -T linker.ld build\boot.o -o build\kernel.elf
|