summaryrefslogtreecommitdiff
path: root/ghc/Main.hs
diff options
context:
space:
mode:
authorPatrick Palka <patrick@parcs.ath.cx>2013-08-21 16:53:15 -0400
committerPatrick Palka <patrick@parcs.ath.cx>2013-08-26 22:21:16 -0400
commite8d0dc7e00e7c55bd23bcccd059683f8a7eadfd1 (patch)
treea9e3e74af4893957a3508fbcf0ecb42b41d2c1da /ghc/Main.hs
parentdb347943b860b7bede85fe4a94f0e79eada035ae (diff)
downloadhaskell-e8d0dc7e00e7c55bd23bcccd059683f8a7eadfd1.tar.gz
Make stdout and stderr line-buffered
An unbuffered handle is very slow to output to and there doesn't seem to be any reason to have these handles unbuffered.
Diffstat (limited to 'ghc/Main.hs')
-rw-r--r--ghc/Main.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/Main.hs b/ghc/Main.hs
index 66db90a9f7..868042b4e2 100644
--- a/ghc/Main.hs
+++ b/ghc/Main.hs
@@ -76,8 +76,8 @@ import Data.Maybe
main :: IO ()
main = do
- hSetBuffering stdout NoBuffering
- hSetBuffering stderr NoBuffering
+ hSetBuffering stdout LineBuffering
+ hSetBuffering stderr LineBuffering
GHC.defaultErrorHandler defaultFatalMessager defaultFlushOut $ do
-- 1. extract the -B flag from the args
argv0 <- getArgs