ghc-lib-parser 8.10.3.20201220 → 8.10.4.20210206
raw patch · 4 files changed
+84/−20 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- compiler/main/SysTools/BaseDir.hs +78/−14
- ghc-lib-parser.cabal +1/−1
- ghc-lib/stage0/lib/ghcversion.h +1/−1
- ghc-lib/stage0/libraries/ghc-boot/build/GHC/Version.hs +4/−4
compiler/main/SysTools/BaseDir.hs view
@@ -34,16 +34,6 @@ import System.Directory (doesDirectoryExist) #endif -#if defined(mingw32_HOST_OS)-# if defined(i386_HOST_ARCH)-# define WINDOWS_CCONV stdcall-# elif defined(x86_64_HOST_ARCH)-# define WINDOWS_CCONV ccall-# else-# error Unknown mingw32 arch-# endif-#endif- {- Note [topdir: How GHC finds its files] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~@@ -70,16 +60,89 @@ GHC has some custom logic on Windows for finding the mingw toolchain and perl. Depending on whether GHC is built with the make build system or Hadrian, and on whether we're-running a bindist, we might find the mingw toolchain and perl+running a bindist, we might find the mingw toolchain either under $topdir/../{mingw, perl}/ or $topdir/../../{mingw, perl}/. +This story is long and with lots of twist and turns.. But lets talk about how+the build system finds and wires through the toolchain information.++1) It all starts in configure.ac which has two modes it operates on:+ a) The default is where `EnableDistroToolchain` is false. This indicates+ that we want to use the in-tree bundled toolchains. In this mode we will+ download and unpack some custom toolchains into the `inplace/mingw` folder+ and everything is pointed to that folder.+ b) The second path is when `EnableDistroToolchain` is true. This makes the+ toolchain behave a lot like Linux, in that the environment is queried for+ information on the tools we require.++ From configure.ac we export the standard variables to set the paths to the+ tools for the build system to use.++2) After we have the path to the tools we have to generate the right paths to+ store in the settings file for ghc to use. This is done in aclocal.m4.+ Again we have two modes of operation:+ a) If not `EnableDistroToolchain` the paths are rewritten to paths using a+ variable `$tooldir` as we need an absolute path. $tooldir is filled in by+ the `expandToolDir` function in this module at GHC startup.+ b) When `EnableDistroToolchain` then instead of filling in a absolute path+ we fill in just the program name. The assumption here is that at runtime+ the environment GHC is operating on will be the same as the one configure+ was run in. This means we expect `gcc, ld, as` etc to be on the PATH.++ From `aclocal.m4` we export a couple of variables starting with `Settings`+ which will be used to generate the settings file.++3) The next step is to generate the settings file, this is where things diverge+ based on the build system. Both Make and Hadrian handle this differently:++make)+ Make deals with this rather simply. As an output of configure.ac+ `config.mk.in` is processed and `config.mk` generated which has the values we+ set in `aclocal.m4`. This allows the rest of the build system to have access+ to these and other values determined by configure.++ Based on this file, `includes/ghc.mk` when ran will produce the settings file+ by echoing the values into a the final file. Coincidentally this is also+ where `ghcplatform.h` and `ghcversion.h` generated which contains information+ about the build platform and sets CPP for use by the entire build.++hadrian)+ For hadrian the file `cfg/system.config.in` is preprocessed by configure and+ the output written to `system.config`. This serves the same purpose as+ `config.mk` but it rewrites the values that were exported. As an example+ `SettingsCCompilerCommand` is rewritten to `settings-c-compiler-command`.++ Next up is `src/Oracles/Settings.hs` which makes from some Haskell ADT to+ the settings `keys` in the `system.config`. As an example,+ `settings-c-compiler-command` is mapped to+ `SettingsFileSetting_CCompilerCommand`.++ The last part of this is the `generateSettings` in `src/Rules/Generate.hs`+ which produces the desired settings file out of Hadrian. This is the+ equivalent to `includes/ghc.mk`.++--++So why do we have these? On Windows there's no such thing as a platform compiler+and as such we need to provide GCC and binutils. The easiest way is to bundle+these with the compiler and wire them up. This gives you a relocatable+binball. This works fine for most users. However mingw-w64 have a different+requirement. They require all packages in the repo to be compiled using the+same version of the compiler. So it means when they are rebuilding the world to+add support for GCC X, they expect all packages to have been compiled with GCC X+which is a problem since we ship an older GCC version.++GHC is a package in mingw-w64 because there are Haskell packages in the+repository which of course requires a Haskell compiler. To help them we+provide the override which allows GHC to instead of using an inplace compiler to+play nice with the system compiler instead. -} -- | Expand occurrences of the @$tooldir@ interpolation in a string -- on Windows, leave the string untouched otherwise. expandToolDir :: Maybe FilePath -> String -> String-#if defined(mingw32_HOST_OS)+#if defined(mingw32_HOST_OS) && !defined(USE_INPLACE_MINGW_TOOLCHAIN) expandToolDir (Just tool_dir) s = expandPathVar "tooldir" tool_dir s expandToolDir Nothing _ = panic "Could not determine $tooldir" #else@@ -113,14 +176,15 @@ Nothing -> getBaseDir --- See Note [tooldir: How GHC finds mingw and perl on Windows]+-- See Note [tooldir: How GHC finds mingw on Windows] -- Returns @Nothing@ when not on Windows. -- When called on Windows, it either throws an error when the -- tooldir can't be located, or returns @Just tooldirpath@.+-- If the distro toolchain is being used we treat Windows the same as Linux findToolDir :: FilePath -- ^ topdir -> IO (Maybe FilePath)-#if defined(mingw32_HOST_OS)+#if defined(mingw32_HOST_OS) && !defined(USE_INPLACE_MINGW_TOOLCHAIN) findToolDir top_dir = go 0 (top_dir </> "..") where maxDepth = 3 go :: Int -> FilePath -> IO (Maybe FilePath)
ghc-lib-parser.cabal view
@@ -1,7 +1,7 @@ cabal-version: >=1.22 build-type: Simple name: ghc-lib-parser-version: 8.10.3.20201220+version: 8.10.4.20210206 license: BSD3 license-file: LICENSE category: Development
ghc-lib/stage0/lib/ghcversion.h view
@@ -5,7 +5,7 @@ # define __GLASGOW_HASKELL__ 810 #endif -#define __GLASGOW_HASKELL_PATCHLEVEL1__ 3+#define __GLASGOW_HASKELL_PATCHLEVEL1__ 4 #define MIN_VERSION_GLASGOW_HASKELL(ma,mi,pl1,pl2) (\ ((ma)*100+(mi)) < __GLASGOW_HASKELL__ || \
ghc-lib/stage0/libraries/ghc-boot/build/GHC/Version.hs view
@@ -3,19 +3,19 @@ import Prelude -- See Note [Why do we import Prelude here?] cProjectGitCommitId :: String-cProjectGitCommitId = "6db6db46af6f8e3e24d7d16b0b43a984a9a14677"+cProjectGitCommitId = "6a01e28f4204ec17c587931311711fa76e0ea08d" cProjectVersion :: String-cProjectVersion = "8.10.3"+cProjectVersion = "8.10.4" cProjectVersionInt :: String cProjectVersionInt = "810" cProjectPatchLevel :: String-cProjectPatchLevel = "3"+cProjectPatchLevel = "4" cProjectPatchLevel1 :: String-cProjectPatchLevel1 = "3"+cProjectPatchLevel1 = "4" cProjectPatchLevel2 :: String cProjectPatchLevel2 = ""