diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-08-09 14:48:45 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-08-09 14:48:45 +0000 |
commit | bc49cbd35e1b9a75ef05de610f845de7bbfef90d (patch) | |
tree | 23bce8b1f18d2509abb91d6c1e5850e882860ffa /utils/runghc | |
parent | c1a31d0d47994808ca7b8389a1d5d634b45d6755 (diff) | |
download | haskell-bc49cbd35e1b9a75ef05de610f845de7bbfef90d.tar.gz |
Where we use $(GhcHcOpts), also add $(GhcStage1HcOpts)
This fixes building the compiler with -prof in $(GhcStage1HcOpts)
Diffstat (limited to 'utils/runghc')
-rw-r--r-- | utils/runghc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/runghc/Makefile b/utils/runghc/Makefile index 90e4949530..c1a94c799a 100644 --- a/utils/runghc/Makefile +++ b/utils/runghc/Makefile @@ -13,7 +13,7 @@ include $(GHC_COMPAT_DIR)/compat.mk # This is required because libghccompat.a must be built with # $(GhcHcOpts) because it is linked to the compiler, and hence # we must also build with $(GhcHcOpts) here: -SRC_HC_OPTS += $(GhcHcOpts) +SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage1HcOpts) all :: runhaskell |