haskell - Cabal install criterion out of memory -
i'm running on container 768mb ram , 512 mb swap space. can't increase either of this. cabal install criterion
gives
failed during building phase. exception was: exitfailure (-9) may due out-of-memory condition.
during compiling criterion.types
. there way around or have make without criterion?
set rts flags on ghc limit memory usage (--ghc-options="+rts -m600m"
) , avoid running multiple jobs in parallel (-j1
).
Comments
Post a Comment