mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
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:
parent
8363225320
commit
7725042235
Notes:
sideshowbarker
2024-07-17 06:29:49 +09:00
Author: https://github.com/rusitschka Commit: https://github.com/SerenityOS/serenity/commit/7725042235 Pull-request: https://github.com/SerenityOS/serenity/pull/16112
3 changed files with 3 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include <Kernel/KString.h>
|
||||
#include <Kernel/Library/LockRefPtr.h>
|
||||
#include <Kernel/Locking/SpinlockProtected.h>
|
||||
#include <Kernel/Process.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
|
Loading…
Reference in a new issue