From 2b4f6d6b1706eab6f9e88ecad46e643ab163bf45 Mon Sep 17 00:00:00 2001 From: qrczak Date: Wed, 12 Sep 2001 05:52:13 +0000 Subject: [PATCH] [project @ 2001-09-12 05:52:13 by qrczak] Don't exclude PrelMain.o from libHSstd.a. --- ghc/lib/std/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 0fdeebc..d114e11 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -111,7 +111,10 @@ GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS)) ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -LIBOBJS=$(GHCI_LIBOBJS) +# Standard rule +HSstd.o :: $(GHCI_LIBOBJS) + ld -r -x -o $@ $(GHCI_LIBOBJS) + else # Rule for Win32 platform # Keep HSstd.o as a pseudo-target (I think) -- 1.7.10.4