Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
360 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, ...
5
votes
1answer
129 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, ...
5
votes
1answer
137 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 ...
4
votes
7answers
623 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 ...
3
votes
1answer
120 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
2answers
465 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
2answers
71 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 := ...
2
votes
1answer
92 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 ...
2
votes
1answer
166 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 ...
2
votes
1answer
183 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
189 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
87 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 ...
1
vote
1answer
33 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 ...
1
vote
1answer
319 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 ...
1
vote
3answers
827 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 ...