From 35fa0a34b8e69492bd4988aa50c326d0dd00c6f4 Mon Sep 17 00:00:00 2001 From: hallgren Date: Wed, 10 Apr 2013 16:42:35 +0000 Subject: [PATCH] Import of Folkets Lexikon: the heap size limit was too low for 64-bit systems The default heap size limit has been increased to 3GB. On 32-bit system you can use a lower limit: make M=1500M --- src/swedish/folketslexikon/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/swedish/folketslexikon/Makefile b/src/swedish/folketslexikon/Makefile index 5a79633a..90d85113 100644 --- a/src/swedish/folketslexikon/Makefile +++ b/src/swedish/folketslexikon/Makefile @@ -1,7 +1,8 @@ +M=3G FolketsLexikon.gf: ghc --make -O ImportFolketsLexikon.hs -rtsopts - ./ImportFolketsLexikon +RTS -K32M -M1500M + ./ImportFolketsLexikon +RTS -K32M -M$M clean: rm -rf *.o *.hi *.gfo *.xml FolketsLexikon.gf ImportFolketsLexikon