From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29957 invoked by alias); 31 Mar 2009 14:33:56 -0000 Received: (qmail 29891 invoked by uid 22791); 31 Mar 2009 14:33:54 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL,BAYES_50,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx2.redhat.com (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 31 Mar 2009 14:33:47 +0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n2VEXkYv005537; Tue, 31 Mar 2009 10:33:46 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n2VEXg5S007605; Tue, 31 Mar 2009 10:33:42 -0400 Received: from zebedee.pink (vpn-12-156.rdu.redhat.com [10.11.12.156]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n2VEXeHT003812; Tue, 31 Mar 2009 10:33:41 -0400 Message-ID: <49D229C2.8050408@redhat.com> Date: Tue, 31 Mar 2009 14:33:00 -0000 From: Andrew Haley User-Agent: Thunderbird 2.0.0.17 (X11/20081009) MIME-Version: 1.0 To: David Michel CC: java@gcc.gnu.org Subject: Re: Using the newest Classapth with gcj ? References: <49D11035.6090308@redhat.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2009-03/txt/msg00030.txt.bz2 David Michel wrote: > Thanks for this, this is really useful athough I get an error at the make stage: > > make[3]: Entering directory > `/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/gcc' > /home/micd/gcc-4_4-branch/missing flex -ogengtype-lex.c > /home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/gengtype-lex.l > WARNING: `flex' is missing on your system. You should only need it if > you modified a `.l' file. You may need the `Flex' package > in order for those modifications to take effect. You can get > `Flex' from any GNU archive site. > gcc -c -g -fkeep-inline-functions -DIN_GCC -W -Wall -Wwrite-strings > -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual > -Wold-style-definition -Wc++-compat -Wmissing-format-attribute > -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings > -fno-common -Wno-error -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/build > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/../include > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/../libcpp/include > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/../libdecnumber > -I/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/../gcc/../libdecnumber/bid > -I../libdecnumber -o build/gengtype-lex.o gengtype-lex.c > gcc: gengtype-lex.c: No such file or directory > gcc: no input files > make[3]: *** [build/gengtype-lex.o] Error 1 > make[3]: Leaving directory > `/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu/gcc' > make[2]: *** [all-stage1-gcc] Error 2 > make[2]: Leaving directory > `/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu' > make[1]: *** [stage1-bubble] Error 2 > make[1]: Leaving directory > `/home/micd/gcc-4_4-branch/obj-x86_64-unknown-linux-gnu' > make: *** [all] Error 2 > > > Although I do have flex: > > $ sudo apt-get install flex > Reading package lists... Done > Building dependency tree > Reading state information... Done > flex is already the newest version. Look in build/config.log to see what it says about flex. Make sure /usr/bin/flex exists. Make sure it existed the first time you configured. If not, blow away your build directory and reconfigure. Andrew.