Skip to content
Snippets Groups Projects
  1. Aug 29, 2023
  2. Oct 07, 2022
  3. Jan 14, 2022
  4. Jan 04, 2022
  5. Nov 15, 2021
  6. Jun 11, 2021
  7. Feb 05, 2021
  8. Dec 30, 2020
  9. Sep 17, 2020
  10. Mar 27, 2020
    • Alec Theriault's avatar
      Update README · b025a9c6
      Alec Theriault authored
      Removed some out of date links/info, added some more useful links.
      
        * badge to Hackage
        * update old trac link
        * `ghc-head` => `ghc-8.10`
        * `cabal new-*` is now `cabal v2-*` and it should Just Work
        * `--test-option='--accept'` is the way to accept testsuite output
      b025a9c6
  11. May 31, 2019
    • Takenobu Tani's avatar
      Update `$(TOP)/*.md` documents · 0b01a354
      Takenobu Tani authored and Marge Bot's avatar Marge Bot committed
      I updated the top documents to the latest status:
      
        - HACKING.md:
          - Modify Phabricator to GitLab infomation
          - Remove old Trac information
          - Add link to GitLab activity
      
        - MAKEHELP.md:
          - Add link to hadrian wiki
          - Fix markdown format
      
        - INSTALL.md:
          - Modify boot command to remove python3
          - Fix markdown format
      
        - README.md:
          - Modify tarball file suffix
          - Fix markdown format
      
      I checked the page display on the GitHub and GitLab web.
      
      [skip ci]
      0b01a354
  12. Apr 13, 2019
  13. Apr 04, 2019
  14. Mar 27, 2019
  15. Mar 25, 2019
    • Takenobu Tani's avatar
      Update Wiki URLs to point to GitLab · 3769e3a8
      Takenobu Tani authored and Marge Bot's avatar Marge Bot committed
      This moves all URL references to Trac Wiki to their corresponding
      GitLab counterparts.
      
      This substitution is classified as follows:
      
      1. Automated substitution using sed with Ben's mapping rule [1]
          Old: ghc.haskell.org/trac/ghc/wiki/XxxYyy...
          New: gitlab.haskell.org/ghc/ghc/wikis/xxx-yyy...
      
      2. Manual substitution for URLs containing `#` index
          Old: ghc.haskell.org/trac/ghc/wiki/XxxYyy...#Zzz
          New: gitlab.haskell.org/ghc/ghc/wikis/xxx-yyy...#zzz
      
      3. Manual substitution for strings starting with `Commentary`
          Old: Commentary/XxxYyy...
          New: commentary/xxx-yyy...
      
      See also !539
      
      [1]: https://gitlab.haskell.org/bgamari/gitlab-migration/blob/master/wiki-mapping.json
      3769e3a8
  16. Mar 18, 2019
  17. Mar 15, 2019
  18. Feb 03, 2019
    • Nathan Collins's avatar
      Update README instructions for Stack · ded34791
      Nathan Collins authored and Alec Theriault's avatar Alec Theriault committed
      No need to `stack install` Haddock to test it. Indeed, `stack install` changes the `haddock` on user's `PATH` if `~/.local/bin` is on user's `PATH` which may not be desirable when hacking on Haddock.
      ded34791
  19. Sep 22, 2018
  20. Aug 29, 2018
  21. Jul 20, 2018
    • Simon Jakobi's avatar
      Update the ghc-8.6 branch (#889) · 49e1a415
      Simon Jakobi authored and Alex Biehl's avatar Alex Biehl committed
      * Revert "Bump GHC version to 8.6"
      
      This was applied to the wrong branch; there's now a `ghc-8.6` branch;
      ghc-head is always supposed to point to GHC HEAD, i.e. an odd major version.
      The next version bump to `ghc-head` is supposed to go from e.g. 8.5 to 8.7
      
      This reverts commit 5e3cf5d8868323079ff5494a8225b0467404a5d1.
      
      * README updates (#856)
      
      * README: Remove mentions of master branch
      
      * README: Add instructions for using html-test
      
      * README: Change command to run _all_ the testsuites
      
      * README: Add project overview section
      
      (cherry picked from commit 61d6f935da97eb96685f07bf385102c2dbc2a33c)
      
      * Export more fixities for Hoogle (#871)
      
      This exports fixities for more things, including class methods and
      type-level operators.
      
      (cherry picked from commit 88316b972e3d47197b1019111bae0f7f87275fce)
      
      * Avoid line breaks due to line length in Hoogle (#868)
      
      * Avoid line breaks due to line length in Hoogle
      
      Hoogle operates in a line-oriented fashion, so we should avoid ever
      breaking due to long lines.
      
      One way of doing this non-intrusively is to modify the 'DynFlags' that
      are threaded through the 'Hoogle' module (note this is anyways only
      passed through for use in the various 'showSDoc' functions).
      
      * Amend test case
      
      (cherry picked from commit 657b1b3d519545f8d4ca048c06210d6cbf0f0da0)
      
      * tyThingToLHsDecl: Preserve type synonyms that contain a forall (#880)
      
      * tyThingToLHsDecls: Preserve type synonyms that contain a forall
      
      Fixes haskell/haddock#879.
      
      * Add Note [Invariant: Never expand type synonyms]
      
      * Clarify Note [Invariant: Never expand type synonyms]
      
      (cherry picked from commit c3eb3f0581f69e816f9453b1747a9f2a3ba02bb9)
      
      * Fix HEAD html-test (#860)
      
      * Update tests for 'StarIsType'
      
      * Accept tests
      
      * Revert "Update tests for 'StarIsType'"
      
      This reverts commit 7f0c01383bbba6dc5af554ee82988d2cf44e407a.
      
      * Refactor handling of parens in types (#874)
      
      * Fix type parenthesization in Hoogle backend
      
      Ported the logic in the HTML and LaTeX backends for adding in parens
      into something top-level in 'GhcUtil'. Calling that from the Hoogle
      backend fixes haskell/haddock#873.
      
      * Remove parenthesizing logic from LaTeX and XHTML backends
      
      Now, the only times that parenthesis in types are added in any backend
      is through the explicit 'HsParTy' constructor. Precedence is also
      represented as its own datatype.
      
      * List out cases explicitly vs. catch-all
      
      * Fix printing of parens for QuantifiedConstraints
      
      The priority of printing 'forall' types was just one too high.
      
      Fixes haskell/haddock#877.
      
      * Accept HTML output for quantified contexts test
      
      * Preserve docs on type family instances (#867)
      
      * Preserve docs on type family instances
      
      The only problem was that the instance location was slightly off
      for type family instances.
      
      * Accept output
      
      (cherry picked from commit 133e9c2c168db19c1135479f7ab144c4e33af2a4)
      
      * Fix broken instance source links (#869)
      
      The problem manifests itself in instances that are defined in
      modules other than the module where the class is defined. The fix
      is just to thread through the 'Module' of the instance further
      along.
      
      Since orphan instances appear to already have been working, I didn't
      do anything there.
      
      (cherry picked from commit 2de7c2acf9b1ec85b09027a8bb58bf8512e91c05)
      
      * Add some more unicode related tests (#872)
      
      This has been fixed for sure ever since we switched from attoparsec to
      parsec. Parts of it may have been working before that, but there was a
      point where this would have failed (see haskell/haddock#191).
      
      A regression test never hurt anyone. :)
      
      (cherry picked from commit 5ec7715d418bfac0f26aec6039792a99a6e89370)
      
      * Misc tests (#858)
      
      * More tests
      
      * spliced types
      * constructor/pattern argument docs
      * strictness marks on fields with argument docs
      
      * latex test cases need seperate directory
      
      * Accept tests
      
      * Additional tests for the identifier parser (#816)
      
      * Add tests for the identifier parser
      
      * docs: Clarify how to delimit identifiers
      
      (cherry picked from commit 0861affeca4d72938f05a2eceddfae2c19199071)
      49e1a415
    • Simon Jakobi's avatar
      README updates (#856) · cb9d2099
      Simon Jakobi authored
      * README: Remove mentions of master branch
      
      * README: Add instructions for using html-test
      
      * README: Change command to run _all_ the testsuites
      
      * README: Add project overview section
      
      (cherry picked from commit 61d6f935da97eb96685f07bf385102c2dbc2a33c)
      cb9d2099
  22. Jun 30, 2018
    • Simon Jakobi's avatar
      README updates (#856) · b91d334a
      Simon Jakobi authored and Alex Biehl's avatar Alex Biehl committed
      * README: Remove mentions of master branch
      
      * README: Add instructions for using html-test
      
      * README: Change command to run _all_ the testsuites
      
      * README: Add project overview section
      b91d334a
  23. Apr 24, 2018
  24. Apr 23, 2018
  25. Apr 03, 2018
    • Alp Mestanogullari's avatar
      Preliminary bindist (#558) · 8219f6a4
      Alp Mestanogullari authored and Andrey Mokhov's avatar Andrey Mokhov committed
      * Preliminary bindist rule
      
      For now, we only ship `<build root>/{bin, lib}` and the few make build system
      related files that are needed to support a simple
      
      ```
      ./configure [--prefix=PATH] && make install
      ```
      
      workflow. The current binary distributions of GHC support a wider range
      of parameters, but I figured it would be a good thing to start with this
      and enhance it as we all see fit and perhaps using feedback from GHC HQ
      (@bgamari in particular) and bindist users.
      
      * document binary distribution rule in README
      
      * sdist-ghc -> source-dist, Rules.Bindist -> Rules.BinaryDist
      
      * add missing src/Rules/BinaryDist.hs
      8219f6a4
    • Andrey Mokhov's avatar
      Revert "Preliminary bindist rule (#555)" (#557) · 8c2817a3
      Andrey Mokhov authored
      This reverts commit 15797302.
      8c2817a3
    • Alp Mestanogullari's avatar
      Preliminary bindist rule (#555) · 15797302
      Alp Mestanogullari authored and Andrey Mokhov's avatar Andrey Mokhov committed
      * Preliminary bindist rule
      
      For now, we only ship `<build root>/{bin, lib}` and the few make build system
      related files that are needed to support a simple
      
      ```
      ./configure [--prefix=PATH] && make install
      ```
      
      workflow. The current binary distributions of GHC support a wider range
      of parameters, but I figured it would be a good thing to start with this
      and enhance it as we all see fit and perhaps using feedback from GHC HQ
      (@bgamari in particular) and bindist users.
      
      * document binary distribution rule in README
      
      * sdist-ghc -> source-dist, Rules.Bindist -> Rules.BinaryDist
      15797302
  26. Mar 30, 2018
    • Alp Mestanogullari's avatar
      Use Cabal directly in place of ghc-cabal + make build root configurable (#531) · 3a68f11c
      Alp Mestanogullari authored and Andrey Mokhov's avatar Andrey Mokhov committed
      * Use Cabal directly in place of ghc-cabal; make build root configurable.
      
      This commit implements two significant changes (that were not easy to
      separate):
      
      - Don't use ghc-cabal anymore for getting information about Haskell packages.
        We now instead directly use Cabal-the-library.
      
      - Make the build root configurable. This effectively gets rid of the inplace
        logic and allows us to place _all_ build artefacts in some directory of
        our choice, by passing '--build-root <some path>' to hadrian.
      
      The code for this was mostly taken from #445.
      
      * fix documentation rules
      
      * remove some leftover unrelated, commented-out code
      
      * more documentation fixes, address some feedback
      
      * cleanup
      
      * more cleanup
      
      * boot and configure explicitly in travis CI scripts
      
      * update cabal/ghc versions in .travis.yml (8.0.x not supported anymore)
      
      * temporarily disable dynamic ways in Settings.Default
      
      * update appveyor script
      
      * travis: when booting with 8.2.2, build a complete stage2 compiler
      
      * Fix CI?
      
      Try to fix the CI by adding the `debug` rts way back in.
      
      * Update Quickest.hs
      
      Replicate the make build systems build flavours.
      
      * Update .travis.yml
      
      - Run selftest, and build in separate instances.
      - try with python2
      - and unify mac to stage2
      
      * Update .travis.yml
      
      upgrade python on mac
      
      * [travis] os x: test the freshly built ghc
      
      * Get rid of two unused GhcCabalMode constructors
      
      * fix ghc-split rule, get rid of Install/Wrappers rules
      
      * address more feedback
      
      * ConfiguredCabal -> PackageData, more comments, more feedback addressed
      
      * make the complete stage 2 build the default
      
      * use a dummy package instead of base in Rules.hs
      
      * update CI scripts
      
      * attempt at fixing hadrian's -c option
      
      * .travis.yml: use -c everywhere again
      
      * travis: back to explicit './boot && ./configure'
      
      * update README.md and doc/user-settings.md to reflect configurable build root
      
      * some more feedback
      3a68f11c
  27. Mar 14, 2018
  28. Feb 27, 2018
  29. Dec 17, 2017
  30. Dec 11, 2017
  31. Nov 23, 2017
    • Ben Gamari's avatar
      Fix README · 5fdb8588
      Ben Gamari authored
      This was unfortunately overwritten by the Hadrian README in a previous
      Hadrian merge.
      5fdb8588
  32. Nov 22, 2017
  33. Nov 19, 2017
  34. Nov 15, 2017
  35. Nov 12, 2017
Loading