mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:47:34 +00:00
Kernel: Share CrashHandler.cpp between aarch64 and x86_64
This file contains no architecture specific code, so can be moved to the Kernel/ directory, and thus shared between aarch64 and x86_64.
This commit is contained in:
parent
7ba9bc6338
commit
816076f71a
3 changed files with 2 additions and 22 deletions
|
@ -41,6 +41,7 @@ set(KERNEL_SOURCES
|
|||
Bus/VirtIO/RNG.cpp
|
||||
CommandLine.cpp
|
||||
Coredump.cpp
|
||||
CrashHandler.cpp
|
||||
Credentials.cpp
|
||||
Devices/AsyncDeviceRequest.cpp
|
||||
Devices/Audio/AC97.cpp
|
||||
|
@ -413,7 +414,6 @@ if ("${SERENITY_ARCH}" STREQUAL "x86_64")
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/ASM_wrapper.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/CPU.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/CPUID.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/CrashHandler.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/InterruptManagement.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/Interrupts.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Arch/x86_64/PageDirectory.cpp
|
||||
|
@ -454,7 +454,6 @@ elseif("${SERENITY_ARCH}" STREQUAL "aarch64")
|
|||
Arch/aarch64/boot.S
|
||||
Arch/aarch64/BootPPMParser.cpp
|
||||
Arch/aarch64/CPUID.cpp
|
||||
Arch/aarch64/CrashHandler.cpp
|
||||
Arch/aarch64/CurrentTime.cpp
|
||||
Arch/aarch64/Dummy.cpp
|
||||
Arch/aarch64/init.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue