aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64/kernel/arch.c
AgeCommit message (Collapse)Author
2024-07-05fix some small build issuesKimplul
+ Compiling for size emits memcpy() calls after they've already been removed by LTO, so add __used attribute to counteract this. Newer versions of GCC seem to prefer `-flto=auto` to just `-flto`, so use that. printf format %d -> %ld
2023-08-04add initial smp bringupKimplul