Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jberryman
GHC
Commits
8275817f
Commit
8275817f
authored
Feb 03, 2009
by
Ian Lynagh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
Makefile
Makefile
+1
-0
libraries/Makefile
libraries/Makefile
+15
-2
No files found.
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
Markdown
is supported
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