From b8c1015f6b7189038d70c822558d217b6f6a97a5 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 6 May 2010 12:21:18 +0000 Subject: [PATCH] add the proper library dependencies for GhcProfiled=YES --- ghc/ghc.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghc/ghc.mk b/ghc/ghc.mk index a1edb17..7f03f43 100644 --- a/ghc/ghc.mk +++ b/ghc/ghc.mk @@ -132,6 +132,11 @@ ghc/stage1/build/tmp/$(ghc_stage1_PROG) : $(compiler_stage1_v_LIB) ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(compiler_stage2_v_LIB) ghc/stage3/build/tmp/$(ghc_stage3_PROG) : $(compiler_stage3_v_LIB) +ifeq "$(GhcProfiled)" "YES" +ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(compiler_stage2_p_LIB) +ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_p_LIB)) +endif + # Modules here import HsVersions.h, so we need ghc_boot_platform.h $(ghc_stage1_depfile_haskell) : compiler/stage1/$(PLATFORM_H) $(ghc_stage2_depfile_haskell) : compiler/stage2/$(PLATFORM_H) -- 1.7.10.4