diff options
author | Gabor Greif <ggreif@gmail.com> | 2020-07-05 15:56:19 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-07-07 13:56:08 -0400 |
commit | 180b63136f25d9fedb764cb9bc23637e7781ed4e (patch) | |
tree | 436c4b198b24d041feb6f02ad0cfb24bb16e725e /compiler/GHC/SysTools | |
parent | 7332bbffee9e2a712508540200eb52ed3d227426 (diff) | |
download | haskell-180b63136f25d9fedb764cb9bc23637e7781ed4e.tar.gz |
When running libtool, report it as such
Diffstat (limited to 'compiler/GHC/SysTools')
-rw-r--r-- | compiler/GHC/SysTools/Tasks.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/SysTools/Tasks.hs b/compiler/GHC/SysTools/Tasks.hs index a83dc8e670..794a12b913 100644 --- a/compiler/GHC/SysTools/Tasks.hs +++ b/compiler/GHC/SysTools/Tasks.hs @@ -307,7 +307,7 @@ runLibtool dflags args = traceToolCommand dflags "libtool" $ do args2 = [Option "-static"] ++ args1 ++ args ++ linkargs libtool = pgm_libtool dflags mb_env <- getGccEnv args2 - runSomethingFiltered dflags id "Linker" libtool args2 Nothing mb_env + runSomethingFiltered dflags id "Libtool" libtool args2 Nothing mb_env runAr :: DynFlags -> Maybe FilePath -> [Option] -> IO () runAr dflags cwd args = traceToolCommand dflags "ar" $ do |