public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/37893]  New: [4.4 Regression] ICE in java during bootstrap at revision 141303
@ 2008-10-22 21:00 dominiq at lps dot ens dot fr
  2008-10-22 22:57 ` [Bug java/37893] " doko at ubuntu dot com
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: dominiq at lps dot ens dot fr @ 2008-10-22 21:00 UTC (permalink / raw)
  To: java-prs

At revision 141303, bootstrap failed with

...
libtool: compile:  /opt/gcc/i686-darwin/gcc/gcj
-B/opt/gcc/i686-darwin/i686-apple-darwin9/x86_64/libjava/
-B/opt/gcc/i686-darwin/gcc/ -ffloat-store -fomit-frame-pointer -Usun
-fclasspath= -fbootclasspath=../../../../gcc-4.4-work/libjava/classpath/lib
--encoding=UTF-8 -Wno-deprecated -fbootstrap-classes -findirect-dispatch
-fno-indirect-classes
-fsource-filename=/opt/gcc/i686-darwin/i686-apple-darwin9/x86_64/libjava/classpath/tools/all-classes.lst
-g -O2 -m64 -MT classpath/tools/libgcj_tools_la-tools.lo -MD -MP -MF
classpath/tools/.deps/libgcj_tools_la-tools.Tpo -c classpath/tools/tools.zip 
-fno-common -o classpath/tools/.libs/libgcj_tools_la-tools.o
jc1: internal compiler error: in java_read_sourcefilenames, at
java/jcf-parse.c:192

Last successful bootstrap r141279.


-- 
           Summary: [4.4 Regression] ICE in java during bootstrap at
                    revision 141303
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dominiq at lps dot ens dot fr
 GCC build triplet: i686-apple-darwin9
  GCC host triplet: i686-apple-darwin9
GCC target triplet: i686-apple-darwin9


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
@ 2008-10-22 22:57 ` doko at ubuntu dot com
  2008-10-23  7:59 ` jakub at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: doko at ubuntu dot com @ 2008-10-22 22:57 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from doko at ubuntu dot com  2008-10-22 22:57 -------
can't see these with 141308: please could you recheck?


-- 


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
  2008-10-22 22:57 ` [Bug java/37893] " doko at ubuntu dot com
@ 2008-10-23  7:59 ` jakub at gcc dot gnu dot org
  2008-10-23  8:28 ` jakub at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-23  7:59 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from jakub at gcc dot gnu dot org  2008-10-23 07:59 -------
I can reproduce this too, on i686-linux, make -j48.
gcj is invoked with
-fsource-filename=/usr/src/gcc/obj19/i686-pc-linux-gnu/libjava/classpath/tools/all-classes.lst
but that file doesn't exist.
If you look at the changes Mathias committed yesterday, they are clearly buggy.
all-classes.lst is used always:
grep all-classes.lst libjava/Makefile*
libjava/Makefile.am:libgcj_tools_la_GCJFLAGS = $(AM_GCJFLAGS)
-findirect-dispatch -fno-indirect-classes 
-fsource-filename=$(here)/classpath/tools/all-classes.lst
libjava/Makefile.in:libgcj_tools_la_GCJFLAGS = $(AM_GCJFLAGS)
-findirect-dispatch -fno-indirect-classes 
-fsource-filename=$(here)/classpath/tools/all-classes.lst
but is only generated in --enable-libjava-maintainer-mode:
grep all-classes.lst libjava/classpath/tools/Makefile*
libjava/classpath/tools/Makefile.am:    cat classes.lst asm.lst vm-tools.lst >
all-classes.lst
libjava/classpath/tools/Makefile.am:    rm -rf $(TOOLS_ZIP) classes classes.lst
asm asm.lst all-classes.lst
libjava/classpath/tools/Makefile.in:@JAVA_MAINTAINER_MODE_TRUE@ cat classes.lst
asm.lst vm-tools.lst > all-classes.lst
libjava/classpath/tools/Makefile.in:    rm -rf $(TOOLS_ZIP) classes classes.lst
asm asm.lst all-classes.lst
Before that commit, it has been generated always.


-- 

jakub at gcc dot gnu dot org changed:

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


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
                   ` (2 preceding siblings ...)
  2008-10-23  8:28 ` jakub at gcc dot gnu dot org
@ 2008-10-23  8:28 ` jakub at gcc dot gnu dot org
  2008-10-23  9:24 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-23  8:28 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from jakub at gcc dot gnu dot org  2008-10-23 08:28 -------
Patch posted.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jakub at gcc dot gnu dot org
                   |dot org                     |
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2008-
                   |                            |10/msg00978.html
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-10-23 08:28:13
               date|                            |


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
  2008-10-22 22:57 ` [Bug java/37893] " doko at ubuntu dot com
  2008-10-23  7:59 ` jakub at gcc dot gnu dot org
@ 2008-10-23  8:28 ` jakub at gcc dot gnu dot org
  2008-10-23  8:28 ` jakub at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-23  8:28 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from jakub at gcc dot gnu dot org  2008-10-23 08:28 -------
*** Bug 37899 has been marked as a duplicate of this bug. ***


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hjl dot tools at gmail dot
                   |                            |com


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
                   ` (3 preceding siblings ...)
  2008-10-23  8:28 ` jakub at gcc dot gnu dot org
@ 2008-10-23  9:24 ` jakub at gcc dot gnu dot org
  2008-10-23  9:26 ` jakub at gcc dot gnu dot org
  2008-10-23 19:51 ` [Bug libgcj/37893] " pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-23  9:24 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from jakub at gcc dot gnu dot org  2008-10-23 09:24 -------
Subject: Bug 37893

Author: jakub
Date: Thu Oct 23 09:23:00 2008
New Revision: 141320

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141320
Log:
        PR java/37893
        * tools/Makefile.am (tools.zip): Generate *.lst files always, not
        just in JAVA_MAINTAINER_MODE.
        * tools/Makefile.in: Regenerated.

Modified:
    trunk/libjava/classpath/ChangeLog.gcj
    trunk/libjava/classpath/tools/Makefile.am
    trunk/libjava/classpath/tools/Makefile.in


-- 


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


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

* [Bug java/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
                   ` (4 preceding siblings ...)
  2008-10-23  9:24 ` jakub at gcc dot gnu dot org
@ 2008-10-23  9:26 ` jakub at gcc dot gnu dot org
  2008-10-23 19:51 ` [Bug libgcj/37893] " pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-23  9:26 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from jakub at gcc dot gnu dot org  2008-10-23 09:26 -------
Fixed.


-- 

jakub at gcc dot gnu dot org changed:

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


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


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

* [Bug libgcj/37893] [4.4 Regression] ICE in java during bootstrap at revision 141303
  2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
                   ` (5 preceding siblings ...)
  2008-10-23  9:26 ` jakub at gcc dot gnu dot org
@ 2008-10-23 19:51 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-10-23 19:51 UTC (permalink / raw)
  To: java-prs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|java                        |libgcj
           Keywords|                            |build
   Target Milestone|---                         |4.4.0


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


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

end of thread, other threads:[~2008-10-23 19:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-22 21:00 [Bug java/37893] New: [4.4 Regression] ICE in java during bootstrap at revision 141303 dominiq at lps dot ens dot fr
2008-10-22 22:57 ` [Bug java/37893] " doko at ubuntu dot com
2008-10-23  7:59 ` jakub at gcc dot gnu dot org
2008-10-23  8:28 ` jakub at gcc dot gnu dot org
2008-10-23  8:28 ` jakub at gcc dot gnu dot org
2008-10-23  9:24 ` jakub at gcc dot gnu dot org
2008-10-23  9:26 ` jakub at gcc dot gnu dot org
2008-10-23 19:51 ` [Bug libgcj/37893] " pinskia 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).