From: Ian Lynagh Date: Tue, 29 Aug 2006 12:32:28 +0000 (+0000) Subject: Don't enable SMP if we are unregisterised X-Git-Tag: Before_FC_branch_merge~95 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=6ed326b78c09f2c79908e94341fb826fd9469688 Don't enable SMP if we are unregisterised --- diff --git a/mk/config.mk.in b/mk/config.mk.in index e5581cc..dc69ff2 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -259,7 +259,7 @@ HaveLibDL = @HaveLibDL@ ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc))) -ifeq "$(ArchSupportsSMP)" "YES" +ifeq "$(ArchSupportsSMP)$(GhcUnregisterised)" "YESNO" GhcWithSMP=YES else GhcWithSMP=NO