From fbc94fdb74ab98b995c7f96ae28ab15857418c1b Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 26 Jan 2001 14:40:18 +0000 Subject: [PATCH] [project @ 2001-01-26 14:40:18 by simonmar] don't add -DGHCI when GhcWithInterpreter is on. This needs to be done in the compiler we're booting *from*, not the current compiler. --- ghc/rts/Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index d9a5db5..8feddbf 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.42 2000/12/31 16:58:05 panne Exp $ +# $Id: Makefile,v 1.43 2001/01/26 14:40:18 simonmar Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -62,11 +62,6 @@ WARNING_OPTS += -optc-Wbad-function-cast SRC_HC_OPTS += -I../includes -I. -Iparallel $(WARNING_OPTS) $(GhcRtsHcOpts) -optc-DCOMPILING_RTS SRC_CC_OPTS = $(GhcRtsCcOpts) -ifeq "$(GhcWithInterpreter)" "YES" -SRC_HC_OPTS += -optc-DGHCI -SRC_CC_OPTS += -DGHCI -endif - ifneq "$(DLLized)" "YES" SRC_HC_OPTS += -static endif -- 1.7.10.4