Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
f451d5c1
Commit
f451d5c1
authored
Feb 02, 2005
by
simonpj
Browse files
[project @ 2005-02-02 13:40:34 by simonpj]
Dump package config only with -v4 Dump module dependencies (ghc -M) with -v2
parent
f4eaa144
Changes
2
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/main/DriverMkDepend.hs
View file @
f451d5c1
-----------------------------------------------------------------------------
-- $Id: DriverMkDepend.hs,v 1.3
8
2005/0
1/27 14:38:29
simon
mar
Exp $
-- $Id: DriverMkDepend.hs,v 1.3
9
2005/0
2/02 13:40:34
simon
pj
Exp $
--
-- GHC Driver
--
...
...
@@ -62,7 +62,7 @@ doMkDependHS dflags srcs
;
let
sorted
=
cmTopSort
False
mod_summaries
-- Print out the dependencies if wanted
;
if
verbosity
dflags
>=
3
then
;
if
verbosity
dflags
>=
2
then
hPutStrLn
stderr
(
showSDoc
(
text
"Module dependencies"
$$
ppr
sorted
))
else
return
()
...
...
ghc/compiler/main/Main.hs
View file @
f451d5c1
{-# OPTIONS -fno-warn-incomplete-patterns -optc-DNON_POSIX_SOURCE #-}
-----------------------------------------------------------------------------
-- $Id: Main.hs,v 1.14
6
2005/02/02 13:
27:07
simonpj Exp $
-- $Id: Main.hs,v 1.14
7
2005/02/02 13:
40:34
simonpj Exp $
--
-- GHC Driver program
--
...
...
@@ -322,7 +322,7 @@ showBanners mode dflags static_opts = do
hPutStr
stderr
", for Haskell 98, compiled by GHC version "
hPutStrLn
stderr
cBooterVersion
when
(
verb
>=
3
)
$
when
(
verb
>=
4
)
$
dumpPackages
dflags
when
(
verb
>=
3
)
$
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment