[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-16 Thread dje at gcc dot gnu dot org
--- 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=gccview=revrev=141170 Log: gcc/ PR target/35483 * Makefile.in (coverage.o):

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-15 Thread dje at gcc dot gnu dot org
--- 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=gccview=revrev=141134 Log: PR target/35483 Based on patches by Laurent Vivier.

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-15 Thread dje at gcc dot gnu dot org
--- 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

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-14 Thread dje at gcc dot gnu dot org
--- 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=16493action=view) patch to convert dollar signs to underscores New patch. This patch intercepts the dollar signs at a lower level and

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-02 Thread dje at gcc dot gnu dot org
--- 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. --

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-10-02 Thread dje at gcc dot gnu dot org
--- 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;

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-07-11 Thread dje at gcc dot gnu dot org
--- 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

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-05-04 Thread pinskia at gcc dot gnu dot org
--- 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

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-03-11 Thread Laurent dot Vivier at bull dot net
--- 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=15298action=view) new version of previous patch (aix-asm.patch) correctly export symbols Add compatibility with libtool

[Bug c++/35483] GCC on AIX doesn't support dollar in symbols name.

2008-03-06 Thread Laurent dot Vivier at bull dot net
--- 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=15273action=view) This patch learns to gcc how to use IBM as with symbols with dollar inside. This patch removes '$' from