[Git][ghc/ghc][wip/andreask/wio/fix_linux] 23 commits: Fix typos and formatting in user guide

Andreas Klebinger gitlab at gitlab.haskell.org
Mon Jun 22 16:57:39 UTC 2020



Andreas Klebinger pushed to branch wip/andreask/wio/fix_linux at Glasgow Haskell Compiler / GHC


Commits:
57f4f9f3 by Jan Hrček at 2020-06-22T12:54:53-04:00
Fix typos and formatting in user guide

- - - - -
c89d04ca by Jan Hrček at 2020-06-22T12:54:53-04:00
Resolve TODO

- - - - -
92c82f44 by Jan Hrček at 2020-06-22T12:54:53-04:00
Rename TcHoleErrors to GHC.Tc.Errors.Hole

- - - - -
8cf1961d by Stefan Schulze Frielinghaus at 2020-06-22T12:54:53-04:00
hadrian: Build with threaded runtime if available

See #16873.

- - - - -
6f526580 by Sylvain Henry at 2020-06-22T12:54:53-04:00
T16190: only measure bytes_allocated

Just adding `{-# LANGUAGE BangPatterns #-}` makes the two other metrics
fluctuate by 13%.

- - - - -
e6f2b4a2 by Adam Sandberg Ericsson at 2020-06-22T12:54:53-04:00
docs: fix formatting in users guide

- - - - -
dbab4cc5 by Sylvain Henry at 2020-06-22T12:54:53-04:00
Move CLabel assertions into smart constructors (#17957)

It avoids using DynFlags in the Outputable instance of Clabel to check
assertions at pretty-printing time.

- - - - -
5b46a545 by Tamar Christina at 2020-06-22T12:54:53-04:00
winio: update the haskelline submodule

- - - - -
5bd4867d by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Fix ThreadDelay001 CPP

- - - - -
66ce487d by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Fix openFile009 merge conflict leftover

- - - - -
4ea1789e by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Accept T9681 output.

GHC now reports String instead of [Char].

- - - - -
83612ec2 by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Fix cabal006 after upgrading cabal submodule

Demand cabal 2.0 syntax instead of >= 1.20 as required by newer cabal versions.

- - - - -
5ca6c227 by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Fix stderr output for ghci/linking/dyn tests.

We used to filter rtsopts, i opted to instead just accept the warning of it having no effect.
This works both for -rtsopts, as well as -with-rtsopts which winio adds.

- - - - -
211369d9 by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Adjust T15261b stdout for --io-manager flag.

- - - - -
188ffe02 by Andreas Klebinger at 2020-06-22T12:54:53-04:00
winio: Adjust T5435_dyn_asm stderr

The warning about rtsopts having no consequences is expected.
So accept new stderr.

- - - - -
6a382dfd by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: Also accept T7037 stderr

- - - - -
4ae935a2 by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: fix cabal04 by filtering rts args

- - - - -
ff09505f by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: fix cabal01 by accepting expected stderr

- - - - -
0fbd5eeb by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: fix safePkg01 by accepting expected stderr

- - - - -
c3b65216 by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: fix T5435_dyn_gcc by accepting expected stderr

- - - - -
181f121d by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: fix tempfiles test on linux

- - - - -
d491b0be by Andreas Klebinger at 2020-06-22T12:54:54-04:00
winio: Accept accepted stderr for T3807

- - - - -
6cabb9b1 by Andreas Klebinger at 2020-06-22T12:56:50-04:00
winio: Accept accepted stderr for linker_unload

- - - - -


30 changed files:

- compiler/GHC/Cmm/CLabel.hs
- compiler/GHC/StgToCmm/Closure.hs
- docs/users_guide/8.12.1-notes.rst
- docs/users_guide/extending_ghc.rst
- docs/users_guide/exts/constrained_class_methods.rst
- docs/users_guide/exts/explicit_forall.rst
- docs/users_guide/exts/flexible_contexts.rst
- docs/users_guide/exts/gadt_syntax.rst
- docs/users_guide/exts/hex_float_literals.rst
- docs/users_guide/exts/instances.rst
- docs/users_guide/exts/nullary_type_classes.rst
- docs/users_guide/exts/primitives.rst
- docs/users_guide/exts/rank_polymorphism.rst
- docs/users_guide/exts/record_wildcards.rst
- docs/users_guide/exts/type_families.rst
- docs/users_guide/exts/undecidable_super_classes.rst
- docs/users_guide/profiling.rst
- docs/users_guide/using-warnings.rst
- docs/users_guide/win32-dlls.rst
- hadrian/build-cabal
- libraries/base/GHC/OverloadedLabels.hs
- libraries/base/tests/Concurrent/ThreadDelay001.hs
- libraries/base/tests/IO/openFile009.hs
- libraries/base/tests/T9681.stderr
- libraries/base/tests/tempfiles.stdout
- libraries/haskeline
- + testsuite/tests/cabal/cabal01/cabal01.stderr
- testsuite/tests/cabal/cabal04/Makefile
- testsuite/tests/cabal/cabal06/p-1.0/p.cabal
- testsuite/tests/cabal/cabal06/p-1.1/p.cabal


The diff was not included because it is too large.


View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f0282dbfe7666127480852bb72fcbac9a3a1a265...6cabb9b1493adbc1bef1cc1d7b446ae1205d6b8f

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f0282dbfe7666127480852bb72fcbac9a3a1a265...6cabb9b1493adbc1bef1cc1d7b446ae1205d6b8f
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/20200622/7df4cf26/attachment-0001.html>


More information about the ghc-commits mailing list