2026-03-27 01:36:18 +00:00
|
|
|
:set -XNoImplicitPrelude
|
|
|
|
|
:def loadFromIHP \file -> (System.Environment.getEnv "IHP_LIB") >>= (\ihpLib -> readFile (ihpLib <> "/" <> file))
|
|
|
|
|
:loadFromIHP applicationGhciConfig
|
2026-04-28 01:32:36 +02:00
|
|
|
-- haskelseed (8 CPU / 30 GiB RAM): allow parallel module compilation.
|
|
|
|
|
:set -j4
|
2026-04-10 09:46:56 +00:00
|
|
|
-- Report errors from all modules in one pass (don't stop at first failure).
|
|
|
|
|
-- Critical for batch error fixing — see IHUB-WP-0016 C4.
|
|
|
|
|
:set -fkeep-going
|
2026-04-10 20:03:54 +00:00
|
|
|
-- Write interface files even on partial success so cached modules are not re-compiled.
|
|
|
|
|
:set -fwrite-interface
|
2026-03-27 01:36:18 +00:00
|
|
|
import IHP.Prelude
|