From 7725042235b8e59c7f3f927e8cfb27bf124bfbaf Mon Sep 17 00:00:00 2001 From: Steffen Rusitschka Date: Fri, 18 Nov 2022 23:17:06 +0100 Subject: [PATCH] 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. --- Kernel/Arch/aarch64/init.cpp | 1 + Kernel/Bus/PCI/Access.h | 1 + Kernel/Jail.h | 1 + 3 files changed, 3 insertions(+) diff --git a/Kernel/Arch/aarch64/init.cpp b/Kernel/Arch/aarch64/init.cpp index 7c1365393f9..4abc2826ad2 100644 --- a/Kernel/Arch/aarch64/init.cpp +++ b/Kernel/Arch/aarch64/init.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include diff --git a/Kernel/Bus/PCI/Access.h b/Kernel/Bus/PCI/Access.h index 31ea56049d7..377d52d9846 100644 --- a/Kernel/Bus/PCI/Access.h +++ b/Kernel/Bus/PCI/Access.h @@ -8,6 +8,7 @@ #include #include +#include #include #include #include diff --git a/Kernel/Jail.h b/Kernel/Jail.h index ea66839ebde..8dc623193ae 100644 --- a/Kernel/Jail.h +++ b/Kernel/Jail.h @@ -16,6 +16,7 @@ #include #include #include +#include namespace Kernel {