X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Flib%2Fstd%2FMakefile;h=3086179b061222b004472aa9902985dbc33c17a4;hb=ea138284b7343bb1810cfbd0284a608dc57f7d46;hp=186054f8ee31a30b89e225379448b2149461073b;hpb=ae5c3b6fb9460e6773c3bd70953e33fe64aadba1;p=ghc-hetmet.git diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 186054f..3086179 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -12,6 +12,7 @@ include $(TOP)/mk/boilerplate.mk WAYS=$(GhcLibWays) + ifeq "$(way)" "" SUBDIRS = cbits else @@ -24,38 +25,44 @@ endif HC = $(GHC_INPLACE) -ifneq "$(DLLized)" "YES" -PACKAGE = -package-name std -else +# *** THIS WON'T WORK ANY MORE *** (PACKAGE is now set in fptools/mk/target.mk) +ifeq "$(DLLized)" "YES" # 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)) +PACKAGE = std 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 += -cpp -fvia-C -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE) +SRC_HC_OPTS += -cpp -fglasgow-exts $(GhcLibHcOpts) +SRC_HSC2HS_OPTS += -Icbits ifdef USE_REPORT_PRELUDE SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1 endif +# ESSENTIAL, for getting reasonable performance from the I/O library: +PrelIOBase_HC_OPTS = -funbox-strict-fields + +# debugging... +PrelIOBase_HC_OPTS += -fno-ignore-asserts +PrelHandle_HC_OPTS += -fno-ignore-asserts +PrelIO_HC_OPTS += -fno-ignore-asserts + # Special options -PrelStorable_HC_OPTS = -monly-3-regs +# TODO: remove -H80M when the strictness analyser is working again. +PrelStorable_HC_OPTS = -monly-3-regs -H80M PrelCError_HC_OPTS = +RTS -K4m -RTS -PrelInt_HC_OPTS = -monly-3-regs -PrelWord_HC_OPTS = -monly-3-regs +PrelInt_HC_OPTS = -H80M # -monly-3-regs +PrelWord_HC_OPTS = -H80M # -monly-3-regs +PrelFloat_HC_OPTS = -H80M +PrelRead_HC_OPTS = -H80M +PrelHandle_HC_OPTS = -H80M +Time_HC_OPTS = -H80M #----------------------------------------------------------------------------- # Dependency generation @@ -66,9 +73,8 @@ 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 + rm -f $@ + ../../utils/genprimopcode/genprimopcode --make-haskell-wrappers < $< > $@ PrelGHC.$(way_)hi : PrelGHC.hi-boot cp $< $@ @@ -89,12 +95,37 @@ HS_SRCS := $(filter-out PrelMain.lhs, $(HS_SRCS)) all :: PrelMain.dll_o endif -CLEAN_FILES += PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi) +CLEAN_FILES += PrelGHC.hi-boot PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi) + + +#----------------------------------------------------------------------------- +# Building the library for GHCi +# +# The procedure differs from that in fptools/mk/target.mk in two ways: +# (a) we don't want PrelMain in the GHCi std library +# (b) on Win32 we must split it into two, because a single .o file can't +# have more than 65536 relocations in it. +# + +# we don't want PrelMain in the GHCi library. +GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS)) + + +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +# 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) +HSstd.o :: $(GHCI_LIBOBJS) + ld -r -x -o HSstd1.o $(filter Prel%, $(GHCI_LIBOBJS)) + ld -r -x -o HSstd2.o $(filter-out Prel%, $(GHCI_LIBOBJS)) +endif # TARGETPLATFORM = i386-unknown-mingw32 + + -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 @@ -116,4 +147,81 @@ endif INSTALL_DATAS += PrelGHC.$(way_)hi + + +#----------------------------------------------------------------------------- +# ILX stuff. PLEASE IGNORE THIS UNLESS YOU'RE WORKING ON GHC.NET + + +ilxstd: + $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.dll std.ilx-Onot.mono.vlb + $(MAKE) way=ilx-O-mono std.ilx-O.mono.dll std.ilx-O.mono.vlb + $(MAKE) way=ilx-Onot-generic std.ilx-Onot.generic.dll + $(MAKE) way=ilx-O-generic std.ilx-O.generic.dll + $(MAKE) way=ilx-Onot-mono-traced std.ilx-Onot.mono.dll std.ilx-Onot.mono-traced.vlb + $(MAKE) way=ilx-O-mono-traced std.ilx-O.mono.dll std.ilx-O.mono-traced.vlb + $(MAKE) way=ilx-Onot-generic-traced std.ilx-Onot.generic-traced.dll + $(MAKE) way=ilx-O-generic-traced std.ilx-O.generic-traced.dll + $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.dll std.ilx-Onot.mono-verifiable.vlb + $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.dll std.ilx-O.mono-verifiable.vlb + +ilxcheck: + (cd //c/devel/fcom/src; make) + (cd ../../compiler; make) + $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.mvl + $(MAKE) way=ilx-O-mono std.ilx-O.mono.mvl + $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvl + $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvl + $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvr + $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvr + + +ifeq "$(ILXized)" "YES" + +HS_ILX+=PrelGHC.$(hs2ilx_suffix)_o +PrelGHC.$(hs2ilx_suffix)_o: PrelGHC.ilx.real + sed -e "s/'PrelBase.dll'/'PrelBase.$(hs2ilx_suffix).dll'/g" $< > $@.tmp + mv $@.tmp $@ + +PrelGHC.$(hs2ilx_suffix)_hi : PrelGHC.hi-boot + cp $< $@ + +std.$(ilx_way).dll: $(HS_MODS) + echo "call devcorb2gen free" > tmp.bat + echo "al -out:$@ $(HS_MODS)" >> tmp.bat + cmd /c tmp.bat + +std.$(ilx_way).mvl: $(HS_IL) + ((ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).vlb $(HS_IL)) 2>&1) | tee $@ + +std.$(ilx_way).vlb: std.$(ilx_way).dll + echo "call devcorb2gen fastchecked" > tmp.bat + echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat + echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat + echo "copy c:\\devel\\fcom\\src\\bin\\mkvlb.exe ." >> tmp.bat + echo ".\\mkvlb.exe -o $@.tmp std.$(ilx_way)" >> tmp.bat + cmd /c tmp.bat + mv $@.tmp $@ + +MINI_IL=PrelBase.ilx-Onot.mono.il Prelude.ilx-Onot.mono.il PrelGHC.ilx-Onot.mono.il PrelPrimopWrappers.ilx-Onot.mono.il PrelErr.ilx-Onot.mono.il PrelIOBase.ilx-Onot.mono.il PrelTup.ilx-Onot.mono.il PrelShow.ilx-Onot.mono.il PrelList.ilx-Onot.mono.il PrelPtr.ilx-Onot.mono.il PrelMaybe.ilx-Onot.mono.il PrelPack.ilx-Onot.mono.il PrelST.ilx-Onot.mono.il PrelByteArr.ilx-Onot.mono.il PrelArr.ilx-Onot.mono.il PrelNum.ilx-Onot.mono.il PrelEnum.ilx-Onot.mono.il PrelFloat.ilx-Onot.mono.il PrelReal.ilx-Onot.mono.il PrelConc.ilx-Onot.mono.il +mini.mvl: $(MINI_IL) + ((ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).vlb $(MINI_IL)) 2>&1) | tee $@ + + +std.$(ilx_way).mvlx: $(HS_ILX) + ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib.vlbx $(HS_ILX) | tee $@ + +.PRECIOUS: $(HS_MODS) $(HS_ILX) $(HS_IL) + +endif # ILXized + +# End ILX stuff. +#----------------------------------------------------------------------------- + + include $(TOP)/mk/target.mk + +# PrelIO.hsc includes PrelHandle_hsc.h +PrelIO.hsc : PrelHandle_hsc.h + +