From ab70268d61fcd906bdd2dbafa4a37987194af759 Mon Sep 17 00:00:00 2001 From: James Mintram Date: Thu, 14 Oct 2021 00:06:29 +0100 Subject: [PATCH] Kernel: Add the AK sources to the Aarch64 kernel build --- Kernel/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index 8870bb01a68..84a1c6db717 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -359,6 +359,7 @@ if (NOT "${SERENITY_ARCH}" STREQUAL "aarch64") else() set(SOURCES Arch/aarch64/dummy.cpp + ${AK_SOURCES} ) endif()