This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Now GCC is really hosed...


Mark Mitchell <mark@codesourcery.com> writes:

| >>>>> "Bruce" == Bruce Korb <bkorb@sco.COM> writes:
| 
|     >> gmake[3]: Leaving directory `/tools/gcc/=build/gcc/intl' gcc
|     >> -DIN_GCC -g -W -Wall -Wtraditional -Wwrite-strings
|     >> -Wstrict-prototypes \ -Wmissing-prototypes -pedantic
|     >> -Wno-long-long -DHAVE_CONFIG_H \ -I. -I../../gcc/gcc
|     >> -I../../gcc/gcc/config -I../../gcc/gcc/../include \ -c
|     >> ../../gcc/gcc/c-parse.c c-parse.y: In function `yyparse':
|     >> c-parse.y:1711: warning: unused variable `break_stmt'
|     >> c-parse.y:1715: warning: unused variable `continue_stmt'
|     >> gmake[2]: *** No rule to make target
|     >> `../../gcc/gcc/c-errors.c', \ needed by `c-errors.o'.  Stop.
|     >> gmake[2]: Leaving directory `/tools/gcc/=build/gcc' gmake[1]:
|     >> *** [bootstrap] Error 2 gmake[1]: Leaving directory
|     >> `/tools/gcc/=build/gcc' gmake: *** [bootstrap] Error 2
| 
|     Bruce> Oh, well.
| 
| Uh-oh.  That's unrelated; it must be one of Gaby's recent patches.
| Gaby?

Yes, that was my fault.  Fixed with the following. OK ?

Curiously, the incriminitated pacth survived a full bootstrap and
test.

Sorry for the confusion.

-- Gaby
CodeSourcery, LLC                             http://www.codesourcery.com

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Makefile.in,v
retrieving revision 1.477
diff -p -r1.477 Makefile.in
*** Makefile.in	2000/07/12 14:12:50	1.477
--- Makefile.in	2000/07/12 18:57:39
*************** s-crt0:	$(CRT0_S) $(MCRT0_S) $(GCC_PASSE
*** 1067,1074 ****
  
  # C language specific files.
  
! c-errors.o: $(srcdir)/c-errors.c $(CONFIG_H) system.h $(TREE_H) c-tree.h \
!     flags.h diagnostic.h
  c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h $(GGC_H) \
      $(srcdir)/c-parse.h c-tree.h c-common.h input.h flags.h system.h \
      toplev.h output.h
--- 1067,1074 ----
  
  # C language specific files.
  
! c-errors.o: c-errors.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \
!     diagnostic.h
  c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h $(GGC_H) \
      $(srcdir)/c-parse.h c-tree.h c-common.h input.h flags.h system.h \
      toplev.h output.h

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]