--- Comment #10 from dje at gcc dot gnu dot org 2008-10-16 11:58 ---
Subject: Bug 35483
Author: dje
Date: Thu Oct 16 11:57:26 2008
New Revision: 141170
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141170
Log:
gcc/
PR target/35483
* Makefile.in (coverage.o): Dep
--- Comment #9 from dje at gcc dot gnu dot org 2008-10-15 16:55 ---
Patch committed.
--
dje at gcc dot gnu dot org changed:
What|Removed |Added
Status|NEW
--- Comment #8 from dje at gcc dot gnu dot org 2008-10-15 12:25 ---
Subject: Bug 35483
Author: dje
Date: Wed Oct 15 12:23:55 2008
New Revision: 141134
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141134
Log:
PR target/35483
Based on patches by Laurent Vivier.
--- Comment #7 from dje at gcc dot gnu dot org 2008-10-14 17:06 ---
Created an attachment (id=16493)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16493&action=view)
patch to convert dollar signs to underscores
New patch. This patch intercepts the dollar signs at a lower level an
--- Comment #6 from dje at gcc dot gnu dot org 2008-10-02 21:30 ---
+ strip = (char *)ggc_alloc_string (name, len);
+
+ for (len = 0; name[len]; len++)
+if (name[len] == '$')
+ strip[len] = '_';
+else
+ strip[len] = name[len];
+ strip[len] = 0;
+
+ return strip;
It
--- Comment #5 from dje at gcc dot gnu dot org 2008-10-02 20:47 ---
This patch causes G++ to crash building some applications on AIX. Apparently a
version of G++ including this patch is being distributed and users are
reporting problems.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?
--- Comment #4 from dje at gcc dot gnu dot org 2008-07-11 21:54 ---
Yes, this will substitute "_" for "$", but most programs do not use dollar
signs in symbol names, except Java. GNU Java is not supported on AIX, so
building libjava does not accomplish much.
This is a large patch and r
--- Comment #3 from pinskia at gcc dot gnu dot org 2008-05-05 05:54 ---
I don't think this is a real bug. Also patches should be off of the trunk and
submitted to [EMAIL PROTECTED]
--
pinskia at gcc dot gnu dot org changed:
What|Removed |Added
---
--- Comment #2 from Laurent dot Vivier at bull dot net 2008-03-11 15:28
---
Created an attachment (id=15298)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15298&action=view)
new version of previous patch (aix-asm.patch)
correctly export symbols
Add compatibility with libtool proc
--- Comment #1 from Laurent dot Vivier at bull dot net 2008-03-06 15:14
---
Created an attachment (id=15273)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15273&action=view)
This patch learns to gcc how to use IBM as with symbols with dollar inside.
This patch removes '$' from sy
10 matches
Mail list logo