public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
From: Jim Wilson <wilson@specifixinc.com>
To: linux-ia64@vger.kernel.org
Subject: RE: gcc problems
Date: Sat, 07 Feb 2004 02:05:15 +0000	[thread overview]
Message-ID: <1076119515.1051.169.camel@leaf.tuliptree.org> (raw)
In-Reply-To: <20040206000058.7e928d80.akpm@osdl.org>

On Fri, 2004-02-06 at 09:34, Wichmann, Mats D wrote:
> If it's a question of glibc 2.2.x vs. 2.3.x, there are
> ia64 Linux distributions based on glibc 2.2 that work
> pretty well - SUSE's SLES8, for example.

gcc-3.x will have some problems when used on a glibc-2.2.x system, but
most of them are obscure, and probably none of them apply to building
kernels, because the kernel doesn't link in glibc.

It is reasonable that gcc should be buildable though.  I believe the
following patch solves this problem.  I just ifdefed out the code for
old glibc versions.  I see no point in trying to make this work, because
unwinding will fail (for user apps) for other reasons if you are using
glibc-2.2.4.

I don't have access to a glibc-2.2.4 system for testing.  I can't use
such old systems for gcc 3.x development.  It works OK for glibc 2.3,
where it has no effect.  If someone tells me that this does work, then I
can check it into the FSF gcc sources.

2004-02-06  James E Wilson  <wilson@specifixinc.com>

	* config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Only define for
	glibc 2.3 or better.

Index: linux.h
=================================RCS file: /cvs/gcc/gcc/gcc/config/ia64/linux.h,v
retrieving revision 1.27
diff -p -r1.27 linux.h
*** linux.h	19 Dec 2003 14:00:51 -0000	1.27
--- linux.h	7 Feb 2004 01:50:46 -0000
*************** do {						\
*** 58,63 ****
--- 58,68 ----
  /* Do code reading to identify a signal frame, and set the frame
     state data appropriately.  See unwind-dw2.c for the structs.  */
  
+ /* This works only for glibc-2.3 and later, because sigcontext is different
+    in glibc-2.2.4.  */
+ 
+ #if __GLIBC__ > 2 || (__GLIBC__ = 2 && __GLIBC_MINOR__ >= 3)
+ 
  #ifdef IN_LIBGCC2
  #include <signal.h>
  #include <sys/ucontext.h>
*************** do {						\
*** 207,209 ****
--- 212,215 ----
      }
  
  #endif /* IN_LIBGCC2 */
+ #endif /* glibc-2.3 or better */
-- 
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com


  parent reply	other threads:[~2004-02-07  2:05 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-06  8:00 gcc problems Andrew Morton
2004-02-06  8:37 ` Ian Wienand
2004-02-06  8:43 ` Andrew Morton
2004-02-06  9:49 ` Jim Wilson
2004-02-06 11:46 ` Andreas Schwab
2004-02-06 16:30 ` Andrew Morton
2004-02-06 16:50 ` Dan Kegel
2004-02-06 17:34 ` Wichmann, Mats D
2004-02-07  2:05 ` Jim Wilson [this message]
2004-02-07  5:49 ` Andrew Morton
2004-02-10  7:37 ` David Mosberger

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=1076119515.1051.169.camel@leaf.tuliptree.org \
    --to=wilson@specifixinc.com \
    --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