mirror of
https://github.com/alexwl/haskell-code-explorer.git
synced 2024-11-23 00:37:44 +03:00
Remove -Werror flag
-Werror flag makes warnings fatal. This flag should never be set.
This commit is contained in:
parent
d4827af422
commit
67d0714dc3
@ -413,7 +413,10 @@ indexBuildComponent sourceCodePreprocessing currentPackageId componentId deps@(f
|
||||
logDebugN (T.append "Modules : " $ T.pack $ show modules)
|
||||
logDebugN (T.append "GHC options : " $ T.pack $ show options)
|
||||
flags <- getSessionDynFlags
|
||||
(flags', _, _) <- parseDynamicFlagsCmdLine flags (L.map noLoc options)
|
||||
(flags', _, _) <-
|
||||
parseDynamicFlagsCmdLine
|
||||
flags
|
||||
(L.map noLoc . L.filter ((/=) "-Werror") $ options) -- -Werror flag makes warnings fatal
|
||||
(flags'', _) <- liftIO $ initPackages flags'
|
||||
logFn <- askLoggerIO
|
||||
let logAction ::
|
||||
|
Loading…
Reference in New Issue
Block a user