[Haskell-beginners] ghc process gets killed on a 512MB machine

Felipe Almeida Lessa felipe.lessa at gmail.com
Sat Apr 16 14:51:33 CEST 2011


On Sat, Apr 16, 2011 at 2:45 AM, "Ionuț G. Stan" <ionut.g.stan at gmail.com> wrote:
> Is there any workaround for this problem? Other than fork the package repo
> and reduce the number of supported syntax files.

Use swap space.  If you don't want to bother creating a new partition etc., just

  # dd if=/dev/zero of=/tmp/swap bs=1M count=2048
  # mkswap /tmp/swap
  # swapon /tmp/swap

Cheers,

-- 
Felipe.



More information about the Beginners mailing list