X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Flib%2Fstd%2FMakefile;h=31adf52a21090385c302e61a02f21d8b9d54f364;hb=5d25aa0135bf17da82dd27f23f518b513c9252d9;hp=02e279cb8c1eff005b90eb6cf51bafa0e4c89f45;hpb=192b2bc9a0e943438faff225b0f82a8d7804a733;p=ghc-hetmet.git diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 02e279c..31adf52 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -22,55 +22,36 @@ endif # Setting the standard variables # -LIBRARY = libHS$(_way).a -HS_SRCS = $(wildcard *.lhs) -HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o) -LIBOBJS = $(HS_OBJS) -HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) PrelGHC.$(way_)hi +HC = $(GHC_INPLACE) +ifneq "$(DLLized)" "YES" +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 $(findstring $(notdir $*), PrelMain )), -package-name~std)) +endif + +HSLIB = std + +# we don't want PrelMain in the GHCi library. +GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS)) + +BOOT_SRCS += PrelPrimopWrappers.hs #----------------------------------------------------------------------------- # Setting the GHC compile options -SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts) -fcompiling-prelude -ifneq "$(way)" "dll" -SRC_HC_OPTS += -static -endif - -# -# Profiling options -WAY_p_HC_OPTS += -GPrelude -WAY_mr_HC_OPTS += -GPrelude +SRC_HC_OPTS += -cpp -fvia-C -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE) -# -# Object and interface files have suffixes tagged with their ways -# -ifneq "$(way)" "" -SRC_HC_OPTS += -hisuf $(way_)hi +ifdef USE_REPORT_PRELUDE +SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1 endif -# per-module flags -PrelArrExtra_HC_OPTS += -monly-2-regs -Directory_HC_OPTS += -monly-3-regs -Time_HC_OPTS += -monly-3-regs - -# Far too much heap is needed to compile PrelNumExtra with -O at the -# moment, but there you go.. -PrelNumExtra_HC_OPTS += -H34m -K2m - -PrelPack_HC_OPTS += -K4m -PrelBase_HC_OPTS += -H12m -PrelRead_HC_OPTS += -H20m -PrelTup_HC_OPTS += -H12m -K2m -PrelNum_HC_OPTS += -H12m -K4m -PrelArr_HC_OPTS += -H8m -PrelHandle_HC_OPTS += -H20m -Time_HC_OPTS += -H24m -K2m -Complex_HC_OPTS += -H10m -IO_HC_OPTS += -H12m -PrelMain_HC_OPTS += -fno-prune-tydecls # avoids an apparent bug; ToDo -List_HC_OPTS += -H8m -Directory_HC_OPTS += -H8m +# Special options +PrelStorable_HC_OPTS = -monly-3-regs +PrelCError_HC_OPTS = +RTS -K4m -RTS +PrelInt_HC_OPTS = -monly-3-regs +PrelWord_HC_OPTS = -monly-3-regs #----------------------------------------------------------------------------- # Dependency generation @@ -80,21 +61,31 @@ SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR) #----------------------------------------------------------------------------- # Rules +PrelPrimopWrappers.hs: ../../compiler/prelude/primops.txt + rm -f PrelPrimopWrappers.hs + ../../utils/genprimopcode/genprimopcode --make-haskell-wrappers \ + < ../../compiler/prelude/primops.txt > PrelPrimopWrappers.hs + PrelGHC.$(way_)hi : PrelGHC.hi-boot cp $< $@ boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi) -DLL_NAME = HSprel.dll -DLL_IMPLIB_NAME = libHS_imp.a -SRC_BLD_DLL_OPTS += --export-all --output-def=HSprel.def -SRC_BLD_DLL_OPTS += -lwinmm -lHSrts_imp -lHS_cbits_imp -lgmp -L. -L../../rts/gmp -L../../rts -Lcbits +ifneq "$(BootingFromHc)" "YES" +boot :: PrelPrimopWrappers.hs +all :: PrelPrimopWrappers.hs +endif +DLL_DESCRIPTION="GHC-compiled Haskell Prelude" -ifeq "$(way)" "dll" +ifeq "$(DLLized)" "YES" HS_SRCS := $(filter-out PrelMain.lhs, $(HS_SRCS)) +# PrelMain.dll_o isn't to be included in the final .a, +# but it needs to be generated +all :: PrelMain.dll_o endif +CLEAN_FILES += PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi) #----------------------------------------------------------------------------- # Installation; need to install .hi files as well as libraries @@ -110,7 +101,10 @@ override datadir:=$(libdir)/imports/std # # Files to install from here # -INSTALL_LIBS += $(LIBRARY) -INSTALL_DATAS += $(HS_IFACES) +ifeq "$(DLLized)" "YES" +INSTALL_LIBS += PrelMain.dll_o +endif + +INSTALL_DATAS += PrelGHC.$(way_)hi include $(TOP)/mk/target.mk