qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] trunk sources fails to compile on Debian GNU/Linux 3.1


From: Michael Wetherell
Subject: Re: [Qemu-devel] trunk sources fails to compile on Debian GNU/Linux 3.1 on AMD64.
Date: Tue, 12 Jul 2005 13:15:29 +0100
User-agent: KMail/1.7.1

On Tuesday 12 Jul 2005 11:59, Karel Gardas wrote:
> > Qemu's trunk sources obtained from today CVS fails to compile on
> > debian 3.1/amd64 platform. The error is:
> >
> > gcc -g -Wl,-T,/home/karel/cvs/qemu/qemu/x86_64.ld -o qemu-i386
> > elfload.o main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o
> > vm86.o libqemu.a gdbstub.o   -lm
> > /usr/bin/ld:/home/karel/cvs/qemu/qemu/x86_64.ld:62: parse error
> > collect2: ld returned 1 exit status
>
> short followup: exactly the same issue also hits qemu 0.7.0 release.

Here's a suggested fix.

Regards,
Mike

--- qemu-0.7.0.orig/x86_64.ld 2005-04-27 21:52:05.000000000 +0100
+++ qemu-0.7.0/x86_64.ld 2005-07-12 13:06:32.104978032 +0100
@@ -59,8 +59,6 @@
   .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 @@
   .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          :
   {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]