Tagged Questions
1
vote
2answers
73 views
OCaml: new_line equivalent before 3.11
I'm trying to compile Libra toolkit on a machine running Ubuntu Hardy with OCaml 3.10, I can't upgrade the OS nor update OCaml, and I don't know anything about OCaml. There is only one line that gives ...
0
votes
2answers
52 views
Ocaml unbound module
I'm learning Ocaml language but i have a problem with my modules when i want to compile them.
So, I have a module with the name Door and an other one with the name Case. Into each one, i have a type ...
0
votes
1answer
39 views
OCaml-Wodi Part 2: Compiling using what was installed
I am trying to compile a very small vignette to see how lablgtk2 works.
(* file: base.ml *)
let main () =
let window = GWindow.window () in
window#show ();
GMain.Main.main ()
let _ = main ()
...
2
votes
1answer
58 views
How to manage compilation well in OCaml?
I am learning more complex compilations in OCaml.
first I haven't been a C programmer and I really don't know what is make, etc. I am using Mac OS X terminal and i am also a Java programmer.
I find ...
2
votes
1answer
227 views
OCaIDE can't create .cmo files (compile modules)
I have problem with OCaIDE under Eclipse Indigo. I've got a new OCaml Managed Project and in that a few modules. Here's how it looks in my workspace explorer:
All those files have errors (.mli ...
2
votes
2answers
146 views
Compiling multiple Ocaml files
I am new to Ocaml and trying to write some small example application. I am using ocamlc version 3.11.2 under Linux Ubuntu 10.04. I want to compile two files:
a.ml
b.ml
File b.ml uses definitions ...
1
vote
1answer
116 views
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 ...
1
vote
3answers
106 views
Is it possible to execute shell commands within a mac application?
Basically I'm wondering if I can compile code that a user inputs in a mac app (I'm trying to make an OCaml text editor that compiles your code) using executables that are already available in the ...
8
votes
1answer
150 views
When -g should be used to print stack traces in OCaml ?
I'm trying to get a stacktrace with Printexc.get_backtrace, but I'm getting an error:
(Program not linked with -g, cannot print stack backtrace)
I'm compiling like this:
ocamlfind ocamlc -g -o foo ...
1
vote
1answer
147 views
“failwith” is no longer allowed?
I have a list of .ml to compile defined in my makefile, finished by main/mail.ml.
I have some failwith "to do" as body of some functions in these files. Before, I remember that it raises an error ...
0
votes
4answers
888 views
How to set the default-directory of compilation in Emacs?
I am coding OCaml under Emacs, I have one makefile in the working folder, and several sub-folders containing .ml files. If I launch M-x compile and make works fine on a buffer of makefile, but does ...
0
votes
2answers
238 views
Is there a command to generate .cmo .cmx .cmi .mli together?
I have a .ml file, I would like to generate its .cmo, .cmx, .cmi and .mli by as least commands as possible, could anyone help?
4
votes
2answers
200 views
How to deal with variable references in yacc/bison (with ocaml)
I was wondering how to deal with variable references inside statements while writing grammars with ocamlyacc and ocamllex.
The problem is that statements of the form
var x = y + z
var b = true | f;
...
0
votes
1answer
301 views
Different ways of compiling a ocaml code with external libraries
I have installed some libraries, and am trying to compile a code.
1) ocamlc -I /usr/lib -I /usr/local/lib/ocaml/3.11.2/apron -I /usr/local/lib/ocaml/3.11.2/gmp -c mlexample2.ml generates well ...
0
votes
1answer
127 views
How I can compile Ocaml in AIX (step by step)?
It is the first time I have tried to compile something on AIX. I want to compile Ocaml to use the Unison synchronization tool. How do I compile Ocaml?
2
votes
2answers
365 views
parallel installation of different ocaml versions
I'm attempting to compile the adder example of the xml-rpc-light ocaml package. After including (I suspect all) the necessary libraries I get this error at compilation:
File "_none_", line 1, ...
2
votes
1answer
213 views
How to generate and set up annotation for Ocaml in Emacs?
I am writing a compiler in Ocaml with Emacs. I am told that with -annot a file .annot could be generated while compiling, which could help Emacs to show the type of my code. But it is odd that no ...
1
vote
1answer
197 views
Compiling Z3 for OCaml
I tried to compile the OCaml version for Z3, however when I build it, it always shows a bunch of error and warning.
These are several of the errors:
z3_stubs.c:7384: error: storage size of `_ctxs' ...
1
vote
1answer
649 views
Ocaml compile multiple files (circular dependencies)
I have downloaded xml-light for ocaml and try to compile it, but it has never been succeeded, the problem is as follow.
When I input ocamlopt dtd.ml, there will be an error Unbound module Xml.
Then I ...
4
votes
2answers
430 views
Invoke OCaml compiler to just produce .cmi
maybe I'm just failing in a really simple thing but I'm developing an intepreter written in OCaml with standard tools as ocamllex and ocamlyacc and I have this situation:
iparser.mly contains parser ...
7
votes
1answer
2k views
How to compile ocaml to native code
i'm really interested learning ocaml, it fast (they said it could be compiled to native code) and it's functional. So i tried to code something easy like enabling mysql event scheduler.
#load ...
1
vote
1answer
469 views
ocamlbuild; building toplevel
Having successfully reorganized my project for ocamlbuild with subdirectories and using ocamlfind, I've found it difficult to build the top-level.
I've constructed a .mltop file containing all the ...
3
votes
2answers
695 views
Properly compiling modules in subfolders (ocamlbuild)
I recently decided to organize the files in my project directory. I moved the parsers I had for a few different file types into their own directory and also decided to use ocamlbuild (the as the ...
