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
Packages
Cabal
Commits
bd41d2f2
Commit
bd41d2f2
authored
Nov 27, 2013
by
Mikhail Glushenkov
Browse files
Default 'library-for-ghci' to True on Windows.
Temporary workaround. Fixes #1589.
parent
b8d85c8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Cabal/Distribution/Simple/Setup.hs
View file @
bd41d2f2
...
...
@@ -338,7 +338,12 @@ defaultConfigFlags progConf = emptyConfigFlags {
configDistPref
=
Flag
defaultDistPref
,
configVerbosity
=
Flag
normal
,
configUserInstall
=
Flag
False
,
--TODO: reverse this
#
if
defined
(
mingw32_HOST_OS
)
-- See #1589.
configGHCiLib
=
Flag
True
,
#
else
configGHCiLib
=
Flag
False
,
#
endif
configSplitObjs
=
Flag
False
,
-- takes longer, so turn off by default
configStripExes
=
Flag
True
,
configTests
=
Flag
False
,
...
...
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