Not sure if this happens with GCC 2.7.2.2 or not, but with PGCC, the
kernel compilation blows out without this trivial patch.
I'm sure it's a bug in PGCC.
-- Which is worse: ignorance or apathy? Who knows? Who cares? Have cool, will travel. There is no mojo from the mofo in the HoJo.
--jyke8COw8P1HSweY Content-Type: text/plain; charset=us-ascii Content-Description: Fix for PGCC Content-Disposition: attachment; filename="fix_pgcc.patch"
--- linux/arch/i386/lib/Makefile.virgin Sun Jul 13 20:24:28 1997 +++ linux/arch/i386/lib/Makefile Sun Jul 13 20:26:17 1997 @@ -14,3 +14,7 @@ L_OBJS = checksum.o semaphore.o locks.o include $(TOPDIR)/Rules.make + +checksum.o: checksum.c + $(CC) $(CFLAGS) -fno-inline-functions -c $< +
--jyke8COw8P1HSweY--