user1659958
user1659958

Reputation: 55

OCAML compilation error Out_of_memory

when I compile on my mutualized server the source of last version of OCaml ocaml-4.00.0, I have the following Out_of_memory error message: " Fatal error: exception Out_of_memory Exit code 2 while executing this command: ../ocamlcomp.sh -c -g -warn-error A -w a -I camlp4/boot -I camlp4 -I stdlib -o camlp4/boot/camlp4boot.cmo camlp4/boot/camlp4boot.ml"

my initial bash command is : make world

Would anyody have an idea where this error might come from?

Thanks

Upvotes: 1

Views: 781

Answers (1)

Jeffrey Scofield
Jeffrey Scofield

Reputation: 66813

I've compiled OCaml 4.00.0 many times recently, and I have some saved logs. The exact failing command you give here appears at around the halfway point in the logs, which then go on to build the compiler successfully. I would conclude from this that you're actually running out of memory. I.e., that the compilation takes more memory than your system has available. Is this possible? (I don't know what you mean by a mutualized server.)

Upvotes: 2

Related Questions