From 3f4f2b8ac22a14d0f1a711a4b6342ace8b8eafb9 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 13 Jun 2016 18:36:01 +0200 Subject: [PATCH] Revert "Remove unneeded gcc_except_table section" (#180) (cherry picked from commit 76b83c623e83c8c25b1f1c126b569ea8192926ed) --- src/arch/x86_64/linker.ld | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/arch/x86_64/linker.ld b/src/arch/x86_64/linker.ld index ac3014b7..ff773527 100644 --- a/src/arch/x86_64/linker.ld +++ b/src/arch/x86_64/linker.ld @@ -44,4 +44,9 @@ SECTIONS { *(.data.rel.ro.local*) *(.data.rel.ro .data.rel.ro.*) . = ALIGN(4K); } + + .gcc_except_table : ALIGN(4K) { + *(.gcc_except_table) + . = ALIGN(4K); + } }