diff options
author | Tamar Christina <tamar@zhox.com> | 2020-05-31 15:54:43 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-07-15 16:41:03 -0400 |
commit | 3ebd8ad9b1f7f77a928f2ff0d3e61ddfae068dd3 (patch) | |
tree | 4afd1a696e6fc82b2ad93a4e8603931e16549649 /compiler/GHC/SysTools/Info.hs | |
parent | 256299b13e17044d6904a85043130d13bc592a62 (diff) | |
download | haskell-3ebd8ad9b1f7f77a928f2ff0d3e61ddfae068dd3.tar.gz |
winio: Various fixes related to rebase and testdriver
Diffstat (limited to 'compiler/GHC/SysTools/Info.hs')
-rw-r--r-- | compiler/GHC/SysTools/Info.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/SysTools/Info.hs b/compiler/GHC/SysTools/Info.hs index 039c1d12aa..fec6ecff15 100644 --- a/compiler/GHC/SysTools/Info.hs +++ b/compiler/GHC/SysTools/Info.hs @@ -241,7 +241,7 @@ getCompilerInfo' dflags = do | any ("Apple clang version" `isPrefixOf`) stde = return AppleClang -- Unknown linker. - | otherwise = fail "invalid -v output, or compiler is unsupported" + | otherwise = fail $ "invalid -v output, or compiler is unsupported: " ++ unlines stde -- Process the executable call info <- catchIO (do |