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]
Other format: [Raw text]

Re: fix some dependencies on s-gtype


> >                   * gcc/fortran/Make-lang.in: Removed gt-fortran-trans.h
> Likewise.
Are you sure about this one?

grep gt-fortran-trans.h gcc/fortran/*
grep fortran-trans.h gcc/fortran/*
grep fortran-trans.c gcc/fortran/*

A reduced patch is attached.

Thank you very much,
Rafael
Index: cp/Make-lang.in
===================================================================
--- cp/Make-lang.in	(revision 105376)
+++ cp/Make-lang.in	(working copy)
@@ -112,7 +112,8 @@
 gtype-cp.h gt-cp-call.h gt-cp-decl.h gt-cp-decl2.h : s-gtype; @true
 gt-cp-pt.h gt-cp-repo.h gt-cp-parser.h gt-cp-method.h : s-gtype; @true
 gt-cp-tree.h gt-cp-mangle.h gt-cp-name-lookup.h gt-cp-typeck2.h: s-gtype; @true
-gt-cp-rtti.h gt-cp-cp-objcp-common.h: s-gtype ; @true
+gt-cp-rtti.h gt-cp-cp-objcp-common.h gt-cp-class.h: s-gtype ; @true
+gt-cp-semantics.h: s-gtype ; @true
 
 #
 # Build hooks:
Index: fortran/Make-lang.in
===================================================================
--- fortran/Make-lang.in	(revision 105376)
+++ fortran/Make-lang.in	(working copy)
@@ -111,7 +111,7 @@
 		$(F95_OBJS) $(BACKEND) $(F95_LIBS)
 
 gt-fortran-f95-lang.h gtype-fortran.h	      : s-gtype; @true
-gt-fortran-trans-decl.h gt-fortran-trans.h    : s-gtype; @true
+gt-fortran-trans-decl.h                       : s-gtype; @true
 gt-fortran-trans-io.h gt-fortran-trans-types.h: s-gtype; @true
 gt-fortran-trans-intrinsic.h		      : s-gtype; @true
 
Index: treelang/Make-lang.in
===================================================================
--- treelang/Make-lang.in	(revision 105376)
+++ treelang/Make-lang.in	(working copy)
@@ -138,7 +138,7 @@
 
 # -v
 
-gt-treelang-tree1.h gtype-treelang.h : s-gtype; @true
+gt-treelang-tree1.h gtype-treelang.h gt-treelang-treetree.h: s-gtype; @true
 
 #
 # Build hooks:

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