This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] Fix bootstrap failure
- From: Diego Novillo <dnovillo at redhat dot com>
- To: "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>
- Cc: Daniel Berlin <dberlin at dberlin dot org>
- Date: Sun, 30 Nov 2003 09:51:05 -0500
- Subject: [tree-ssa] Fix bootstrap failure
- Organization: Red Hat Canada
2003-11-30 Daniel Berlin <dberlin@dberlin.org>
* 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.