public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/24441]  New: [4.1 regression] ICE's when building the ecj compiler 3.1.1
@ 2005-10-19 10:30 debian-gcc at lists dot debian dot org
  2005-10-30 23:22 ` [Bug java/24441] " pinskia at gcc dot gnu dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2005-10-19 10:30 UTC (permalink / raw)
  To: java-prs

trying to bootstrap ecj using gcj-4.1, without having ant available for
bootstrap purposes:

for f in $(find build/bin -name '*.java'); do \
    echo $f; \
    gcj-4.1 -d build/bin -C -g \
        -Ibuild/bin \
        $f; \
done

fails to build about 20 classes, each segfaulting with:

build/bin/org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration.java:440:
internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

the line number references the line after EOF (i.e.
AbstractMethodDeclaration.java has 439 lines)

ignoring the errors in the first loop, and then rerunning the loop without
removing already built class files, the compilation succeeds for all files.


-- 
           Summary: [4.1 regression] ICE's when building the ecj compiler
                    3.1.1
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: debian-gcc at lists dot debian dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
@ 2005-10-30 23:22 ` pinskia at gcc dot gnu dot org
  2005-11-03 14:25 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-30 23:22 UTC (permalink / raw)
  To: java-prs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P5
   Target Milestone|---                         |4.1.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
  2005-10-30 23:22 ` [Bug java/24441] " pinskia at gcc dot gnu dot org
@ 2005-11-03 14:25 ` pinskia at gcc dot gnu dot org
  2005-11-06 15:32 ` bero at arklinux dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-03 14:25 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from pinskia at gcc dot gnu dot org  2005-11-03 14:25 -------
*** Bug 24652 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bero at arklinux dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
  2005-10-30 23:22 ` [Bug java/24441] " pinskia at gcc dot gnu dot org
  2005-11-03 14:25 ` pinskia at gcc dot gnu dot org
@ 2005-11-06 15:32 ` bero at arklinux dot org
  2005-12-12 15:07 ` [Bug java/24441] [4.1/4.2 " overholt at redhat dot com
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: bero at arklinux dot org @ 2005-11-06 15:32 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from bero at arklinux dot org  2005-11-06 15:32 -------
An alternative way of building that doesn't trigger this error:

cd build/bin
find -name '*.java' >filelist
gcj -C @filelist

That compiles all classes without complaining, but I suspect it of generating
broken code (will open a new bug for that)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (2 preceding siblings ...)
  2005-11-06 15:32 ` bero at arklinux dot org
@ 2005-12-12 15:07 ` overholt at redhat dot com
  2005-12-12 15:58 ` aph at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: overholt at redhat dot com @ 2005-12-12 15:07 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from overholt at redhat dot com  2005-12-12 15:07 -------
I am experiencing this now as well.


-- 

overholt at redhat dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |overholt at redhat dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (3 preceding siblings ...)
  2005-12-12 15:07 ` [Bug java/24441] [4.1/4.2 " overholt at redhat dot com
@ 2005-12-12 15:58 ` aph at gcc dot gnu dot org
  2005-12-12 16:10 ` overholt at redhat dot com
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: aph at gcc dot gnu dot org @ 2005-12-12 15:58 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from aph at gcc dot gnu dot org  2005-12-12 15:58 -------
Please try the patch at
http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00861.html.

Let me know if it doesn't work.


-- 

aph at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aph at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (4 preceding siblings ...)
  2005-12-12 15:58 ` aph at gcc dot gnu dot org
@ 2005-12-12 16:10 ` overholt at redhat dot com
  2005-12-12 16:38 ` aph at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: overholt at redhat dot com @ 2005-12-12 16:10 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from overholt at redhat dot com  2005-12-12 16:09 -------
(In reply to comment #3)
> I am experiencing this now as well.

I should mention that I'm seeing this on x86_64 but not on i386.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (5 preceding siblings ...)
  2005-12-12 16:10 ` overholt at redhat dot com
@ 2005-12-12 16:38 ` aph at gcc dot gnu dot org
  2005-12-12 19:05 ` bero at arklinux dot org
  2006-01-06 19:39 ` tromey at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: aph at gcc dot gnu dot org @ 2005-12-12 16:38 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from aph at gcc dot gnu dot org  2005-12-12 16:38 -------
I just tried it with the patch at
http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00861.html.

Works for me.


-- 

aph at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (6 preceding siblings ...)
  2005-12-12 16:38 ` aph at gcc dot gnu dot org
@ 2005-12-12 19:05 ` bero at arklinux dot org
  2006-01-06 19:39 ` tromey at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: bero at arklinux dot org @ 2005-12-12 19:05 UTC (permalink / raw)
  To: java-prs



------- Comment #7 from bero at arklinux dot org  2005-12-12 19:05 -------
Works for me too (4.1 branch SVN 108424 w/ the referenced patch, x86)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

* [Bug java/24441] [4.1/4.2 regression] ICE's when building the ecj compiler 3.1.1
  2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
                   ` (7 preceding siblings ...)
  2005-12-12 19:05 ` bero at arklinux dot org
@ 2006-01-06 19:39 ` tromey at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-01-06 19:39 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from tromey at gcc dot gnu dot org  2006-01-06 19:39 -------
The fix was checked in a while ago.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24441


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

end of thread, other threads:[~2006-01-06 19:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-19 10:30 [Bug java/24441] New: [4.1 regression] ICE's when building the ecj compiler 3.1.1 debian-gcc at lists dot debian dot org
2005-10-30 23:22 ` [Bug java/24441] " pinskia at gcc dot gnu dot org
2005-11-03 14:25 ` pinskia at gcc dot gnu dot org
2005-11-06 15:32 ` bero at arklinux dot org
2005-12-12 15:07 ` [Bug java/24441] [4.1/4.2 " overholt at redhat dot com
2005-12-12 15:58 ` aph at gcc dot gnu dot org
2005-12-12 16:10 ` overholt at redhat dot com
2005-12-12 16:38 ` aph at gcc dot gnu dot org
2005-12-12 19:05 ` bero at arklinux dot org
2006-01-06 19:39 ` tromey at gcc dot gnu dot org

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