From 3e35b88903f3bd9685f411f7cf1d2631defd89b6 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 22 Jan 2005 16:29:21 +0000 Subject: [PATCH] Rather keep the .eh_frame section, if we want exceptions. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10949 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/ldscripts/x86/app.ld | 2 +- src/kernel/ldscripts/x86/library.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/ldscripts/x86/app.ld b/src/kernel/ldscripts/x86/app.ld index e54a156259..c2d2eab76a 100644 --- a/src/kernel/ldscripts/x86/app.ld +++ b/src/kernel/ldscripts/x86/app.ld @@ -68,5 +68,5 @@ SECTIONS PROVIDE (_end = .); /* Strip unnecessary stuff */ - /DISCARD/ : { *(.comment .note .eh_frame) } + /DISCARD/ : { *(.comment .note) } } diff --git a/src/kernel/ldscripts/x86/library.ld b/src/kernel/ldscripts/x86/library.ld index 80d3734bd0..db0e0959a8 100644 --- a/src/kernel/ldscripts/x86/library.ld +++ b/src/kernel/ldscripts/x86/library.ld @@ -70,5 +70,5 @@ SECTIONS PROVIDE (_end = .); /* Strip unnecessary stuff */ - /DISCARD/ : { *(.comment .note .eh_frame) } + /DISCARD/ : { *(.comment .note) } }