X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rules%2Fbuild-dependencies.mk;h=6ebc7ef711bacff720aa062bb31522aba3e57924;hb=79324024325fd2e966427faef770ac96c3c60c70;hp=a2bae2596337bef5a8b1973e935a91c61e54004a;hpb=aea784af873f089a40af71849d83f59008562a58;p=ghc-hetmet.git diff --git a/rules/build-dependencies.mk b/rules/build-dependencies.mk index a2bae25..6ebc7ef 100644 --- a/rules/build-dependencies.mk +++ b/rules/build-dependencies.mk @@ -10,17 +10,19 @@ # # ----------------------------------------------------------------------------- -define build-dependencies # args: $1 = dir, $2 = distdir +define build-dependencies +# $1 = dir +# $2 = distdir +# $3 = GHC stage to use (0 == bootstrapping compiler) $1_$2_depfile_haskell = $$($1_$2_depfile_base).haskell $1_$2_depfile_c_asm = $$($1_$2_depfile_base).c_asm $1_$2_C_FILES_DEPS = $$(filter-out $$($1_$2_C_FILES_NODEPS),$$($1_$2_C_FILES)) -ifeq "$$($1_$2_ghc_ge_609)" "YES" -$1_$2_MKDEPENDHS_FLAGS = -include-pkg-deps -dep-makefile $$($1_$2_depfile_haskell).tmp $$(foreach way,$$(filter-out v,$$($1_$2_WAYS)),-dep-suffix $$(way)) -else -$1_$2_MKDEPENDHS_FLAGS = -optdep--include-pkg-deps -optdep-f -optdep$$($1_$2_depfile_haskell).tmp $$(foreach way,$$(filter-out v,$$($1_$2_WAYS)),-optdep-s -optdep$$(way)) +$1_$2_MKDEPENDHS_FLAGS = -dep-makefile $$($1_$2_depfile_haskell).tmp $$(foreach way,$$(filter-out v,$$($1_$2_WAYS)),-dep-suffix $$(way)) +ifneq "$3" "0" +$1_$2_MKDEPENDHS_FLAGS += -include-pkg-deps endif ifneq "$$($1_$2_NO_BUILD_DEPS)" "YES" @@ -45,9 +47,12 @@ $$($1_$2_depfile_c_asm) : $$($1_$2_C_FILES_DEPS) $$($1_$2_S_FILES) | $$$$(dir $$ "$$(RM)" $$(RM_OPTS) $$@.tmp touch $$@.tmp ifneq "$$(strip $$($1_$2_C_FILES_DEPS)$$($1_$2_S_FILES))" "" +# We ought to actually do this for each way in $$($1_$2_WAYS), but then +# it takes a long time to make the C deps for the RTS (30 seconds rather +# than 3), so instead we just pass the list of ways in and let addCFileDeps +# copy the deps for each way on the assumption that they are the same $$(foreach f,$$($1_$2_C_FILES_DEPS) $$($1_$2_S_FILES), \ - $$(foreach w,$$($1_$2_WAYS), \ - $$(call addCFileDeps,$1,$2,$$($1_$2_depfile_c_asm),$$f,$$w))) + $$(call addCFileDeps,$1,$2,$$($1_$2_depfile_c_asm),$$f,$$($1_$2_WAYS))) "$$(RM)" $$(RM_OPTS) $$@.bit endif echo "$1_$2_depfile_c_asm_EXISTS = YES" >> $$@.tmp @@ -72,16 +77,57 @@ endif endef -define addCFileDeps - +# This comment is outside the "define addCFileDeps" as that definition +# is a list of command lines, and if it is inside it then we pass this +# comment to the shell every time we call the definition. # $1 = dir # $2 = distdir # $3 = depfile # $4 = file -# $5 = way +# $5 = ways +# # The formatting of this definition (e.g. the blank line above) is # important, in order to get make to generate the right makefile code. - $(CPP) $($1_$2_MKDEPENDC_OPTS) $($1_$2_$5_ALL_CC_OPTS) $($(basename $4)_CC_OPTS) -MM $4 -MF $3.bit - sed -e "1s|\.o|\.$($5_osuf)|" -e "1s|^|$(dir $4)|" -e "1s|$1/|$1/$2/build/|" -e "s|$(TOP)/||g" -e "s|$2/build/$2/build|$2/build|g" $3.bit >> $3.tmp +# +# "1s|\.o|\.$($w_osuf)|" +# We will have dependencies for .o files, so we need to fix them up +# for the right object suffix for the way we're doing +# "1s|^|$(dir $4)|" +# We always get deps for just foo.o when the file we're making is +# a/b/c/foo.o, so we need to prepend the directory of the source file +# "1s|$1/|$1/$2/build/|" +# Well, almost. We actually need to insert e.g. "dist/build" in the +# middle of that directory +# "1s|$2/build/$2/build|$2/build|g" +# But some source files, e.g. sm/Evac_thr.c, are also inside the +# "dist/build" directory, so now we've just made +# "dist/build/dist/build", so we need to remove the duplication +# again +# "s|$(TOP)/||g$(CASE_INSENSITIVE_SED)" +# Finally, when making deps for packages like ghc stage2, we have +# some include paths for packages registered in the in-tree package +# database. These include paths are full (i.e. not relative) paths, +# which means that the "cpp -MM" output uses full paths in some cases. +# This causes 2 problems: +# * they don't match up with the rules to rebuild the files, where +# appropriate. +# * on Windows, make interprets the colon in c:/foo/bar.h as make +# syntax. +# So we sed off $(TOP). Unfortunately, on Windows, the case for the +# drive letter is sometimes different in what $(TOP) starts with, and +# what the path in the package database starts with. We therefore +# need to do the substitution case-insensitively on Windows. But +# the s///i modifier isn't portable, so we set CASE_INSENSITIVE_SED +# to "i" on Windows and "" on any other platform. +define addCFileDeps + + $(CPP) $($1_$2_MKDEPENDC_OPTS) $($1_$2_v_ALL_CC_OPTS) $($(basename $4)_CC_OPTS) -MM $4 -MF $3.bit + $(foreach w,$5,sed -e "1s|\.o|\.$($w_osuf)|" -e "1s|^|$(dir $4)|" -e "1s|$1/|$1/$2/build/|" -e "1s|$2/build/$2/build|$2/build|g" -e "s|$(TOP)/||g$(CASE_INSENSITIVE_SED)" $3.bit >> $3.tmp &&) true endef +ifeq "$(Windows)" "YES" +CASE_INSENSITIVE_SED = i +else +CASE_INSENSITIVE_SED = +endif +