Files
riscv/os/build.bat
2024-05-13 12:21:59 +02:00

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