ocamlbuild is a tool automating the compilation of most OCaml projects with minimal user input.

learn more… | top users | synonyms

3
votes
1answer
136 views

Ocamlbuild and Packages installed via Opam

I'm trying to make this piece of code: open Lwt;; open Cohttp;; (* a simple function to access the content of the response *) let content = function | Some (_, body) -> ...
1
vote
1answer
42 views

How to use -thread compiler flag with ocamlbuild?

I am using Jane Street's async_core by adding package(async_core) in _tags. When I use ocamlbuild -use-ocamlfind -I src test/test_airport.native, it gives me the following error: camlfind ...
1
vote
1answer
70 views

Using OCaml syntax extension in Camlp4 with ocamlbuild

I am having an issue with using the deriving-ocsigen syntax extension in my camlp4 parser. My parser is called pa_debug.ml Here's the tags file: <pa_debug.ml>: pp(camlp4orf.opt), ...
1
vote
1answer
66 views

How to use ocamlbuild with OPAM in ocaml?

I wrote two libraries (Bson.ml and Mongo.ml) in ocaml. I wish to enable it for opam. In the instruction of opam, it says it needs make build and make install. I am always using ocamlbuild and ...
0
votes
3answers
65 views

How can I write a library in OCaml?

I am writing a bson encoder/decoder library in ocaml. I have the source file now (actually just one file). My question is that how should I make it as a library, such as ocaml-batteries-included, ...
3
votes
2answers
181 views

Cygwin & OCaml: OPAM + Batteries

I extensively use Cygwin on a Windows 8 environment (I do not want to go ahead and boot/load Linux directly on the machine). I use the OCamlIDE plug-in for Eclipse and have experienced relatively no ...
3
votes
1answer
54 views

Ocamlbuild override the default options

My installation of OCaml does not recognize #!, therefore camlp4o cannot be ran standalone. It must be invoked as "ocamlrun camlp4o". I try to add a flag in the plugin. But the new flag is simply ...
2
votes
1answer
72 views

Build native executable with profile information using Ocamlbuild

How to build with enabled profile information using Ocamlbuild? It seems -p doesn't work there. Now, I use ocamlopt for this. For example, $ ocamlfind ocamlopt -c -p -thread -package core test.ml $ ...
1
vote
1answer
102 views

Using external libraries with ocamlbuild

I'm trying to use ocamlbuild instead of make, but I'm unable to correctly link my object files with external .cma libraries. It seems like ocamlbuild tries to determine dependencies first and then ...
0
votes
1answer
96 views

ocaml Error: This expression has type expr but is here used with type unit -> expr

I can't figure out what this error means, I've never seen if before the line it is complaining about is the line that contains x -> let I was using match with before this but it was still giving me ...
3
votes
1answer
89 views

Making ocamlbuild pass both .ml and .mli files to ocamldoc

I want to include source code in my generated docs. This works when I invoke ocamldoc on the command-line like this: ocamldoc -I _build -html -keep-code -colorize-code *.{ml,mli} -d .docdir. However, ...
2
votes
1answer
86 views

Is it possible to generate inferred mli files with oasis?

I realize you can generate the inferred mli files one by one using ocamlbuild xxx.inferred.mli but I would prefer this to be done automatically for me (too see which types ocaml infers and to use ...
3
votes
1answer
165 views

Compilation error in ocamlgraph

I am trying to install ocamlgraph as a requirement for frama-c. When I am installing ocamlgraph and run make, I am getting the following compilation errors: ocamlopt.opt -c -I src -I lib -for-pack ...
1
vote
1answer
68 views

Make ocamlbuild ignore dirs

Is there a way to tell ocamlbuild to not go into some dirs? I have the _tags with the following inside: <dir1> or <dir2>: include But ocamlbuild is saying that there are some .dlls in ...
1
vote
1answer
139 views

Passing options to camlp4 with ocamlbuild

I'm using ocamlbuild's native support for ocamlfind to simplify my project's build process. File foo.ml relies on conditional compilation using camlp4's macros. The _tags file contains the ...
1
vote
1answer
75 views

Error: Dynamic link not supported when linking ocaml project under Lion 10.7

I hope that's the right place to my question. Actually I'm coq user and I'm trying to implement a new tactic using ocaml under "Mac OS X Lion 10.7.4 ". I have installed all the libraries that I may ...
4
votes
1answer
433 views

Setting up an Ocaml library using 'ocamlfind install' and then using the library in ocamlbuild

I followed the instructions here for setting installing a library in site-lib using ocamlfind install. I had two libraries: one called logic and another called boolean. In each case I installed the ...
5
votes
2answers
166 views

OCamlbuild and camlp4 options

I'm using camlp4.macro to enable conditional compilation. I'm having problems informing OCamlbuild that certain files tagged with "use_jscore" must be preprocessed with a given camlp4 option. Here's ...
2
votes
1answer
116 views

OCamlbuild and camlp4.macro

I have a project where several of the OCaml source files use IFDEF. Is there a simple way to tell OCamlbuild that all .ml files for this project should be preprocessed by camlp4.macro?
1
vote
2answers
95 views

Makefile with coqtop -R coqdir

I have a makefile: Add the command: coqtop -R coqdir I have to give a physical path in my computer, but this directory depends on user directory. (~/color/trunk/color/devel/gwen Devel and ...
4
votes
4answers
164 views

Ocamlopt and missing crt2.o file

Having installed OCaml on Windows 7, 64 bit (self-installer), I tried to create a simple exe file with ocamlopt HelloWorld.ml -o HelloWorld As required I used the native-code compiler (ocamlopt) ...
3
votes
2answers
327 views

I've got hardcoded paths in my Makefile - how to use ocamlfind to eliminate those? (or how to use ocamlbuild or omake instead)

I'm trying to build an ocaml project which requires a camlp4 extension (pa_deriving in this case). Here's my Makefile: include ./Makefile.config OCAMLC := ${OCAMLFIND} ocamlc OCAMLOPT := ...
3
votes
1answer
323 views

OCamlbuild and Building Native Dynamic Linked Library

I posted a question on the ocaml listserv that nobody responded to, I'm hoping someone here can either call me an idiot, confirm the situation, or offer up a creative solution. When building a ...
1
vote
1answer
179 views

Include package batteries in makefile for Ocaml

I would like to use functions of module List of Ocaml Batteries. I have installed Batteries, and a trivial code from Getting started works with ocamlfind ocamlc -package batteries -linkpkg euler001.ml ...
5
votes
1answer
279 views

Order of linked libraries in ocamlbuild

I'm having an issue with the order in which the libraries are added to the linker. Previously built libraries by ocamlbuild are linked in after the list of libraries I included by the flag rule. And, ...
4
votes
1answer
335 views

How can the ocamlfind/ocamlbuild toolchain be used with project-local copies of packages?

I am trying to keep my project self-contained, with all major 3rd party library dependencies built and referenced within the project repository. The main ocaml portions of my project rely on ...
3
votes
1answer
552 views

OCamlbuild fails to compile complaining implementation of Netsys is not provided when it is

I'm trying to compile an XML-RPC server written using the xmlrpc-light library in OCaml with ocamlbuild but I get: $ ocamlbuild server.native Finished, 0 targets (0 cached) in 00:00:00. + ocamlfind ...
1
vote
1answer
67 views

How to force ocamlbuild using already built obj-files if two different targets compiled serially

I have two different ml-targets, which should be compiled to native code. Both targets are sharing some modules. The problem is, if I run "ocamlbuild targetA" the modules C, D and E are compiled to ...
5
votes
1answer
273 views

How can ocamldebug be used with a Batteries Included project?

I have a simple ocamlbuild project which uses Batteries, including syntax extensions. _tags: <*>: pkg_batteries,pkg_threads,pkg_batteries.syntax,syntax_camlp4o something.ml: open Batteries ...
30
votes
4answers
2k views

What is the preferred way to structure and build OCaml projects?

It is unclear to newcomers to the ecosystem what is the canonically preferred way to structure and manage building small to medium sized OCaml projects. I understand the basics of ocamlc, ...
2
votes
1answer
325 views

OcaIDE doesn't see JoCaml tools

I'm having a problem while using OcaIDE in ocamlbuild mode. I'm trying to compile my own JoCaml sources. According to the JoCaml manual (bottom of page), to use ocamlbuild with JoCaml, I just need to ...
2
votes
2answers
325 views

Can I produce native executables with OCamlBuild which can run in computers which don't have OCaml libraries?

I have a large OCaml project which I am compiling with ocamlbuild. Everything works fine, I have a great executable which does everything as I want. The problem is that when I take that native ...
1
vote
1answer
474 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
712 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 ...
2
votes
3answers
1k views

Using “ocamlfind” to make the OCaml compiler and toplevel find (project specific) libraries

I'm trying to use ocamlfind with both the OCaml compiler and toplevel. From what I understood, I need to place the required libraries in the _tags file at the root of my project, so that the ocamlfind ...
5
votes
7answers
990 views

What's a stupidly simple way to compile an OCaml project?

I'm toying around with OCaml. The first thing I want to know how to do is build an OCaml project. Right now, I just want something stupidly simple since I'm just learning. Could anyone point me ...