Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
b97c7238
Commit
b97c7238
authored
27 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1997-09-03 23:18:41 by sof]
version nos upped to 2.06; added -O to GhcLibHcOpts; added HAPPY_VERSION
parent
4b98b6ad
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mk/config.mk.in
+20
-8
20 additions, 8 deletions
mk/config.mk.in
with
20 additions
and
8 deletions
mk/config.mk.in
+
20
−
8
View file @
b97c7238
...
...
@@ -135,9 +135,9 @@ IncludeTestDirsInBuild=NO
#
GhcProjectName =The Glorious Glasgow Haskell Compilation System
GhcProjectNameShort =ghc
GhcProjectVersion =2.0
5
GhcProjectVersion =2.0
6
GhcProjectPatchLevel =0
GhcBuildeeVersion =20
5
GhcBuildeeVersion =20
6
GhcBuilderVersion =29
#
...
...
@@ -177,9 +177,16 @@ GhcCompilerWays=
# Extra option flags to pass to the compiler that compiles the compiler
# (Ones that are essential are wired into ghc/compiler/Makefile)
# Typical ones:
# -O compiler an optimised compiler
# -H25m allocate a bigger heap (default is 6m)
#
# -O compile an optimised compiler
# NB! If you add -O you'll almost certainly need to increase
# the amount of heap space too (to 15m or more)
#
# -DDEBUG include consistency/assertion checks in the compiled compiler
# -fshow-import-specs show import specialisations
#
# -dcore-lint check the types after every pass of the compiler;
# a pretty strong internal check
GhcHcOpts=
# GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
...
...
@@ -227,7 +234,11 @@ GhcLibWays=p
# Option flags to pass to GHC when it's compiling prelude modules
# Typically these are things like -O or -dcore-lint
# The ones that are *essential* are wired into ghc/lib/Makefile
GhcLibHcOpts= -split-objs -odir $(basename $*)
#
# -O is pretty desirable, otherwise no inlining of prelude
# things (incl "+") happens when compiling with this compiler
GhcLibHcOpts= -O -split-objs -odir $(basename $*)
#################################################################################
...
...
@@ -270,6 +281,9 @@ HsLibHcOpts=$(GhcLibHcOpts)
#
#################################################################################
# HappyHcOpts gives the flags to pass to the Haskell compiler used
# to compile the Happy source coed
HappyHcOpts =
#################################################################################
...
...
@@ -417,9 +431,6 @@ endif
#
# SRC_HC_OPTS += -O
ifeq ($(Ghc2_0),NO)
SRC_HAPPY_OPTS += -1.2
endif
#################################################################################
#
...
...
@@ -606,6 +617,7 @@ ETAGS = $(ETAGS_PREFIX)etags
VERBATIM = $(VERBATIM_PREFIX)verbatim
RUNTEST = $(RUNTEST_PREFIX)runstdtest
HAPPY = @HappyCmd@
HAPPY_VERSION = @HappyVersion@
LX = @LxCmd@
GREENCARD = @GreencardCmd@
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment