public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
From: Keith Owens <kaos@ocs.com.au>
To: linux-ia64@vger.kernel.org
Subject: Re: [Linux-ia64] 001117 toolchain release
Date: Tue, 21 Nov 2000 05:47:21 +0000	[thread overview]
Message-ID: <marc-linux-ia64-105590678205755@msgid-missing> (raw)
In-Reply-To: <marc-linux-ia64-105590678205748@msgid-missing>

On Fri, 17 Nov 2000 21:34:58 -0800, 
Jim Wilson <wilson@cygnus.com> wrote:
>I have put a new toolchain on ftp.cygnus.com in pub/ia64-linux/snap-001117.
>
>This fixes all significant known toolchain problems.  I don't expect to be
>adding more patches to the toolchain unless another serious toolchain bug is
>found.

The unwind sections have alignment 2**0.  The only reason we get away
with it is that the preceding sections are aligned and are a multiple
of words.  If you add a section between __ksymtab and unwind that is
not a multiple of words then the results are "interesting".

  0 .text         0039a990  e000000000500000  0000000000500000  00010000  2**15
                  CONTENTS, ALLOC, LOAD, READONLY, CODE
  1 __ex_table    000019a0  e00000000089a990  000000000089a990  003aa990  2**2
                  CONTENTS, ALLOC, LOAD, READONLY, DATA
  2 __ksymtab     00004100  e00000000089c330  000000000089c330  003ac330  2**3
                  CONTENTS, ALLOC, LOAD, READONLY, DATA
  3 .IA_64.unwind 000240a8  e0000000008a0430  00000000008a0430  003b0430  2**0
                  CONTENTS, ALLOC, LOAD, READONLY, DATA
  4 .IA_64.unwind_info 0002ca00  e0000000008c44e0  00000000008c44e0  003d44e0  2**0
                  CONTENTS, ALLOC, LOAD, READONLY, DATA

Temporary fix, against 2.4.0-test11.

Index: 0-test11.7/arch/ia64/vmlinux.lds.S
--- 0-test11.7/arch/ia64/vmlinux.lds.S Mon, 20 Nov 2000 18:27:00 +1100 kaos (linux-2.4/b/c/8_vmlinux.ld 1.3.1.1.3.1 644)
+++ 0-test11.7(w)/arch/ia64/vmlinux.lds.S Tue, 21 Nov 2000 14:36:37 +1100 kaos (linux-2.4/b/c/8_vmlinux.ld 1.3.1.1.3.1 644)
@@ -65,9 +65,11 @@ SECTIONS
 
   /* Unwind table */
+  . = ALIGN(16);
   ia64_unw_start = .;
   .IA_64.unwind : AT(ADDR(.IA_64.unwind) - PAGE_OFFSET)
 	{ *(.IA_64.unwind) }
   ia64_unw_end = .;
+  . = ALIGN(16);
   .IA_64.unwind_info : AT(ADDR(.IA_64.unwind_info) - PAGE_OFFSET)
 	{ *(.IA_64.unwind_info) }



  reply	other threads:[~2000-11-21  5:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-11-18  5:34 [Linux-ia64] 001117 toolchain release Jim Wilson
2000-11-21  5:47 ` Keith Owens [this message]
2000-11-22  2:18 ` Jim Wilson
2000-11-22  2:33 ` Keith Owens

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-linux-ia64-105590678205755@msgid-missing \
    --to=kaos@ocs.com.au \
    --cc=linux-ia64@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox