From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27143 invoked by alias); 24 Jun 2013 20:36:12 -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 27131 invoked by uid 89); 24 Jun 2013 20:36:12 -0000 X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,TW_GC autolearn=ham version=3.3.1 Received: from youngberry.canonical.com (HELO youngberry.canonical.com) (91.189.89.112) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 24 Jun 2013 20:36:10 +0000 Received: from dslb-088-073-126-203.pools.arcor-ip.net ([88.73.126.203] helo=[192.168.42.222]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1UrDUc-0007RR-Iv; Mon, 24 Jun 2013 20:36:06 +0000 Message-ID: <51C8ADAD.1010808@ubuntu.com> Date: Mon, 24 Jun 2013 20:36:00 -0000 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510 Thunderbird/17.0.6 MIME-Version: 1.0 To: Andrew Haley CC: Mike Hearn , GCC Java Subject: Re: Trouble building gcj 4.8.1 References: <51C87C22.9030201@redhat.com> <51C88147.8060508@redhat.com> In-Reply-To: <51C88147.8060508@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-06/txt/msg00013.txt.bz2 Am 24.06.2013 19:26, schrieb Andrew Haley: > 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+"$@"} and make sure to use the ecj.jar provided on gcc.gnu.org. Matthias