From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9427 invoked by alias); 24 Jun 2013 17:26:35 -0000 Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org Received: (qmail 9418 invoked by uid 89); 24 Jun 2013 17:26:35 -0000 X-Spam-SWARE-Status: No, score=-7.8 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS,TW_GC autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 24 Jun 2013 17:26:34 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r5OHQXQ2006985 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 24 Jun 2013 13:26:33 -0400 Received: from zebedee.pink (ovpn-113-106.phx2.redhat.com [10.3.113.106]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r5OHQW00023949; Mon, 24 Jun 2013 13:26:32 -0400 Message-ID: <51C88147.8060508@redhat.com> Date: Mon, 24 Jun 2013 17:26:00 -0000 From: Andrew Haley User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130514 Thunderbird/17.0.6 MIME-Version: 1.0 To: Mike Hearn CC: GCC Java Subject: Re: Trouble building gcj 4.8.1 References: <51C87C22.9030201@redhat.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-06/txt/msg00012.txt.bz2 On 06/24/2013 06:17 PM, Mike Hearn wrote: >> It should have happened the last time there was a Classpath import. >> You should be able to see this in the revision history. > > Seems like it didn't always happen - compare: > > http://gcc.gnu.org/viewcvs/gcc/trunk/libjava/classpath/java/lang/?dir_pagestart=75 > http://gcc.gnu.org/viewcvs/gcc/trunk/libjava/classpath/lib/java/lang/String.class?view=log > > The last time String.java was touched was 6 months ago, but the class > file was last updated 15 months ago. > > If I could make --enable-java-maintainer-mode work then it wouldn't > matter, but maybe re-genning the class files and checking them in > would be a good idea, seeing as they're provided. OK, so let's try to find out why it doesn't work. You must have an executable called ecj1 in your path for use by the build. My ecj1 is: #!/bin/sh unset LD_LIBRARY_PATH gij -cp /home/aph/gcc/trunk/ecj.jar \ org.eclipse.jdt.internal.compiler.batch.GCCMain \ ${1+"$@"} Andrew.