diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-05-06 12:21:18 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-05-06 12:21:18 +0000 |
commit | b8c1015f6b7189038d70c822558d217b6f6a97a5 (patch) | |
tree | f7ce3a055d11da44d2034638c794fb673e95ff4f /ghc/ghc.mk | |
parent | f1934472abf6ad317f1217a39e695600c0e82cf5 (diff) | |
download | haskell-b8c1015f6b7189038d70c822558d217b6f6a97a5.tar.gz |
add the proper library dependencies for GhcProfiled=YES
Diffstat (limited to 'ghc/ghc.mk')
-rw-r--r-- | ghc/ghc.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ghc/ghc.mk b/ghc/ghc.mk index a1edb1787c..7f03f43f0d 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) |