Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
a02314bd
Commit
a02314bd
authored
Jan 28, 2005
by
simonmar
Browse files
[project @ 2005-01-28 14:21:12 by simonmar]
Fix -no-recomp
parent
81066717
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/main/DriverFlags.hs
View file @
a02314bd
...
...
@@ -194,10 +194,6 @@ static_flags =
,
(
"ignore-dot-ghci"
,
NoArg
(
writeIORef
v_Read_DotGHCi
False
)
)
,
(
"read-dot-ghci"
,
NoArg
(
writeIORef
v_Read_DotGHCi
True
)
)
------- recompilation checker --------------------------------------
,
(
"recomp"
,
NoArg
(
setRecompFlag
True
)
)
,
(
"no-recomp"
,
NoArg
(
setRecompFlag
False
)
)
------- ways --------------------------------------------------------
,
(
"prof"
,
NoArg
(
addNoDups
v_Ways
WayProf
)
)
,
(
"unreg"
,
NoArg
(
addNoDups
v_Ways
WayUnreg
)
)
...
...
@@ -339,6 +335,10 @@ dynamic_flags = [
,
(
"opti"
,
HasArg
(
addOpt_i
)
)
#
endif
------- recompilation checker --------------------------------------
,
(
"recomp"
,
NoArg
(
setRecompFlag
True
)
)
,
(
"no-recomp"
,
NoArg
(
setRecompFlag
False
)
)
------- Packages ----------------------------------------------------
,
(
"package-conf"
,
HasArg
extraPkgConf_
)
,
(
"no-user-package-conf"
,
NoArg
noUserPkgConf_
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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