From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexandre Petit-Bianco To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org Subject: Re: java/4360: libjava fails to compile on i686-pc-linux-gnu (AttributedString) Date: Fri, 21 Sep 2001 13:06:00 -0000 Message-id: <20010921200602.854.qmail@sourceware.cygnus.com> X-SW-Source: 2001-09/msg00444.html List-Id: The following reply was made to PR java/4360; it has been noted by GNATS. From: Alexandre Petit-Bianco To: "Georg Wild" Cc: Subject: Re: java/4360: libjava fails to compile on i686-pc-linux-gnu (AttributedString) Date: Fri, 21 Sep 2001 12:57:44 -0700 (PDT) Georg Wild writes: > Sorry because of the time I need to do this! Unfortunatelly I > deleted my gcc tree, but I've compiled it again; I'll attach a > partial log of the build! Thank you. Can you patch your compiler one more time with this and try the command you just mentionned: > /root/gcc/gcc/gcj -B/root/gcc/i686-pc-linux-gnu/libjava/ -B/root/gcc/gcc/ -- > encoding=UTF-8 -C -g -classpath /root/gcc/i686-pc-linux-gnu/libjava:. -d > /root/gcc/i686-pc-linux-gnu/libjava java/lang/ClassNotFoundException.java ./A Index: decl.c =================================================================== RCS file: /cvs/gcc/gcc/gcc/java/decl.c,v retrieving revision 1.108 diff -u -p -r1.108 decl.c --- decl.c 2001/08/24 17:24:02 1.108 +++ decl.c 2001/09/21 19:53:48 @@ -563,9 +563,11 @@ init_decl_processing () predef_filenames [4] = get_identifier ("java/lang/String.java"); predef_filenames [5] = get_identifier ("java/lang/Throwable.java"); predef_filenames [6] = get_identifier ("gnu/gcj/RawData.java"); - predef_filenames [7] = get_identifier ("java/lang/Exception"); - predef_filenames [8] = get_identifier ("java/lang/ClassNotFoundException"); - predef_filenames [9] = get_identifier ("java/lang/NoClassDefFoundError"); + predef_filenames [7] = get_identifier ("java/lang/Exception.java"); + predef_filenames [8] = + get_identifier ("java/lang/ClassNotFoundException.java"); + predef_filenames [9] = + get_identifier ("java/lang/NoClassDefFoundError.java"); methodtable_type = make_node (RECORD_TYPE); layout_type (methodtable_type);