aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2024-10-17 13:12:29 +0200
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-17 13:12:29 +0200
commitb865b36b38d951de28cc4df5fa67338b8245a1c3 (patch)
tree694825047086e18855bdb34fc24698292f6258ff /arch/x86_64/CMakeLists.txt
parentd539ed1f4f26a42959bcae6ea3050b7f99f5f872 (diff)
downloadteachos-b865b36b38d951de28cc4df5fa67338b8245a1c3.tar.xz
teachos-b865b36b38d951de28cc4df5fa67338b8245a1c3.zip
Implement support for `std::terminate` via `::abort`
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
-rw-r--r--arch/x86_64/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt
index 603393c..3f67d71 100644
--- a/arch/x86_64/CMakeLists.txt
+++ b/arch/x86_64/CMakeLists.txt
@@ -51,7 +51,9 @@ target_sources("_memory" PRIVATE
#]============================================================================]
target_sources("_exception" PRIVATE
+ "src/exception_handling/abort.cpp"
"src/exception_handling/assert.cpp"
+ "src/exception_handling/panic.cpp"
)
#[============================================================================[