X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Flib%2Fstd%2FMakefile;h=4a7b2c25e3a522b7112ea456b0378fb9cd99291a;hb=50027272414438955dbc41696541cbd25da55883;hp=0accdab54e4f4fc57ece5385f57d5e273b13969a;hpb=ae21acc5e101aca5a1163c1e0d85705fdfe5147f;p=ghc-hetmet.git diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 0accdab..4a7b2c2 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -22,53 +22,38 @@ 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 + +HSC_SRCS = $(wildcard *.hsc) +HSC_HS = $(patsubst %.hsc,%.hs, $(HSC_SRCS)) +HS_SRCS := $(HSC_HS) $(filter-out $(HSC_HS),$(HS_SRCS)) #----------------------------------------------------------------------------- # Setting the GHC compile options -SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts) +SRC_HC_OPTS += -cpp -fvia-C -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE) -# -# Profiling options -WAY_p_HC_OPTS += -GPrelude -WAY_mr_HC_OPTS += -GPrelude - -# -# 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 -PrelArr_HC_OPTS += -monly-2-regs -Directory_HC_OPTS += -monly-3-regs -Time_HC_OPTS += -monly-3-regs -H16m - -# Far too much heap is needed to compile PrelNum with -O at the -# moment, but there you go.. -PrelNum_HC_OPTS += -H30m -# Note: this option has to go in the Makefile rather than in an -# OPTIONS line in the source file. The reason being that we want -# to override the SRC_HC_OPTS of -O, and anything option coming -# from the Makefile overrides what's in OPTIONS lines. (mumble_HC_OPTS -# does override SRC_HC_OPTS settings) -PrelUnsafe_HC_OPTS += -Onot - -PrelBase_HC_OPTS += -H12m -PrelRead_HC_OPTS += -H12m -PrelTup_HC_OPTS += -H12m -PrelArr_HC_OPTS += -H8m -PrelHandle_HC_OPTS += -H12m -Time_HC_OPTS += -H8m -Complex_HC_OPTS += -H10m -IO_HC_OPTS += -H12m +# Special options +PrelStorable_HC_OPTS = -monly-3-regs +PrelCError_HC_OPTS = +RTS -K4m -RTS #----------------------------------------------------------------------------- # Dependency generation @@ -78,11 +63,37 @@ 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) +ifneq "$(BootingFromHc)" "YES" +boot :: PrelPrimopWrappers.hs +all :: PrelPrimopWrappers.hs +endif + +DLL_DESCRIPTION="GHC-compiled Haskell Prelude" + +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) + +CLEAN_FILES += \ + $(patsubst %.hsc, %.hs, $(HSC_SRCS)) \ + $(patsubst %.hsc, %.hs.c, $(HSC_SRCS)) \ + $(patsubst %.hsc, %.hs.h, $(HSC_SRCS)) + #----------------------------------------------------------------------------- # Installation; need to install .hi files as well as libraries # @@ -97,12 +108,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 -include $(TOP)/mk/target.mk +INSTALL_DATAS += PrelGHC.$(way_)hi -glaExts/PackedString_HC_OPTS += -monly-3-regs -concurrent/Parallel_HC_OPTS += -fglasgow-exts -glaExts/Int_HC_OPTS += -H8m -glaExts/Word_HC_OPTS += -H8m +include $(TOP)/mk/target.mk