Zubin pushed to branch ghc-9.10 at Glasgow Haskell Compiler / GHC
Commits:
-
ed1a82f9
by Zubin Duggal at 2025-05-01T16:19:24+05:30
-
c9de16b5
by Zubin Duggal at 2025-05-01T18:48:01+05:30
2 changed files:
Changes:
... | ... | @@ -13,7 +13,7 @@ dnl |
13 | 13 | # see what flags are available. (Better yet, read the documentation!)
|
14 | 14 | #
|
15 | 15 | |
16 | -AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.10.1], [glasgow-haskell-bugs@haskell.org], [ghc-AC_PACKAGE_VERSION])
|
|
16 | +AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.10.2], [glasgow-haskell-bugs@haskell.org], [ghc-AC_PACKAGE_VERSION])
|
|
17 | 17 | # Version on master must be X.Y (not X.Y.Z) for ProjectVersionMunged variable
|
18 | 18 | # to be useful (cf #19058). However, the version must have three components
|
19 | 19 | # (X.Y.Z) on stable branches (e.g. ghc-9.2) to ensure that pre-releases are
|
... | ... | @@ -22,7 +22,7 @@ AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.10.1], [glasgow-ha |
22 | 22 | AC_CONFIG_MACRO_DIRS([m4])
|
23 | 23 | |
24 | 24 | # Set this to YES for a released version, otherwise NO
|
25 | -: ${RELEASE=NO}
|
|
25 | +: ${RELEASE=YES}
|
|
26 | 26 | |
27 | 27 | # The primary version (e.g. 7.5, 7.4.1) is set in the AC_INIT line
|
28 | 28 | # above. If this is not a released version, then we will append the
|
... | ... | @@ -149,7 +149,7 @@ Runtime system |
149 | 149 | - Reduce fragmentation incurred by the non-moving GC's segment allocator. In one application this reduced resident
|
150 | 150 | set size by 26%. See :ghc-ticket:`24150`.
|
151 | 151 | |
152 | -- Emit warning when :ghc-flag:`-M` is less than :ghc-flag:`-H`.
|
|
152 | +- Emit warning when :rts-flag:`-M ⟨size⟩` is less than :rts-flag:`-H [⟨size⟩]`.
|
|
153 | 153 | |
154 | 154 | - Fix a bug ((:ghc-ticket:`24672`)) causing programms on FreeBSD to occasionally terminate with the error:
|
155 | 155 | ``internal error: Ticker: read(timerfd) failed with Operation not supported and returned -1``
|
... | ... | @@ -178,7 +178,7 @@ Build system and packaging |
178 | 178 | (From https://git.savannah.gnu.org/cgit/config.git/)
|
179 | 179 | |
180 | 180 | - GHC now distinguishes more between the Cmm and C preprocessor. The new flags
|
181 | - :ghc-flag:`-pgmCmmP` and :ghc-flag:`-optCmmP` can be used to control
|
|
181 | + :ghc-flag:`-pgmCmmP ⟨cmd⟩` and :ghc-flag:`-optCmmP ⟨option⟩` can be used to control
|
|
182 | 182 | the Cmm preprocessor. C preprocessor flags will still be passed to the Cmm
|
183 | 183 | preprocessor, expect for :ghc-flag:`-g` flags which have special handling. Fixes (:ghc-ticket:`24474`)
|
184 | 184 |