35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
|
From 4af9300d36f0975213b0fb967131629ad6b4c550 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/17] 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(-)
|
||
|
|
||
|
Index: qemu-0.14.1/x86_64.ld
|
||
|
===================================================================
|
||
|
--- qemu-0.14.1.orig/x86_64.ld
|
||
|
+++ qemu-0.14.1/x86_64.ld
|
||
|
@@ -70,8 +70,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);
|
||
|
@@ -97,8 +95,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 :
|
||
|
{
|