From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9646 invoked by alias); 6 Mar 2012 14:58:50 -0000 Received: (qmail 9627 invoked by uid 22791); 6 Mar 2012 14:58:48 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_LOW,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail-yw0-f47.google.com (HELO mail-yw0-f47.google.com) (209.85.213.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Mar 2012 14:58:25 +0000 Received: by yhjj56 with SMTP id j56so2399355yhj.20 for ; Tue, 06 Mar 2012 06:58:24 -0800 (PST) Received-SPF: pass (google.com: domain of iant@google.com designates 10.50.149.167 as permitted sender) client-ip=10.50.149.167; Authentication-Results: mr.google.com; spf=pass (google.com: domain of iant@google.com designates 10.50.149.167 as permitted sender) smtp.mail=iant@google.com; dkim=pass header.i=iant@google.com Received: from mr.google.com ([10.50.149.167]) by 10.50.149.167 with SMTP id ub7mr6670582igb.43.1331045904679 (num_hops = 1); Tue, 06 Mar 2012 06:58:24 -0800 (PST) Received: by 10.50.149.167 with SMTP id ub7mr5535235igb.43.1331045904633; Tue, 06 Mar 2012 06:58:24 -0800 (PST) Received: by 10.50.149.167 with SMTP id ub7mr5535223igb.43.1331045904504; Tue, 06 Mar 2012 06:58:24 -0800 (PST) Received: from coign.google.com ([67.218.110.43]) by mx.google.com with ESMTPS id vr4sm23533860igb.1.2012.03.06.06.58.22 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 06 Mar 2012 06:58:23 -0800 (PST) From: Ian Lance Taylor To: Me Myself and I Cc: , Subject: Re: Almost successfull compiling GCJ, however.. References: <4F540948.9090604@bothner.com> <4F54869B.20409@redhat.com> Date: Tue, 06 Mar 2012 14:58:00 -0000 In-Reply-To: (Me Myself and, I's message of "Tue, 6 Mar 2012 10:39:16 +1100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gm-Message-State: ALoCoQmjA38N0keFybyEail5FMDgnoEqxHjfNkdNulwwlD5lsNJKOM43uBaDT89P6eWVmuAmA0KvXqbGcDU98DVWRNhkp3o+JYTWdNcqlFvih0M6EIE62X/2RkgxUH4pJY3clbVAfCs2mli1VwNVgOyuojaW5HiD7w9gcTM5oF1fagBCTTHUQY0= 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: 2012-03/txt/msg00009.txt.bz2 Me Myself and I writes: > obj/gmp/fib_table.h > > is an empty file. > > ? That is not good. fib_table.h is a generated file. It is built at runtime by the gen-fib program. Try simply removing fib_table.h, and see if it gets rebuilt correctly. If not, look at the commands that make shows. You should see it running gen-fib. You will need to figure out why gen-fib is not outputing anything. Ian >> Date: Mon, 5 Mar 2012 09:25:47 +0000 >> From: aph@redhat.com >> To: gcc-help@gcc.gnu.org >> Subject: Re: Almost successfull compiling GCJ, however.. >> >> On 03/05/2012 05:10 AM, Me Myself and I wrote: >> > >> > In response to the previous email to self, I have altered the prefix to be >> > >> > --prefix=/home/User/ >> > >> > and encounter the precise same sort of error: >> > >> > make; >> > >> > fib2_ui.c:76:29: error: 'FIB_TABLE_LIMIT' undeclared (first use in this function) >> > fib2_ui.c:76:29: note: each undeclared identifier is reported only once for each function it appears in >> > make[5] *** [fib2_ui.lo] Error 1 >> > make[5] Leaving directory '/home/User/gcc-4.6.2/objdir/gmp/mpn' >> > make[4] ***all-recursive] Error 1 >> > make[4] Leaving directory '/home/User/gcc-4.6.2/objdir/gmp' >> > make[3] *** [all] Error 2 >> > make[3] Leaving directory '/home/User/gcc-4.6.2/objdir/gmp' >> > make[2] *** [all-stage1-gmp] Error 2 >> > make[2] Leaving directory '/home/User/gcc-4.6.2/objdir' >> > make[1] *** [stage1-bubble] Error 2 >> > make[1] Leaving directory '/home/User/gcc-4.6.2/objdir' >> > make: *** [all] Error 2 >> > >> > Why on earth doesn't this complete without these errors? Can I afford to ignore them >> > and go on to make install; anyway? >> >> It's hard for us to understand why you haven't looked to see >> what the problem is. FIB_TABLE_LIMIT should be defined in >> obj/gmp/fib_table.h. >> >> Andrew. >