caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Philippe Veber <philippe.veber@gmail.com>
To: caml users <caml-list@inria.fr>
Subject: [Caml-list] Strange compilation error.
Date: Tue, 19 Jun 2012 16:30:27 +0200	[thread overview]
Message-ID: <CAOOOohQsX4MeWiJx2zsuY=YQ-aDPw6uaM=Jvg+CufBc_e8344g@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2172 bytes --]

Dear camlers,

I'm desperately stuck with the following issue: I fail to compile a program
using a module, but have no problem using the module in question in the
toplevel.

Here is how I use it in the toplevel

$ ocaml
        Objective Caml version 3.12.1

# #directory
"/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R";;
# #load "/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R/
R_math.cma";;
# Rmath.pow;;
- : float -> float -> float = <fun>


Now with the following program:
$ cat test.ml
let x = Rmath.pow 2.

I try to compile with the options corresponding to the toplevel directives:

$ ocamlc -o rmath -I
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R/R_math.cma
test.ml
File "test.ml", line 1, characters 8-17:
Error: Unbound module Rmath

I'm missing something obvious, but I can't see what. Does it remind someone
of something?

Cheers,
  Philippe.

PS There should be nothing fancy in my installation:

$ which ocaml
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/bin/ocaml
$ which ocamlc
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/bin/ocamlc
$ head -n 1 /home/pveber/usr/ocamlbrew/ocaml-3.12.1/bin/ocaml
#!/home/pveber/usr/ocamlbrew/ocaml-3.12.1/bin/ocamlrun

PS2 I have no compilation problem with other modules/libraries, as shown by
the following session. I encounter (and solve) all usual compilation
errors, the way I'm used to.

$ cat test.ml
let _ = R.init
$ ocamlc -o test  test.ml
File "rmath.ml", line 1, characters 8-14:
Error: Unbound module R
$ ocamlc -o rmath -I
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R rmath.ml
File "rmath.ml", line 1, characters 0-1:
Error: Error while linking rmath.cmo:
Reference to undefined global `R'
$ ocamlc -o rmath -I
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R R.cma rmath.ml
File "rmath.ml", line 1, characters 0-1:
Error: Error while linking
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R/R.cma(Initialisation):
Reference to undefined global `Unix'
$ ocamlc -o rmath -I
/home/pveber/usr/ocamlbrew/ocaml-3.12.1/lib/ocaml/site-lib/R unix.cma R.cma
rmath.ml
$./rmath [...]

[-- Attachment #2: Type: text/html, Size: 6065 bytes --]

             reply	other threads:[~2012-06-19 14:30 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-19 14:30 Philippe Veber [this message]
2012-06-19 14:42 ` Maxence Guesdon
2012-06-19 14:47   ` Philippe Veber
2012-06-19 14:55     ` Maxence Guesdon
2012-06-19 16:28       ` Philippe Veber
2012-06-19 15:10 Maxence Guesdon

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='CAOOOohQsX4MeWiJx2zsuY=YQ-aDPw6uaM=Jvg+CufBc_e8344g@mail.gmail.com' \
    --to=philippe.veber@gmail.com \
    --cc=caml-list@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;
as well as URLs for NNTP newsgroup(s).