Skip to content
Snippets Groups Projects
  1. Feb 27, 2024
  2. Feb 26, 2024
    • Felix Yan's avatar
      m4: Correctly detect GCC version · 61a78231
      Felix Yan authored and Marge Bot's avatar Marge Bot committed
      When calling as `cc`, GCC does not outputs lowercased "gcc" at least in 13.2.1 version here.
      
      ```
      $ cc --version
      cc (GCC) 13.2.1 20230801
      ...
      ```
      
      This fails the check and outputs the confusing message: `configure: $CC is not gcc; assuming it's a reasonably new C compiler`
      
      This patch makes it check for upper-cased "GCC" too so that it works correctly:
      
      ```
      checking version of gcc... 13.2.1
      ```
      61a78231
    • Cheng Shao's avatar
      ci: enable parallelism in hadrian/ghci scripts · 50bfdb46
      Cheng Shao authored and Marge Bot's avatar Marge Bot committed
      This commit enables parallelism when the hadrian/ghci scripts are
      called in CI. The time bottleneck is in the hadrian build step, but
      previously the build step wasn't parallelized.
      50bfdb46
    • Cheng Shao's avatar
      hadrian/hie-bios: pass -j to hadrian · c71bfdff
      Cheng Shao authored and Marge Bot's avatar Marge Bot committed
      This commit passes -j to hadrian in the hadrian/hie-bios scripts. When
      the user starts HLS in a fresh clone that has just been configured, it
      takes quite a while for hie-bios to pick up the ghc flags and start
      actual indexing, due to the fact that the hadrian build step defaulted
      to -j1, so -j speeds things up and improve HLS user experience in GHC.
      Also add -j flag to .ghcid to speed up ghcid, and sets the Windows
      build root to .hie-bios which also works and unifies with other
      platforms, the previous build root _hie-bios was missing from
      .gitignore anyway.
      c71bfdff
    • Zubin's avatar
      rel-eng/fetch-gitlab.py: Fix name of aarch64 alpine 3_18 release job · f3de8a3c
      Zubin authored and Marge Bot's avatar Marge Bot committed
      f3de8a3c
    • Jade's avatar
      GHCi: Improve response to unloading, loading and reloading modules · 4e4d47a0
      Jade authored and Marge Bot's avatar Marge Bot committed
      Fixes #13869
      4e4d47a0
  3. Feb 25, 2024
  4. Feb 24, 2024
  5. Feb 23, 2024
    • Ben Gamari's avatar
      Allow docstrings after exports · 5121a4ed
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      Here we extend the parser and AST to preserve docstrings following
      export items. We then extend Haddock to parse `@since` annotations in
      such docstrings, allowing changes in export structure to be properly
      documented.
      
      Bumps haddock submodule.
      5121a4ed
  6. Feb 21, 2024
Loading