[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2006-08-09 (13:41) |
From: | Denis Bueno <dbueno@g...> |
Subject: | Re: [Caml-list] ocamlc Stack_overflow |
Martin Jambon wrote: > You are using a huge list, and it is likely that the compiler uses some > functions which will use stack space proportionally to the size of your > list. > You can use one of the following options: > - use ocamlc.opt instead of ocamlc > - increase the maximum size of the stack: > env OCAMLRUNPARAM=l=10M ocamlc -c spit_etest.ml To anyone who may be interested: both of these methods worked for me. -Denis