[
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: | 2008-10-06 (17:49) |
From: | Ashish Agarwal <agarwal1975@g...> |
Subject: | ocamlbuild not including dependencies with mlpack |
Ocamlbuild seems to not include dependent modules when building a library, when that library is defined by an mlpack file. However, it works fine if I manually pack, i.e. define an ml file instead of an mlpack file. Here's a summary: --- mylib.mlpack --- A B $ ocamlbuild mylib.cma $ cat _build/_log #just showing relevant line ocamlfind ocamlc -a -linkpkg mylib.cmo -o mylib.cma I was expecting a.cmo and b.cmo to get included in the library but they are not. Now if a replace the mylib.mlpack with mylib.ml as follows, I get what I want. --- mylib.ml --- module A = A module B = B $ ocamlbuild mylib.cma $ cat _build/_log #just showing relevant line ocamlfind ocamlc -a -linkpkg a.cmo b.cmo mylib.cmo -o mylib.cma How can I get the latter behavior with mlpack? Thank you.