X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fconfig.mk.in;h=535790e29ba53bba677e348ec9453e9735e62652;hb=1dc6b07eb93f4ff2f0e9f89dbdfa0ec4e051291f;hp=fad313021ee5c4dcc45905383123b37f9b59f64d;hpb=f73d132eeae44eb2869c37c929d09efafeb2dce9;p=ghc-hetmet.git diff --git a/mk/config.mk.in b/mk/config.mk.in index fad3130..535790e 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -3,33 +3,28 @@ # ################################################################################ # -# config.mk.in-template +# config.mk.in # -# This file defines all the variables that set the configuration of -# a particular build. +# This file supplies defaults for many tweakable build configuration +# options. Some of the defaults are filled in by the autoconf-generated +# configure script. # +# DO NOT EDIT THIS FILE! # -################################################################################ - -# The configuration is defined in two steps: -# -# 1. The builder (i.e. the person doing the build) -# copies this file, config.mk.in-template -# to config.mk.in +# - config.mk is auto-generated from config.mk.in by configure. +# This may be triggered automatically by the build system (say +# if config.mk.in has changed more recently than config.mk), +# so if you edit config.mk your changes will be spammed. # -# 2. S/he then edits it manually (gasp) to reflect any configuration -# options s/he wants. +# - Settings in this file may be overriden by giving replacement +# definitions in build.mk. See build.mk.sample for a good +# starting point for a build.mk file. # -# 3. Then s/he runs "configure", which generates config.mk from -# config.mk.in, substituting for system/platform-dependent things -# enclosed in @at-signs@. +# If you don't have a build.mk file then you get defaults for everything. +# The defaults should provide a reasonable vanilla build. # # This is one of only two files that configure generates (the other is config.h) # -# Note that after subsequent edits of config.mk.in for a build, the configure script -# will have to be re-run manually to have the change reflected in config.mk. -# - # There is a section below for each project within the fptools suite # # PLUS @@ -106,9 +101,9 @@ BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@ # build the libs first if we're bootstrapping from .hc files ifeq "$(BootingFromHc)" "YES" -AllProjects = glafp-utils hslibs ghc green-card happy hdirect hood nofib +AllProjects = glafp-utils libraries hslibs ghc green-card happy hdirect hood nofib else -AllProjects = glafp-utils ghc hslibs green-card happy hdirect hood nofib +AllProjects = glafp-utils ghc libraries hslibs green-card happy hdirect hood nofib endif # @@ -128,6 +123,12 @@ ProjectsDontInstall = glafp-utils nofib # IncludeTestDirsInBuild=NO +# +# Which ways should SGML documents be built? +# options are: dvi ps pdf html rtf +# +SGMLDocWays= + ################################################################################ # # GHC project @@ -185,7 +186,7 @@ FptoolsHcOpts=-O # # NOTE: this is not the same as building the compiler itself # unregisterised. That's done by either (a) bootstrapping with a -# compiler that was built with GhcUnregisterized=YES, or (b) +# compiler that was built with GhcUnregisterised=YES, or (b) # bootstrapping with a compiler that has way 'u' libraries, and the # flag '-unreg' is added to GhcHcOpts above. # @@ -202,7 +203,12 @@ else GhcWithNativeCodeGen=NO endif +# Include support for generating Java +GhcWithJavaGen=NO + HaveLibDL = @HaveLibDL@ +HaveRtldNext = @HaveRtldNext@ +HaveRtldLocal = @HaveRtldLocal@ # Include GHCi in the compiler. Default to NO for the time being. @@ -222,7 +228,7 @@ BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS))) BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS))) #------------------------------------------------------------------------------ -# Options for GHC's Prelude +# Options for Libraries # What extra ways to build the libraries in # In addition to the normal sequential way, the default is to also build @@ -234,10 +240,10 @@ else GhcLibWays=p endif -# Option flags to pass to GHC when it's compiling prelude modules -# *and* standard library modules (std) *and* modules in hslibs -# Typically these are things like -O or -dcore-lint -# The ones that are *essential* are wired into ghc/lib/Makefile +# Option flags to pass to GHC when it's compiling modules in +# fptools/libraries. Typically these are things like -O or +# -dcore-lint or -H32m. The ones that are *essential* are wired into +# the build system. # # -O is pretty desirable, otherwise no inlining of prelude # things (incl "+") happens when compiling with this compiler @@ -258,6 +264,21 @@ DLLized=@EnableWin32DLLs@ # MinimalUnixDeps=@MinimalUnixDeps@ +# Strip local symbols from libraries? This can make the libraries smaller, +# but makes debugging somewhat more difficult. Doesn't work with all ld's. +# +StripLibraries=NO + + +# ---------------------------------------------------------------------------- +# Object-file splitting +# +# Set SplitObjs=YES or NO in your build.mk +# +# Don't use -split-objs in in GhcLibHcOpts, because the build +# system needs to do other special magic if you are +# doing object-file splitting + # Don't split object files for libs if we're building DLLs, or booting from # .hc files. SplitObjs=YES @@ -272,11 +293,6 @@ ifeq "$(GhcUnregisterised)" "YES" SplitObjs=NO endif -# Strip local symbols from libraries? This can make the libraries smaller, -# but makes debugging somewhat more difficult. Doesn't work with all ld's. -# -StripLibraries=NO - # ---------------------------------------------------------------------------- # Options for GHC's RTS @@ -290,28 +306,28 @@ StripLibraries=NO # For an optimised RTS: GhcRtsHcOpts=-O2 -GhcRtsCcOpts=-O2 -fomit-frame-pointer +GhcRtsCcOpts=-fomit-frame-pointer # Include the front panel code? Needs GTK+. GhcRtsWithFrontPanel = NO +# +# To have the RTS support interoperation with OS threads, set +# GhcRtsThreaded to YES (preferably via the --enable-threaded-rts +# configure script option). The consequence of this is spelled out +# in details elsewhere, but, briefly, Concurrent Haskell threads +# can now make external (i.e., C) calls without blocking the progress +# of other CH threads. Multiple native threads can also execute +# Haskell code without getting in each others way too. +# +GhcRtsThreaded=@ThreadedRts@ + ################################################################################ # -# hslibs project +# libraries project # ################################################################################ -# Build HsLibs for which compiler? - -# If $(HsLibsFor) == hugs or ghc, we assume we're building for the -# compiler/interpreter in the same source tree. - -# HsLibsFor = ghc | hugs | nhc | hbc -HsLibsFor = ghc - -# hslibs for GHC also uses the following variables (defined above): -# GhcLibWays, GhcLibHcOpts, GhcLibToolsHcOpts, DLLized, StripLibraries - # Build the Haskell Readline bindings? # GhcLibsWithReadline=@HaveReadlineHeaders@ @@ -330,6 +346,8 @@ LIBM=@LIBM@ # Build the Haskell OpenGL/GLUT binding? # GhcLibsWithHOpenGL=@GhcLibsWithHOpenGL@ +GL_CFLAGS=@GL_CFLAGS@ +GL_LIBS=@GL_LIBS@ X_CFLAGS=@X_CFLAGS@ X_LIBS=@X_LIBS@ @@ -427,15 +445,10 @@ ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" DEFAULT_TMPDIR = C:/TEMP endif -# FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. - -ifeq "$(findstring $(TARGETPLATFORM), i386-unknown-cygwin32 i386-unknown-mingw32)" "" +# FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path). FPTOOLS_TOP_ABS = @hardtop@ -else -FPTOOLS_TOP_ABS = $(subst \,/,$(shell cygpath -w @hardtop@)) -endif -# Keep the Unix-style path to use with Unix tools (e.g. in ghc-inplace script) -FPTOOLS_TOP_ABS_UNIX = @hardtop@ +# The platform specific version of 'hardtop'. +FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@ # # Installation directories, we don't use half of these, @@ -445,12 +458,16 @@ FPTOOLS_TOP_ABS_UNIX = @hardtop@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ -datadir = @datadir@ +datadir0 = @datadir@ #sysconfdir = @datadir@ #sharedstatedir = @sharedstatedir@ #localstatedir = @localstatedir@ -libdir = @libdir@ +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +libdir0 = @libdir@ +else +libdir0 = @prefix@ +endif includedir = @includedir@ oldincludedir = @oldincludedir@ mandir = @mandir@ @@ -462,8 +479,13 @@ mandir = @mandir@ # override libdir and datadir to put project-specific stuff in # a subdirectory with the version number included. # -libdir := $(if $(ProjectNameShort),$(libdir)/$(ProjectNameShort)-$(ProjectVersion),$(libdir)) -datadir := $(if $(ProjectNameShort),$(datadir)/$(ProjectNameShort)-$(ProjectVersion),$(datadir)) +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +libdir = $(if $(ProjectNameShort),$(libdir0)/$(ProjectNameShort)-$(ProjectVersion),$(libdir0)) +datadir = $(if $(ProjectNameShort),$(datadir0)/$(ProjectNameShort)-$(ProjectVersion),$(datadir0)) +else +libdir = $(libdir0) +datadir = $(datadir0) +endif # # Default values for most of the above are only set if @@ -601,6 +623,8 @@ GhcVersion = @GhcVersion@ GhcMajVersion = @GhcMajVersion@ GhcMinVersion = @GhcMinVersion@ GhcPatchLevel = @GhcPatchLevel@ +# Canonicalised ghc version number, used for easy (integer) version comparisons. +GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion) HBC = @HBC@ NHC = @NHC@ @@ -642,10 +666,11 @@ HaveLibGmp = @HaveLibGmp@ LibGmp = @LibGmp@ #----------------------------------------------------------------------------- -# Regex library +# Regex libraries # (if present in libc use that one, otherwise use the one in the tree) # -HaveRegex = @HaveRegex@ +HavePosixRegex = @HavePosixRegex@ +HaveGNURegex = @HaveGNURegex@ #----------------------------------------------------------------------------- # GTK+ @@ -694,7 +719,6 @@ INSTALL := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL)) LATEX = latex HEVEA = hevea HACHA = hacha -LD = ld LN_S = @LN_S@ MANMACROS = -man MSMACROS = -ms @@ -708,6 +732,13 @@ RANLIB = @RANLIB@ RM = rm -f SED = @SedCmd@ SHELL = /bin/sh + +# Some ld's support the -x flag and some don't, so the configure +# script detects which we have and sets LdXFlag to "-x" or "" +# respectively. +LD = @LdCmd@ +LD_X = @LdXFlag@ + # # In emergency situations, REAL_SHELL is used to perform shell commands # from within the ghc driver script, by scribbling the command line to @@ -809,7 +840,7 @@ HAPPY_VERSION = @HappyVersion@ # # Options to pass to Happy when we're going to compile the output with GHC # -GHC_HAPPY_OPTS = $(shell if ( test `echo $(HAPPY_VERSION) | sed -e "s/\(.*\)\..*/\1/g"` "-gt" "1" || test `echo $(HAPPY_VERSION) | sed -e "s/.*\.\(.*\)/\1/g"` "-ge" "9" ); then echo -agc; else echo -g; fi) +GHC_HAPPY_OPTS = @HappyOpts@ # # Stuff from fptools/literate