From a586da3a7156cd3aa32f0491ef42d7d1b5de4972 Mon Sep 17 00:00:00 2001 From: rrt Date: Fri, 14 Apr 2000 16:16:13 +0000 Subject: [PATCH] [project @ 2000-04-14 16:16:13 by rrt] Make PrelMain build under the new packages system (less hacky than before). --- ghc/lib/std/Makefile | 31 +++++++------------------------ 1 file changed, 7 insertions(+), 24 deletions(-) diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index a41492a..1abffe6 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -25,7 +25,12 @@ endif HC = $(GHC_INPLACE) MKDEPENDHS = $(GHC_INPLACE) -PACKAGE = std +ifneq "$(way)" "dll" +PACKAGE = -package-name std +else +# Hack by SPJ to delay if-then-else until the pattern rule when we have $* +PACKAGE = $(subst ~, ,$(word $(words dummy $(findstr $(notdir $*), PrelMain )), -package-name~std)) +endif LIBRARY = libHS$(PACKAGE)$(_way).a LIBOBJS = $(HS_OBJS) @@ -36,7 +41,7 @@ endif #----------------------------------------------------------------------------- # Setting the GHC compile options -SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts) -package-name $(PACKAGE) +SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts) $(PACKAGE) ifneq "$(way)" "dll" SRC_HC_OPTS += -static endif @@ -102,28 +107,6 @@ endif CLEAN_FILES += PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi) # -# Building PrelMain.dll_o is, unfortunately, somewhat tricky -# with the current DLL setup. PrelMain.dll_o should refer to -# all its imports bar Main.main_closure as residing in DLLs. -# But, since the .hi's of PrelBase et al. is in the same -# directory as PrelMain, the compiler will assume that they -# reside in the same DLL as PrelMain & generate code accordingly. -# -# So, we copy out PrelMain.lhs to ".." and build it there & -# copy the gen'ed object file back in again. -# -ifeq "$(way)" "dll" -SplitObjs = NO -PrelMain.dll_o : PrelMain.lhs - $(RM) ../PrelMain.lhs - $(CP) PrelMain.lhs ../ - $(MAKE) -C .. PrelMain.dll_o way=dll HC=std/$(GHC_INPLACE) HC_OPTS="$(filter-out -fcompiling-prelude, $(HC_OPTS))" - $(MV) ../PrelMain.dll_o . - $(RM) ../PrelMain.lhs ../PrelMain.dll_hi -endif - - -# # If we're building the unregisterised way, it may well be for Hugs. # In that case, remember to bind the cbits objects into a single file # which hugs can load as an auxiliary object file when loading the Prelude. -- 1.7.10.4