From: "H . J . Lu" <hjl@lucon.org>
To: Jakub Jelinek <jakub@redhat.com>,
echristo@redhat.com, binutils@sources.redhat.com,
GDB <gdb@sources.redhat.com>,
gcc-patches@gcc.gnu.org
Subject: Re: PATCH: Use stabs for Linux/mips (Re: binutils is broken on ELF/MIPS)
Date: Mon, 03 Jun 2002 16:51:00 -0000 [thread overview]
Message-ID: <20020603165101.A2466@lucon.org> (raw)
In-Reply-To: <20020603234058.GA2262@branoic.them.org>; from drow@mvista.com on Mon, Jun 03, 2002 at 07:40:58PM -0400
On Mon, Jun 03, 2002 at 07:40:58PM -0400, Daniel Jacobowitz wrote:
> >
> > It turned out gas doesn't support dwarf debug info for Linux/mipsel
> > at all. ".file" and ".loc" don't do much for dwarf. Since no much
> > has been done for dwarf on Linux/mipsel, I am submitting this
> > patch to use stabs instead of DWARF on Linux/mipsel.
>
> Please don't. I'd rather turn off COFF debugging for Linux/mipsel,
> which I suggested the last time this came up (about a year ago).
COFF is OFF in binutils for Linux/mips. I even checked in a gcc patch
to disable COFF for Linux/mips.
> There's no good reason it won't work if we hook the DWARF-2 handlers up
> instead of the COFF ones - probably should tie that to MIPS_STAB_ELF.
>
I tried a dirty, quick change enclosed. I still can't use gdb 5.2 to
debug gcc 3.1.1 on Linux/mipsel. I don't think it is a good idea to
make gcc 3.1.1 generate unusable debug info by default..
H.J.
----
--- gas/config/tc-mips.c.dwarf Sat May 25 17:39:36 2002
+++ gas/config/tc-mips.c Mon Jun 3 16:15:46 2002
@@ -80,6 +80,7 @@ static int mips_output_flavor () { retur
#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
static char *mips_regmask_frag;
+#include "dwarf2dbg.h"
#endif
#define AT 1
@@ -885,7 +886,11 @@ static const pseudo_typeS mips_nonecoff_
{"file", s_file, 0},
{"fmask", s_mips_mask, 'F'},
{"frame", s_mips_frame, 0},
+#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
+ {"loc", dwarf2_directive_loc, 0},
+#else
{"loc", s_ignore, 0},
+#endif
{"mask", s_mips_mask, 'R'},
{"verstamp", s_ignore, 0},
{ NULL, NULL, 0 },
@@ -13041,8 +13046,24 @@ static void
s_file (x)
int x ATTRIBUTE_UNUSED;
{
+#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
+ static int first_file_directive;
+
+ /* Save the first .file directive we see, so that we can change our
+ minds about whether dwarf debugging should or shouldn't be
+ enabled. */
+ if (! first_file_directive)
+ {
+ first_file_directive = 1;
+ get_number ();
+ s_app_file (0);
+ }
+ else
+ dwarf2_directive_file (0);
+#else
get_number ();
s_app_file (0);
+#endif
}
/* The .end directive. */
next prev parent reply other threads:[~2002-06-03 23:51 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-06-02 14:36 Does gdb 5.2 support gcc 3.1.1 on Linux/mips? H . J . Lu
2002-06-02 18:00 ` Daniel Jacobowitz
2002-06-02 19:43 ` H . J . Lu
2002-06-02 22:01 ` Daniel Jacobowitz
2002-06-02 22:05 ` H . J . Lu
2002-06-02 22:09 ` Daniel Jacobowitz
2002-06-02 22:42 ` H . J . Lu
2002-06-02 23:03 ` H . J . Lu
2002-06-02 23:10 ` H . J . Lu
2002-06-03 4:22 ` Daniel Berlin
2002-06-03 7:18 ` Daniel Jacobowitz
2002-06-03 8:55 ` DW_CFA_def_cfa_offset_sf bug? (Re: Does gdb 5.2 support gcc 3.1.1 on Linux/mips?) H . J . Lu
[not found] ` <20020603092959.A27426@lucon.org>
[not found] ` <20020603104131.A28590@lucon.org>
[not found] ` <20020603115703.A29881@lucon.org>
[not found] ` <20020604003246.C20867@sunsite.ms.mff.cuni.cz>
[not found] ` <20020603153716.A1294@lucon.org>
2002-06-03 16:25 ` PATCH: Use stabs for Linux/mips (Re: binutils is broken on ELF/MIPS) H . J . Lu
2002-06-03 16:41 ` Daniel Jacobowitz
2002-06-03 16:51 ` H . J . Lu [this message]
2002-06-03 17:43 ` Richard Henderson
2002-06-03 19:52 ` Doug Evans
2002-06-03 19:54 ` H . J . Lu
2002-06-03 20:36 ` Richard Henderson
2002-06-03 17:50 ` Eric Christopher
2002-06-03 18:03 ` H . J . Lu
2002-06-03 18:29 ` Eric Christopher
2002-06-03 19:47 ` H . J . Lu
2002-06-03 18:40 ` Daniel Jacobowitz
2002-06-03 19:51 ` H . J . Lu
2002-06-03 20:23 ` Daniel Jacobowitz
2002-06-03 20:28 ` H . J . Lu
2002-06-04 13:18 ` Eric Christopher
2002-06-02 23:30 ` Does gdb 5.2 support gcc 3.1.1 on Linux/mips? Jakub Jelinek
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=20020603165101.A2466@lucon.org \
--to=hjl@lucon.org \
--cc=binutils@sources.redhat.com \
--cc=echristo@redhat.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=gdb@sources.redhat.com \
--cc=jakub@redhat.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