I'm trying to solve an algorithm puzzle in Haskell, and to do so I need quite a big data structure. However the problem solving site I submit my solution to, doesn't use any run time options to allow bigger stack, but I've heard that I can use compiler options as pragma. I've tried using following pragma in my code:
{-# OPTIONS_GHC -O2 -rtsopts -with-rtsopts=-K32m #-}
Then I compile with ghc --make algo.hs. However, when I run on my machine on some big tests, program crashes with stack overflow, and reports that current stack size is 8MB. On the other hand, when I compile like that:
ghc -rtsopts -with-rtsopts=-K32M --make algo.hs -fforce-recomp
The program works just fine on the same data, without adding any +RTS arguments. I use GHC 7.0.2, but the problem solving site is using 6.12.3, so preferably I'm looking for solution that could work with that old version too.