From: Martin DeMello <martindemello@gmail.com>
To: OCaml List <caml-list@yquem.inria.fr>
Subject: [Caml-list] building and using a library in a subdirectory
Date: Mon, 21 Sep 2015 23:23:02 -0700 [thread overview]
Message-ID: <CAFrFfuFLfbBNGSfkX6tqGrFbSgnqQoVUdipDH3RYkPyc-iCKRw@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 1452 bytes --]
If I have my project set up like this:
.
├── file.ml
├── plugins
│ └── puz
│ ├── puz_bin.ml
│ ├── puz_match.ml
│ ├── puz.ml
│ ├── puz_plugin.mllib
│ ├── puz_types.ml
│ └── puz_utils.ml
└── _tags
$ cat plugins/puz/puz_plugin.mllib
Puz Puz_bin Puz_match
This works:
$ ocamlbuild -use-ocamlfind plugins/puz/puz_plugin.cmxa
Finished, 22 targets (3 cached) in 00:00:03.
My _tags file:
------------------------------------------------
$ cat _tags
true: thread,debug
true: package(core_kernel)
"plugins/puz": include
<gui.*>: package(labltk)
<**/puz.*>: package(unix), package(str), package(core_kernel),
package(bitstring), package(mikmatch_pcre)
<**/*_bin.*>: package(bitstring.syntax), syntax(bitstring)
<**/*_match.*>: package(mikmatch_pcre), syntax(camlp4o)
------------------------------------------------
But I can't figure out how to use this library in my main program. This is
a minimal example of what I'm trying to do, not working of course:
$ cat file.ml
open Core_kernel.Std
let read fname =
let data = In_channel.read_all fname in
Puz_plugin.read data
$ ocamlbuild -use-ocamlfind file.native
+ ocamlfind ocamlc -c -g -thread -package core_kernel -I plugins/puz -o
file.cmo file.ml
File "file.ml", line 5, characters 2-17:
Error: Unbound module Puz_plugin
martin
[-- Attachment #2: Type: text/html, Size: 2889 bytes --]
next reply other threads:[~2015-09-22 6:23 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-22 6:23 Martin DeMello [this message]
2015-09-22 6:45 ` Gabriel Scherer
2015-09-22 6:52 ` Martin DeMello
2015-09-22 6:58 ` Gabriel Scherer
2015-09-22 7:09 ` Martin DeMello
2015-09-22 7:45 ` Gabriel Scherer
2015-09-22 19:02 ` Martin DeMello
2015-09-22 19:22 ` Christian Lindig
2015-09-22 6:46 ` Martin DeMello
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAFrFfuFLfbBNGSfkX6tqGrFbSgnqQoVUdipDH3RYkPyc-iCKRw@mail.gmail.com \
--to=martindemello@gmail.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox