From 86efbda8d8fa083e2412d612b61b8ab2e4b5288f Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 5 Aug 2016 11:21:06 +0200 Subject: [PATCH] Remove panic=abort note --- blog/post/2016-04-11-kernel-heap.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/blog/post/2016-04-11-kernel-heap.md b/blog/post/2016-04-11-kernel-heap.md index 93e172a1..7582b4a4 100644 --- a/blog/post/2016-04-11-kernel-heap.md +++ b/blog/post/2016-04-11-kernel-heap.md @@ -331,10 +331,6 @@ use alloc::boxed::Box; let heap_test = Box::new(42); ``` -(If you're getting a linker error about `_Unwind_Resume`, try to use the [panic=abort cargo option].) - -[panic=abort cargo option]: https://github.com/phil-opp/blog_os/pull/170 - When we run it, a triple fault occurs and causes permanent rebooting. Let's try debug it using QEMU and objdump as described [in the previous post][qemu debugging]: [qemu debugging]: http://os.phil-opp.com/remap-the-kernel.html#debugging