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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
gershomb
GHC
Commits
83655b06
Commit
83655b06
authored
5 years ago
by
Ben Gamari
Committed by
Marge Bot
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
hadrian: Warn user if hadrian build fails due to lack of threaded RTS
See #16873.
parent
7f72b540
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hadrian/build.cabal.sh
+15
-1
15 additions, 1 deletion
hadrian/build.cabal.sh
hadrian/hadrian.cabal
+12
-0
12 additions, 0 deletions
hadrian/hadrian.cabal
with
27 additions
and
1 deletion
hadrian/build.cabal.sh
+
15
−
1
View file @
83655b06
...
...
@@ -21,13 +21,27 @@ fi
CABVERSTR
=
$(
"
$CABAL
"
--numeric-version
)
CABVER
=(
${
CABVERSTR
//./
}
)
build_failed
()
{
(
ghc
--info
|
grep
-s
'("Support SMP","YES")'
)
\
||
cat
<<
EOF
Your compiler does not support the threaded runtime system.
Please disable the
\`
threaded
\`
Cabal flag in project.cabal.local
by running:
echo -e "package hadrian
\n
flags: -threaded" >> project.cabal.local
EOF
exit
1
}
if
[
"
${
CABVER
[0]
}
"
-gt
2
-o
"
${
CABVER
[0]
}
"
-eq
2
-a
"
${
CABVER
[1]
}
"
-ge
2
]
;
then
"
$CABAL
"
--project-file
=
"
$PROJ
"
new-build
$CABFLAGS
-j
exe:hadrian
# use new-exec instead of new-run to make sure that the build-tools (alex & happy) are in PATH
"
$CABAL
"
--project-file
=
"
$PROJ
"
new-exec
$CABFLAGS
hadrian
--
\
--directory
"
$PWD
"
\
"
$@
"
"
$@
"
\
||
build_failed
else
echo
"Cabal version is too old; you need at least cabal-install 2.2"
exit
2
...
...
This diff is collapsed.
Click to expand it.
hadrian/hadrian.cabal
+
12
−
0
View file @
83655b06
...
...
@@ -14,6 +14,15 @@ source-repository head
type: git
location: https://gitlab.haskell.org/ghc/ghc
-- To accomodate #16873
flag threaded
manual: True
default: True
description: Build with the threaded runtime for improved
performance. Users with bootstrap compilers
which don't support the threaded runtime should
disable this flag.
executable hadrian
main-is: Main.hs
hs-source-dirs: .
...
...
@@ -142,6 +151,9 @@ executable hadrian
-Wredundant-constraints
-fno-warn-name-shadowing
-rtsopts
if flag(threaded)
ghc-options:
-- * -I0: Disable idle GC to avoid redundant GCs while
-- waiting for external processes
-- * -qg: Don't use parallel GC as the synchronization
...
...
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