Skip to content
GitLab
Menu
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
8275817f
Commit
8275817f
authored
Feb 03, 2009
by
Ian Lynagh
Browse files
Build dph with the stage2 compiler
It will use TH, so needs to be built with stage2.
parent
6ba3d614
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
8275817f
...
...
@@ -152,6 +152,7 @@ stage2 : check-all
$(MAKE)
-C
compiler
stage
=
2 boot
$(MAKE)
-C
compiler
stage
=
2
$(MAKE)
-C
utils with-stage-2
$(MAKE)
-C
libraries
stage
=
2 all
ifeq
"$(HADDOCK_DOCS)" "YES"
$(MAKE)
-C
libraries doc
$(MAKE)
-C
compiler doc
stage
=
2
...
...
libraries/Makefile
View file @
8275817f
...
...
@@ -36,9 +36,16 @@ TOP=..
include
$(TOP)/mk/boilerplate.mk
include
$(TOP)/mk/cabal-flags.mk
ifeq
"$(stage)" ""
stage
:=
1
endif
# Any libraries listed here should also be in ../packages
SUBDIRS
=
ghc-prim
$(INTEGER_LIBRARY)
base syb base3-compat array packedstring
SUBDIRS
:=
ifeq
"$(stage)" "1"
SUBDIRS
+=
ghc-prim
$(INTEGER_LIBRARY)
base syb base3-compat array packedstring
SUBDIRS
+=
containers bytestring old-locale old-time filepath
ifeq
"$(GhcLibsWithUnix)" "YES"
SUBDIRS
+=
unix
...
...
@@ -65,6 +72,11 @@ SUBDIRS += $(wildcard time)
SUBDIRS
+=
$(
wildcard
stm
)
SUBDIRS
+=
$(
wildcard
xhtml
)
SUBDIRS
+=
$(
wildcard
parallel
)
endif
endif
ifeq
"$(stage)" "2"
ifneq
"$(GhcBootLibs)" "YES"
ifneq
"$(wildcard dph)" ""
SUBDIRS
+=
dph/dph-base
SUBDIRS
+=
dph/dph-prim-interface
...
...
@@ -74,6 +86,7 @@ SUBDIRS += dph/dph-seq
SUBDIRS
+=
dph/dph-par
endif
endif
endif
# -----------------------------------------------------------------------------
...
...
@@ -189,7 +202,7 @@ configure: $(foreach SUBDIR,$(SUBDIRS), \
ALL_CONFIGURE_FLAGS
=
\
$(INSTALL_DIRS_CONFIGURE_FLAGS)
\
$(USE_STAGE
1
_CONFIGURE_FLAGS)
\
$
(
USE_STAGE
$(stage)
_CONFIGURE_FLAGS
)
\
$(COMMON_CONFIGURE_FLAGS)
\
--haddock-options
=
"--use-contents=../index.html
\
--use-index=../doc-index.html"
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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