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]

Fix ia64 build problems



make[2]: *** No rule to make target `ia64/lib1funcs.asm', needed by `libgcc.a'.  Stop.

This appears to be caused by Zack's recent libgcc1 elimination patch.
Fixed with this change, which makes it get as far as a crash in stage2
gengenrtl :-(


Bernd

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/egcs/gcc/ChangeLog,v
retrieving revision 1.10116
diff -u -p -r1.10116 ChangeLog
--- ChangeLog	2001/05/22 13:14:07	1.10116
+++ ChangeLog	2001/05/22 14:13:27
@@ -1,3 +1,7 @@
+2001-05-22  Bernd Schmidt  <bernds@redhat.com>
+
+	* Makefile.in (LIBGCC_DEPS): Correct LIB1ASMSRC dependency.
+
 2001-05-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>

 	* install.texi: Remove obsolete information on SunOS as well as
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Makefile.in,v
retrieving revision 1.666
diff -u -p -r1.666 Makefile.in
--- Makefile.in	2001/05/20 19:56:30	1.666
+++ Makefile.in	2001/05/22 14:13:31
@@ -1022,7 +1022,7 @@ LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES)
 	libgcc.mk $(srcdir)/libgcc2.c $(TCONFIG_H) \
 	$(MACHMODE_H) longlong.h gbl-ctors.h config.status stmp-int-hdrs \
 	tsystem.h $(FPBIT) $(DPBIT) $(LIB2ADD) $(LIB2ADD_ST) $(LIB2ADDEH) \
-	$(LIB2ADDEHDEP) $(EXTRA_PARTS) $(LIB1ASMSRC)
+	$(LIB2ADDEHDEP) $(EXTRA_PARTS) $(srcdir)/config/$(LIB1ASMSRC)

 libgcc.a: $(LIBGCC_DEPS)
 	$(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \


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