public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
From: Martin Rakhmanov <rakhmanov.martin@gmail.com>
To: Alon Bar-Lev <alon.barlev@gmail.com>
Cc: insight@sourceware.org
Subject: Re: gdb/gdbtk/generic/gdbtk-stack.c - fail due to strict aliasing
Date: Sun, 26 Oct 2008 17:15:00 -0000	[thread overview]
Message-ID: <4904A54C.5060501@gmail.com> (raw)
In-Reply-To: <200810260107.31955.alon.barlev@gmail.com>

This allows to compile currently available snapshot 
(ftp://sourceware.org/pub/insight/snapshots/current/insight-weekly-6.8.50-20081021-tar.bz2) 
but again does not fix problem with running insight on Fedora 9: the 
snapshot ships with old tcl/tk versions and uses them.

Thanks
Martin

Alon Bar-Lev wrote:
> Hello,
> 
> Reported as binutils bug#6986 [1]
> 
> arguments = *(int*) &clientData;
> 
> Gets strict aliasing warning that escalate to error and fails build.
> 
> Attached a simple temp fix against head.
> 
> But the apparently the original has some issue too.
> 
> Regards,
> Alon Bar-Lev.
> 
> ------- Additional Comment #2 From Andreas Schwab 2008-10-25 22:53   ------- 
> Neither gdb nor gdbtk are part of binutils.  And the patch is as broken as the 
> original code, it still fails on big-endian 64-bit architectures.  Please 
> report that to the insight mailinglist.
> 
> [1] http://sourceware.org/bugzilla/show_bug.cgi?id=6986
> 
> ---
> 
> Index: gdb/gdbtk/generic/gdbtk-stack.c
> ===================================================================
> RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-stack.c,v
> retrieving revision 1.29
> diff -u -B -r1.29 gdbtk-stack.c
> --- gdb/gdbtk/generic/gdbtk-stack.c	2 Sep 2008 17:29:23 -0000	1.29
> +++ gdb/gdbtk/generic/gdbtk-stack.c	25 Oct 2008 22:28:12 -0000
> @@ -285,7 +285,10 @@
>        return TCL_ERROR;
>      }
>  
> -  arguments = *(int*) &clientData;
> +{
> +  void *p = &clientData;
> +  arguments = *(int*) p;
> +}
>  
>    /* Initialize the result pointer to an empty list. */
>  
> 

  reply	other threads:[~2008-10-26 17:15 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-25 23:08 Alon Bar-Lev
2008-10-26 17:15 ` Martin Rakhmanov [this message]
2008-10-27 18:43 ` Keith Seitz
2008-10-30 23:11   ` Gene Smith

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=4904A54C.5060501@gmail.com \
    --to=rakhmanov.martin@gmail.com \
    --cc=alon.barlev@gmail.com \
    --cc=insight@sourceware.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).