38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
|
From 827af866df5674253ef563bd244277d31a93ba32 Mon Sep 17 00:00:00 2001
|
||
|
From: Ulrich Hecht <uli@suse.de>
|
||
|
Date: Tue, 14 Apr 2009 16:17:39 +0200
|
||
|
Subject: [PATCH 01/33] qemu-0.7.0-amd64
|
||
|
|
||
|
No clue why this is necessary or useful, nothing found in any changelogs.
|
||
|
---
|
||
|
x86_64.ld | 6 ++----
|
||
|
1 files changed, 2 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/x86_64.ld b/x86_64.ld
|
||
|
index 878dafb..142e641 100644
|
||
|
--- a/x86_64.ld
|
||
|
+++ b/x86_64.ld
|
||
|
@@ -59,8 +59,6 @@ SECTIONS
|
||
|
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
|
||
|
.rodata1 : { *(.rodata1) }
|
||
|
.eh_frame_hdr : { *(.eh_frame_hdr) }
|
||
|
- .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
|
||
|
- .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table) }
|
||
|
/* Adjust the address for the data segment. We want to adjust up to
|
||
|
the same address within the page on the next page up. */
|
||
|
. = ALIGN (0x100000) - ((0x100000 - .) & (0x100000 - 1)); . = DATA_SEGMENT_ALIGN (0x100000, 0x1000);
|
||
|
@@ -86,8 +84,8 @@ SECTIONS
|
||
|
.data1 : { *(.data1) }
|
||
|
.tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
|
||
|
.tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
|
||
|
- .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
|
||
|
- .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table) }
|
||
|
+ .eh_frame : { KEEP (*(.eh_frame)) }
|
||
|
+ .gcc_except_table : { *(.gcc_except_table) }
|
||
|
.dynamic : { *(.dynamic) }
|
||
|
.ctors :
|
||
|
{
|
||
|
--
|
||
|
1.6.2.1
|
||
|
|