Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
8cef78c5
Commit
8cef78c5
authored
Jul 20, 2011
by
dterei
Browse files
Add an unregisterised config to build.mk
parent
b61ad3e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
mk/build.mk.sample
View file @
8cef78c5
...
...
@@ -27,6 +27,9 @@
# A development build, working on the stage 2 compiler:
#BuildFlavour = devel2
# An unregisterised, optimised build of ghc, for porting:
#BuildFlavour = unreg
GhcLibWays = v
# -------- 1. A Performance/Distribution build--------------------------------
...
...
@@ -133,6 +136,26 @@ BUILD_DOCBOOK_PDF = NO
endif
# -------- A Unregisterised build) -------------------------------------------
ifeq "$(BuildFlavour)" "unreg"
GhcUnregisterised = YES
GhcWithNativeCodeGen = NO
SRC_HC_OPTS = -O -H64m
GhcStage1HcOpts = -O
GhcStage2HcOpts = -O2
GhcHcOpts = -Rghc-timing
GhcLibHcOpts = -O2
SplitObjs = NO
HADDOCK_DOCS = NO
BUILD_DOCBOOK_HTML = NO
BUILD_DOCBOOK_PS = NO
BUILD_DOCBOOK_PDF = NO
endif
# -----------------------------------------------------------------------------
# Other settings that might be useful
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment