[Git][ghc/ghc][wip/release-9.8.1] 2 commits: hadrian: Fix hpc parser path
Ben Gamari (@bgamari)
gitlab at gitlab.haskell.org
Fri Oct 6 21:28:36 UTC 2023
Ben Gamari pushed to branch wip/release-9.8.1 at Glasgow Haskell Compiler / GHC
Commits:
b06a4e39 by Ben Gamari at 2023-10-06T17:28:32-04:00
hadrian: Fix hpc parser path
- - - - -
8f864a5d by Ben Gamari at 2023-10-06T17:28:32-04:00
Release GHC 9.8.1
- - - - -
2 changed files:
- configure.ac
- hadrian/src/Rules/SourceDist.hs
Changes:
=====================================
configure.ac
=====================================
@@ -13,7 +13,7 @@ dnl
# see what flags are available. (Better yet, read the documentation!)
#
-AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.8.0], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
+AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.8.1], [glasgow-haskell-bugs at haskell.org], [ghc-AC_PACKAGE_VERSION])
# Version on master must be X.Y (not X.Y.Z) for ProjectVersionMunged variable
# to be useful (cf #19058). However, the version must have three components
# (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.8.0], [glasgow-has
AC_CONFIG_MACRO_DIRS([m4])
# Set this to YES for a released version, otherwise NO
-: ${RELEASE=NO}
+: ${RELEASE=YES}
# The primary version (e.g. 7.5, 7.4.1) is set in the AC_INIT line
# above. If this is not a released version, then we will append the
=====================================
hadrian/src/Rules/SourceDist.hs
=====================================
@@ -184,7 +184,7 @@ prepareTree dest = do
, (stage0InTree , compiler, "GHC/Parser.y", "GHC/Parser.hs")
, (stage0InTree , compiler, "GHC/Parser/Lexer.x", "GHC/Parser/Lexer.hs")
, (stage0InTree , compiler, "GHC/Parser/HaddockLex.x", "GHC/Parser/HaddockLex.hs")
- , (stage0InTree , hpcBin, "src/HpcParser.y", "src/HpcParser.hs")
+ , (stage0InTree , hpcBin, "src/Trace/Hpc/Parser.y", "src/Trace/Hpc/Parser.hs")
, (stage0InTree , genprimopcode, "Parser.y", "Parser.hs")
, (stage0InTree , genprimopcode, "Lexer.x", "Lexer.hs")
]
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/99cb835d46624c0ef81fa3a5a11513d402c58460...8f864a5d81ed951fa2e83b6b761e639400b3c439
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/99cb835d46624c0ef81fa3a5a11513d402c58460...8f864a5d81ed951fa2e83b6b761e639400b3c439
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/20231006/22c62b33/attachment-0001.html>
More information about the ghc-commits
mailing list