Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: "Zack Weinberg" <zackw@Stanford.EDU>
To: David Edelsohn <dje@watson.ibm.com>
Cc: Matthew Conway <matt_conway@i2.com>,
	gcc@gcc.gnu.org, gcc-patches@gcc.gnu.org, gdb@sources.redhat.com
Subject: Re: Limited success with 3.0 branch on AIX
Date: Wed, 02 May 2001 23:25:00 -0000	[thread overview]
Message-ID: <20010502232459.N8246@stanford.edu> (raw)
In-Reply-To: <200104302116.RAA23290@makai.watson.ibm.com>

On Mon, Apr 30, 2001 at 05:16:49PM -0400, David Edelsohn wrote:
> >>>>> Matthew Conway writes:
> 
> Matthew> "ar -rc libFooBar.a Foo.o Bar.o"
> Matthew> "BFD: Foo.o: Unrecognized storage class 60 for *ABS* symbol `gcc2_compiled.'"
> Matthew> "BFD: Bar.o: Unrecognized storage class 60 for *ABS* symbol `gcc2_compiled.'"
> 
> Matthew> What does it mean? Can I safely ignore it?  Should I get the latest
> Matthew> binutils snapshot?  If I do get the latest binutils, have the problems
> Matthew> that forced me to use the gnupro assembler been fixed yet?  Thanks,
> 
> 	Zack's STABS_GCC_MARKER change still is not fully correct for AIX,
> despite his attempt at DBX_OUTPUT_GCC_MARKER in xcoffout.h:
> 
> /* .stabx has the type in a different place.  */
> #define DBX_OUTPUT_GCC_MARKER(FILE) \
>   fprintf ((FILE), "%s\"%s\",0,%d,0\n", ASM_STABS_OP, STABS_GCC_MARKER, N_OPT)
> 
> This directly emits a stabs type (N_OPT) in the AIX .stabx directive when
> all stabs are suppose to be converted to AIX storage classes.

Sorry.  This was not clear from the code.

...
> 	I do not see anything in the AIX equivalent to N_OPT -- no comment
> storage class.  Would using N_GSYM (AIX's C_GSYM) be appropriate?  It
> seems to be a stab for which only the name is significant, not the value,
> which matches the use of gcc2_compiled.

The question is whether gdb on AIX will notice the marker in a C_GSYM
.stabx directive; also whether the native debugger will choke on it.
I've cc:ed the gdb folks for comment.  Leaving your patch quoted so
they can look at it.

zw

> 	Does anyone see a problem with the following patch?  I am not
> enough of an expert about DBX Stabs to know the significance of this
> choice of stab type.
> 
> 
> 	* xcoffout.h (DBX_OUTPUT_GCC_MARKER): Use N_GSYM, not N_OPT.
> 
> Index: xcoffout.h
> ===================================================================
> RCS file: /cvs/gcc/egcs/gcc/xcoffout.h,v
> retrieving revision 1.10.4.1
> diff -c -p -r1.10.4.1 xcoffout.h
> *** xcoffout.h	2001/04/18 06:15:20	1.10.4.1
> --- xcoffout.h	2001/04/30 21:11:18
> *************** extern const char *xcoff_lastfile;
> *** 174,180 ****
>   
>   /* .stabx has the type in a different place.  */
>   #define DBX_OUTPUT_GCC_MARKER(FILE) \
> !   fprintf ((FILE), "%s\"%s\",0,%d,0\n", ASM_STABS_OP, STABS_GCC_MARKER, N_OPT)
>   
>   /* Do not break .stabs pseudos into continuations.  */
>   #define DBX_CONTIN_LENGTH 0
> --- 174,181 ----
>   
>   /* .stabx has the type in a different place.  */
>   #define DBX_OUTPUT_GCC_MARKER(FILE) \
> !   fprintf ((FILE), "%s\"%s\",0,%d,0\n", ASM_STABS_OP, STABS_GCC_MARKER, \
> ! 	   stab_to_sclass (N_GSYM))
>   
>   /* Do not break .stabs pseudos into continuations.  */
>   #define DBX_CONTIN_LENGTH 0
> 
> 
> David


       reply	other threads:[~2001-05-02 23:25 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <200104302116.RAA23290@makai.watson.ibm.com>
2001-05-02 23:25 ` Zack Weinberg [this message]
2001-05-03  1:42   ` Kevin Buettner
2001-05-15 15:27     ` Elena Zannoni
2001-05-15 15:31       ` David Edelsohn
2001-05-15 16:19         ` Elena Zannoni
2001-05-16 10:46           ` David Edelsohn
2001-05-16 11:15           ` David Edelsohn
2001-05-16 12:24             ` Elena Zannoni
     [not found] <15106.54023.177141.275660@kwikemart.cygnus.com>
2001-05-16 12:37 ` David Edelsohn
2001-05-16 13:07 ` David Edelsohn
2001-05-16 13:51   ` Kevin Buettner
2001-05-16 14:06     ` Stan Shebs
2001-05-16 14:10       ` David Edelsohn
2001-05-16 14:32     ` Elena Zannoni
2001-05-16 21:29   ` Elena Zannoni
2001-05-17 15:27     ` David Edelsohn
     [not found] <OF70310855.A41D4A39-ON86256A39.00616113@i2.com>
2001-05-01 10:13 ` David Edelsohn
2001-05-01 13:02   ` Daniel Berlin
2001-05-01 13:22     ` David Edelsohn
2001-05-01 15:40       ` Kevin Buettner
2001-05-01 15:44         ` David Edelsohn
2001-05-01 16:21   ` Kevin Buettner
2001-05-01 19:15     ` David Edelsohn

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=20010502232459.N8246@stanford.edu \
    --to=zackw@stanford.edu \
    --cc=dje@watson.ibm.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=gcc@gcc.gnu.org \
    --cc=gdb@sources.redhat.com \
    --cc=matt_conway@i2.com \
    /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