From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22736 invoked by alias); 30 Nov 2003 14:51:01 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 22720 invoked from network); 30 Nov 2003 14:50:59 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 30 Nov 2003 14:50:59 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id hAUEoxH29891; Sun, 30 Nov 2003 09:50:59 -0500 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id hAUEoxw06264; Sun, 30 Nov 2003 09:50:59 -0500 Received: from dnovillo.cipe.redhat.com (dnovillo.cipe.redhat.com [10.0.0.106]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id hAUEovQ1010018; Sun, 30 Nov 2003 09:50:57 -0500 Subject: [tree-ssa] Fix bootstrap failure From: Diego Novillo To: "gcc-patches@gcc.gnu.org" Cc: Daniel Berlin Content-Type: text/plain Organization: Red Hat Canada Message-Id: <1070203864.24047.32.camel@frodo.toronto.redhat.com> Mime-Version: 1.0 Date: Sun, 30 Nov 2003 15:11:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2003-11/txt/msg02354.txt.bz2 2003-11-30 Daniel Berlin * c-config-lang.in: Move tree-alias-* from here * Makefile.in (GTFILES): To here. [ ... ] causes this bootstrap failure: /home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/bld.tobiano/gcc/gengtype-lex.c -o gengtype-lex.o gcc -c -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -Wno-error -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/. -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/../include -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/../libbanshee/libcompat -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/../libbanshee -I/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/../libbanshee/points-to \ /home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/bld.tobiano/gcc/gengtype-yacc.c -o gengtype-yacc.o gcc -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o gengtype \ gengtype.o gengtype-lex.o gengtype-yacc.o ../libiberty/libiberty.a make[2]: *** No rule to make target `\/home/cygnus/dnovillo/perf/sbox/tree-ssa-branch/local.i686/src/gcc/tree-alias-common.c', needed by `s-gtype'. Stop. make[2]: Leaving directory `/notnfs/dnovillo/sbox/tree-ssa-branch/bld.tobiano/gcc' make[1]: *** [stage1_build] Error 2 make[1]: Leaving directory `/notnfs/dnovillo/sbox/tree-ssa-branch/bld.tobiano/gcc' make: *** [bootstrap] Error 2 Fixed with * Makefile.in (GTFILES): Fix typo in tree-alias-common.c entry. Index: Makefile.in =================================================================== RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v retrieving revision 1.903.2.145 diff -d -c -p -r1.903.2.145 Makefile.in *** Makefile.in 30 Nov 2003 01:00:49 -0000 1.903.2.145 --- Makefile.in 30 Nov 2003 14:45:53 -0000 *************** GTFILES = $(srcdir)/input.h $(srcdir)/co *** 2206,2212 **** $(srcdir)/tree-ssa.c $(srcdir)/tree-dfa.c $(srcdir)/tree-ssa-ccp.c \ $(srcdir)/tree-ssa-pre.c $(srcdir)/tree-iterator.c $(out_file) \ $(srcdir)/tree-alias-type.h $(srcdir)/tree-alias-common.h \ ! $(srcdir)/tree-alias-type.c \$(srcdir)/tree-alias-common.c \ @all_gtfiles@ GTFILES_FILES_LANGS = @all_gtfiles_files_langs@ --- 2206,2212 ---- $(srcdir)/tree-ssa.c $(srcdir)/tree-dfa.c $(srcdir)/tree-ssa-ccp.c \ $(srcdir)/tree-ssa-pre.c $(srcdir)/tree-iterator.c $(out_file) \ $(srcdir)/tree-alias-type.h $(srcdir)/tree-alias-common.h \ ! $(srcdir)/tree-alias-type.c $(srcdir)/tree-alias-common.c \ @all_gtfiles@ GTFILES_FILES_LANGS = @all_gtfiles_files_langs@ Diego.