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: [tree-ssa] rfa [long]: mudflap prototype


On Thu, 08 Aug 2002, Frank Ch. Eigler wrote:

> +	* Makefile.in (C_AND_OBJC_OBJS): Add tree-mudflap.o.
> +	(OBJS): Add tree-nomudflap.o.
>
This breaks parallel bootstraps.  It's missing dependencies for
tree-mudflap.o and tree-nomudflap.o.  Fixed with:


	* Makefile.in (tree-mudflap.o, tree-nomudflap.o): Add
	dependencies.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.903.2.13
diff -d -u -p -r1.903.2.13 Makefile.in
--- Makefile.in	11 Aug 2002 11:59:44 -0000	1.903.2.13
+++ Makefile.in	11 Aug 2002 20:54:28 -0000
@@ -1404,6 +1404,12 @@ c-call-graph.o : c-call-graph.c $(CONFIG
    $(C_COMMON_H) diagnostic.h hard-reg-set.h $(BASIC_BLOCK_H) tree-flow.h
 tree-simple.o : tree-simple.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(EXPR_H) \
 	$(RTL_H) tree-simple.h
+tree-mudflap.o : $(CONFIG_H) errors.h $(SYSTEM_H) $(TREE_H) tree-inline.h \
+   $(C_TREE_H) $(C_COMMON_H) tree-simple.h diagnostic.h $(HASHTAB_H) \
+   output.h varray.h langhooks.h tree-mudflap.h
+tree-nomudflap.o : $(CONFIG_H) errors.h $(SYSTEM_H) $(TREE_H) tree-inline.h \
+   $(C_TREE_H) $(C_COMMON_H) tree-simple.h diagnostic.h $(HASHTAB_H) \
+   output.h varray.h langhooks.h tree-mudflap.h
 c-pretty-print.o : c-pretty-print.c $(CONFIG_H) $(SYSTEM_H) \
    $(RTL_H) $(TREE_H) $(EXPR_H) $(C_COMMON_H) errors.h diagnostic.h
 stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h \


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