1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:37:44 +00:00

Kernel/riscv64: Make the kernel compile

This commits inserts TODOs into all necessary places to make the kernel
compile on riscv64!
This commit is contained in:
Sönke Holz 2023-11-02 23:21:09 +01:00 committed by Andrew Kaster
parent b6ac2ed34d
commit da88d766b2
37 changed files with 633 additions and 5 deletions

View file

@ -512,9 +512,22 @@ elseif("${SERENITY_ARCH}" STREQUAL "riscv64")
Arch/Processor.cpp
kprintf.cpp
Arch/riscv64/Firmware/ACPI/StaticParsing.cpp
Arch/riscv64/boot.S
Arch/riscv64/DebugOutput.cpp
Arch/riscv64/Delay.cpp
Arch/riscv64/InterruptManagement.cpp
Arch/riscv64/Interrupts.cpp
Arch/riscv64/PageDirectory.cpp
Arch/riscv64/Panic.cpp
Arch/riscv64/PCI.cpp
Arch/riscv64/PowerState.cpp
Arch/riscv64/pre_init.cpp
Arch/riscv64/Processor.cpp
Arch/riscv64/SafeMem.cpp
Arch/riscv64/SBI.cpp
Arch/riscv64/SmapDisabler.cpp
)
add_compile_options(-fno-stack-protector -fno-sanitize=all)