From 6189bc57f7baf2a2dda8c714cf32e29792c708b7 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 24 Mar 2005 08:46:49 +0000 Subject: [PATCH] [project @ 2005-03-24 08:46:49 by simonmar] Disable SplitObjs when building stage2 (which is also package now, so was getting the splitting treatment by default). --- ghc/compiler/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 9861bef..8cdf9ab 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -748,6 +748,10 @@ VERSION = $(ProjectVersion) PKG_DEPENDS += base haskell98 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)' +# disable splitting: it won't really help with GHC, and the specialised +# build system for ghc/compiler isn't set up to handle it. +SplitObjs = NO + # override default definition of HS_IFACES so we can add $(odir) HS_IFACES = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS))) endif -- 1.7.10.4