[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 4 commits: users-guide: Fix -rtsopts default
Marge Bot
gitlab at gitlab.haskell.org
Sun May 19 13:52:31 UTC 2019
Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC
Commits:
1b818502 by Kirill Elagin at 2019-05-19T13:52:27Z
users-guide: Fix -rtsopts default
- - - - -
69b1ede5 by Javran Cheng at 2019-05-19T13:52:28Z
Fix doc for Data.Function.fix.
Doc-only change.
- - - - -
b047a1f9 by Ben Gamari at 2019-05-19T13:52:29Z
gitlab-ci: Allow Windows Hadrian build to fail
Due to #16574.
- - - - -
609366cc by Ben Gamari at 2019-05-19T13:52:29Z
Update .gitlab-ci.yml
- - - - -
3 changed files:
- .gitlab-ci.yml
- docs/users_guide/phases.rst
- libraries/base/Data/Function.hs
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -560,6 +560,8 @@ validate-x86_64-linux-fedora27:
stage: full-build
variables:
GHC_VERSION: "8.6.2"
+ # due to #16574 this currently fails
+ allow_failure: true
script:
- |
python boot
=====================================
docs/users_guide/phases.rst
=====================================
@@ -937,7 +937,7 @@ for example).
:type: dynamic
:category: linking
- :default: all
+ :default: some
This option affects the processing of RTS control options given
either on the command line or via the :envvar:`GHCRTS` environment
=====================================
libraries/base/Data/Function.hs
=====================================
@@ -45,7 +45,7 @@ infixl 1 &
-- 120
--
-- Instead of making a recursive call, we introduce a dummy parameter @rec@;
--- when used within 'fix', this parameter then refers to 'fix' argument, hence
+-- when used within 'fix', this parameter then refers to 'fix'’s argument, hence
-- the recursion is reintroduced.
fix :: (a -> a) -> a
fix f = let x = f x in x
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/bc30b95b2dce7b339a6526bb2e09126fd1522a58...609366ccf49a41a860fab5f22d0fe73aad0c4cce
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/bc30b95b2dce7b339a6526bb2e09126fd1522a58...609366ccf49a41a860fab5f22d0fe73aad0c4cce
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20190519/c97067c9/attachment-0001.html>
More information about the ghc-commits
mailing list