1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:57:46 +00:00

Kernel: Build MiniStdLib.cpp in aarch64 builds

This commit is contained in:
Nico Weber 2021-09-06 20:49:38 -04:00 committed by Linus Groh
parent 208aa05cf3
commit a8d96df8e0
2 changed files with 20 additions and 7 deletions

View file

@ -1,5 +1,6 @@
set(SOURCES
UBSanitizer.cpp
../MiniStdLib.cpp
)
if ("${SERENITY_ARCH}" STREQUAL "aarch64")
set(SOURCES
@ -14,7 +15,6 @@ else()
Arch/x86/multiboot.S
# FIXME: Eventually, some of these should build on aarch64 too.
init.cpp
../MiniStdLib.cpp
../../Userland/Libraries/LibELF/Relocation.cpp
)
endif()