1
1
mirror of https://github.com/tweag/asterius.git synced 2024-10-26 17:34:39 +03:00
asterius/utils/ghcid.sh

17 lines
285 B
Bash
Raw Normal View History

2020-03-13 15:43:59 +03:00
#!/bin/bash -e
shopt -s globstar
2020-03-15 15:27:33 +03:00
cd asterius
stack exec ghci -- \
-package ghc \
-Wall \
-Wno-overflowed-literals \
-j \
-fno-code \
+RTS -N -A64m -n2m -RTS \
$(echo src-types/**/*.hs) \
$(echo src/**/*.hs) \
$(echo $(stack path --dist-dir)/build/autogen/**/*.hs)