public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: Is gcj dead?
       [not found] <4AD846B0.2080102@rawbw.com>
@ 2009-10-16 11:39 ` Dave Korn
  2009-10-16 19:30   ` Gerald Pfeifer
  2009-10-19 12:07   ` Andrew Haley
       [not found] ` <4ADAE903.2010009@redhat.com>
  1 sibling, 2 replies; 5+ messages in thread
From: Dave Korn @ 2009-10-16 11:39 UTC (permalink / raw)
  To: yuri; +Cc: GCC Patches, Java Patches

[-- Attachment #1: Type: text/plain, Size: 557 bytes --]

Yuri wrote:
> Last news in http://gcc.gnu.org/java/ are dated March 2007.
> Also I submitted few PRs a month ago and there is no response at all.
> 
> Yuri

  Yuri makes a good point.  Here's an update.

htdocs/java/ChangeLog:

	* index.html: Mention recent windows updates.

  Ok?

    cheers,
      DaveK


(Yuri, you might get a bit more attention if you post to the java@ list rather
than the main one.  GCJ is by no means dead, but it's understaffed as
open-source projects often are, so sometimes it can be a while before anyone
is free to respond.)


[-- Attachment #2: java-news.diff --]
[-- Type: text/x-c, Size: 811 bytes --]

Index: htdocs/java/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/java/index.html,v
retrieving revision 1.173
diff -p -u -r1.173 index.html
--- htdocs/java/index.html	30 Mar 2007 20:56:50 -0000	1.173
+++ htdocs/java/index.html	16 Oct 2009 11:26:24 -0000
@@ -37,6 +37,11 @@ href="http://www.gnu.org/software/gdb/">
 <!-- News entries start here -->
 
 <dl class="news">
+<dt>September 22, 2009</dt>
+<dd>GCJ support on Windows (Cygwin and MinGW) targets has been enhanced
+with a number of bugfixes, and the option to build libgcj in DLL form
+for dynamic runtime linking.</dd>
+
 <dt>March 30, 2007</dt>
 <dd>Keith Seitz and Kyle Galloway have made considerable progress on 
 GCJ's implementation of the JDWP.  It is now possible to use eclipse

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is gcj dead?
  2009-10-16 11:39 ` Is gcj dead? Dave Korn
@ 2009-10-16 19:30   ` Gerald Pfeifer
  2009-10-16 19:55     ` Dave Korn
  2009-10-19 12:07   ` Andrew Haley
  1 sibling, 1 reply; 5+ messages in thread
From: Gerald Pfeifer @ 2009-10-16 19:30 UTC (permalink / raw)
  To: Dave Korn; +Cc: yuri, GCC Patches, Java Patches

On Fri, 16 Oct 2009, Dave Korn wrote:
>   Yuri makes a good point.  Here's an update.
> 
> htdocs/java/ChangeLog:
> 
> 	* index.html: Mention recent windows updates.
> 
>   Ok?

I am wondering whether that shouldn't go to our main page, and a
reference from the older java/news to that one added?  It's not
that we have too many news items on our main page, either.

Gerald

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is gcj dead?
  2009-10-16 19:30   ` Gerald Pfeifer
@ 2009-10-16 19:55     ` Dave Korn
  0 siblings, 0 replies; 5+ messages in thread
From: Dave Korn @ 2009-10-16 19:55 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: Dave Korn, yuri, GCC Patches, Java Patches

Gerald Pfeifer wrote:
> On Fri, 16 Oct 2009, Dave Korn wrote:
>>   Yuri makes a good point.  Here's an update.
>>
>> htdocs/java/ChangeLog:
>>
>> 	* index.html: Mention recent windows updates.
>>
>>   Ok?
> 
> I am wondering whether that shouldn't go to our main page, and a
> reference from the older java/news to that one added?  It's not
> that we have too many news items on our main page, either.

  Well, it's not as substantial a change as the kind of things listed there.
I plan to submit a longer entry for 4.5/changes.html, later in stage 3.

    cheers,
      DaveK

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is gcj dead?
  2009-10-16 11:39 ` Is gcj dead? Dave Korn
  2009-10-16 19:30   ` Gerald Pfeifer
@ 2009-10-19 12:07   ` Andrew Haley
  1 sibling, 0 replies; 5+ messages in thread
From: Andrew Haley @ 2009-10-19 12:07 UTC (permalink / raw)
  To: Dave Korn; +Cc: yuri, GCC Patches, Java Patches

Dave Korn wrote:
> Yuri wrote:
>> Last news in http://gcc.gnu.org/java/ are dated March 2007.
>> Also I submitted few PRs a month ago and there is no response at all.
>>
>> Yuri
> 
>   Yuri makes a good point.  Here's an update.
> 
> htdocs/java/ChangeLog:
> 
> 	* index.html: Mention recent windows updates.
> 
>   Ok?

Sure.

Andrew.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* PR java/28474: mangle_name.c mangles names unecessarily
       [not found]                         ` <alpine.DEB.1.10.0910200858290.24575@jdpc.ecovate.com>
@ 2009-10-20 16:02                           ` Andrew Haley
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Haley @ 2009-10-20 16:02 UTC (permalink / raw)
  To: GCC Patches; +Cc: Java Patches

Committed on behalf of Joel.

Andrew.


2009-10-20  Joel Dice <dicej@mailsnare.net>

        PR java/28474
        * mangle_name.c (append_unicode_mangled_name): Fix mangling
        of names with multiple underscores and "U".
        (unicode_mangling_length): Likewise.

Index: java/mangle_name.c
===================================================================
--- java/mangle_name.c  (revision 153017)
+++ java/mangle_name.c  (working copy)
@@ -266,7 +266,10 @@ append_unicode_mangled_name (const char
       int ch = UTF8_GET(ptr, limit);

       if ((ISALNUM (ch) && ch != 'U') || ch == '$')
-       obstack_1grow (mangle_obstack, ch);
+        {
+         obstack_1grow (mangle_obstack, ch);
+          uuU = 0;
+        }
       /* Everything else needs encoding */
       else
        {
@@ -321,7 +324,10 @@ unicode_mangling_length (const char *nam
       if (ch < 0)
        error ("internal error - invalid Utf8 name");
       if ((ISALNUM (ch) && ch != 'U') || ch == '$')
-       num_chars++;
+       {
+         num_chars++;
+         uuU = 0;
+       }
       /* Everything else needs encoding */
       else
        {

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-10-20 16:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <4AD846B0.2080102@rawbw.com>
2009-10-16 11:39 ` Is gcj dead? Dave Korn
2009-10-16 19:30   ` Gerald Pfeifer
2009-10-16 19:55     ` Dave Korn
2009-10-19 12:07   ` Andrew Haley
     [not found] ` <4ADAE903.2010009@redhat.com>
     [not found]   ` <bf0c3b3f0910190542v19c99f45yb2d5f97127de31f3@mail.gmail.com>
     [not found]     ` <4ADC6302.9010809@redhat.com>
     [not found]       ` <bf0c3b3f0910190606q26681634i13fd2d2273149aa3@mail.gmail.com>
     [not found]         ` <4ADC6531.5000504@redhat.com>
     [not found]           ` <bf0c3b3f0910190624h5b5ee0ao1b4796668aee11a8@mail.gmail.com>
     [not found]             ` <4ADC8DC5.3000204@redhat.com>
     [not found]               ` <alpine.DEB.1.10.0910191355210.13499@jdpc.ecovate.com>
     [not found]                 ` <4ADD8263.1070105@redhat.com>
     [not found]                   ` <alpine.DEB.1.10.0910200750090.13499@jdpc.ecovate.com>
     [not found]                     ` <4ADDC667.2050401@redhat.com>
     [not found]                       ` <alpine.DEB.1.10.0910200835001.24575@jdpc.ecovate.com>
     [not found]                         ` <alpine.DEB.1.10.0910200858290.24575@jdpc.ecovate.com>
2009-10-20 16:02                           ` PR java/28474: mangle_name.c mangles names unecessarily Andrew Haley

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).