2022-04-07 10:15:11 +03:00
|
|
|
-- This is the local cabal configuration file used by the `scripts/dev.sh`
|
|
|
|
-- development script, which uses `... --project-file=cabal/dev-sh.project`
|
2020-01-24 02:22:21 +03:00
|
|
|
-- which in turn consults this file.
|
|
|
|
--
|
|
|
|
-- You can temporarily override values here rather than modifying 'dev.sh'
|
2021-01-09 00:31:36 +03:00
|
|
|
-- during development (although that might break certain things).
|
2020-01-24 02:22:21 +03:00
|
|
|
|
|
|
|
package *
|
|
|
|
documentation: true
|
2020-04-03 11:24:51 +03:00
|
|
|
-- build with DWARF support. This may not be very useful yet, but we want
|
|
|
|
-- to be able to experiment with it, and turning it from off to on requires
|
|
|
|
-- a massive rebuild. To start, see:
|
|
|
|
-- https://www.haskell.org/ghc/blog/20200403-dwarf-1.html
|
|
|
|
debug-info: 2
|
2021-12-10 19:21:42 +03:00
|
|
|
|
|
|
|
-- For compile-time performance (see cabal.project.ci.local):
|
|
|
|
ghc-options:
|
|
|
|
-- We compile with package-level parallelism, so just use a small amount
|
|
|
|
-- of module-level parallelism for dependencies:
|
|
|
|
-j2
|
|
|
|
+RTS -A64m -n2m -RTS
|
2021-10-20 19:14:00 +03:00
|
|
|
|
2021-12-10 19:21:42 +03:00
|
|
|
-- Modify this to '+optimize-hasura' to enable optimizations. Be sure also to comment
|
|
|
|
-- 'coverage: true' below for full prod performance.
|
|
|
|
--
|
2021-10-20 19:14:00 +03:00
|
|
|
-- NOTE: new-build may report a misleading 'Build profile: -O1'
|
|
|
|
-- See:https://github.com/haskell/cabal/issues/6221
|
|
|
|
flags: -optimize-hasura
|
2020-01-24 02:22:21 +03:00
|
|
|
|
|
|
|
package graphql-engine
|
|
|
|
documentation: false
|
|
|
|
-- NOTE: 'cabal new-build --enable-coverage' seems to rebuild all deps with coverage
|
|
|
|
-- which is not what we originally wanted. But building the test modules
|
|
|
|
-- themselves with coverage is actually nice for validation.
|
|
|
|
coverage: true
|
2021-01-09 00:31:36 +03:00
|
|
|
-- to match CI:
|
|
|
|
ghc-options: -Werror
|
2021-12-10 19:21:42 +03:00
|
|
|
-- For compile-time performance (see cabal.project.ci.local):
|
|
|
|
ghc-options: -j
|
2021-03-23 00:42:47 +03:00
|
|
|
-- By default GHC is dynamically linked, so to run TemplateHaskell you need dynamic versions of
|
|
|
|
-- libraries. But, also by default, cabal links executables statically, which requires static
|
|
|
|
-- versions of the libraries. Therefore, by default, cabal builds with -dynamic-too to generate
|
|
|
|
-- static and dynamic versions of all object files.
|
|
|
|
-- Setting executable-dynamic: True forces cabal to build a dynamic executable; but it's not
|
|
|
|
-- enough on its own: since library-vanilla defaults to True, cabal would still build a static
|
|
|
|
-- library. With those two flags together, we can finally only build one version of the library,
|
|
|
|
-- which substentially improves compilation time.
|
|
|
|
executable-dynamic: True
|
|
|
|
library-vanilla: False
|
2021-08-11 07:18:40 +03:00
|
|
|
|