From 0b19ae9d33bb814b2396f924b9c5c839c3f9dae6 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 2 Jan 2001 11:20:35 +0000 Subject: [PATCH] [project @ 2001-01-02 11:20:35 by simonmar] GhcWithInterpreter defaults to NO for the time being. (enable by hand in build.mk to turn it on). --- mk/config.mk.in | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/mk/config.mk.in b/mk/config.mk.in index 1b9b622..46ff8a7 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -114,12 +114,12 @@ ifeq "$(GhcWithHscBuiltViaC)" "YES" # need hslibs/lang first if we're bootstrapping ProjectsToBuild = glafp-utils hslibs ghc else -ProjectsToBuild = glafp-utils ghc hslibs +ProjectsToBuild = glafp-utils happy endif # # Make a distinction between building and installing # -ProjectsToInstall = glafp-utils ghc hslibs +ProjectsToInstall = glafp-utils happy # # Should the various project tests directories be built? @@ -175,12 +175,13 @@ else GhcWithNativeCodeGen=NO endif -# Include GHCi in the compiler -ifneq "$(findstring $(HostOS_CPP), linux solaris freebsd netbsd openbsd)" "" -GhcWithInterpreter=YES -else +# Include GHCi in the compiler. Default to NO for the time being. + +# ifneq "$(findstring $(HostOS_CPP), linux solaris freebsd netbsd openbsd)" "" +# GhcWithInterpreter=YES +# else GhcWithInterpreter=NO -endif +# endif # # Building various ways? -- 1.7.10.4