Kernel: Fix includes when building aarch64

This patch fixes some include problems on aarch64. aarch64 is still
currently broken but this will get us back to the underlying problem
of FloatExtractor.
This commit is contained in:
Steffen Rusitschka 2022-11-18 23:17:06 +01:00 committed by Brian Gianforcaro
parent 8363225320
commit 7725042235
Notes: sideshowbarker 2024-07-17 06:29:49 +09:00
3 changed files with 3 additions and 0 deletions

View file

@ -24,6 +24,7 @@
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Graphics/Console/BootFramebufferConsole.h>
#include <Kernel/JailManagement.h>
#include <Kernel/KSyms.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Panic.h>

View file

@ -8,6 +8,7 @@
#include <AK/Bitmap.h>
#include <AK/HashMap.h>
#include <AK/NonnullOwnPtr.h>
#include <AK/Try.h>
#include <AK/Vector.h>
#include <Kernel/Bus/PCI/Controller/HostController.h>

View file

@ -16,6 +16,7 @@
#include <Kernel/KString.h>
#include <Kernel/Library/LockRefPtr.h>
#include <Kernel/Locking/SpinlockProtected.h>
#include <Kernel/Process.h>
namespace Kernel {