caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Nicolas Pouillard" <nicolas.pouillard@gmail.com>
To: "Andrew Warshaver" <awarshaver@janestcapital.com>
Cc: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] compiling a clib from further away
Date: Wed, 27 Jun 2007 16:48:47 +0200	[thread overview]
Message-ID: <cd67f63a0706270748w3a7028f8w1117d77187622803@mail.gmail.com> (raw)
In-Reply-To: <46826F6F.6060009@janestcapital.com>

On 6/27/07, Andrew Warshaver <awarshaver@janestcapital.com> wrote:
>
>
> Andrew Warshaver wrote:
> > I am trying to compile a clib (with the eventual hope of it making its
> > way into a compiled ocaml lib).  It is working fine if I am in the
> > specific directory; but if I move too far out it fails.  My directories
> > are like /../janebase/lib/cephes/  The c files live in cephes.
> >
> > $ cat lib/cephes/libjane_stubs.clib
> > bdtr.o
> > btdtr.o
> > chbevl.o
> > ...
> > $ cat _tags
> > <sexp> or <lib>: include
> >
> > $ cat myocamlbuild.ml
> > open Ocamlbuild_plugin
> > open Command
> >
> > let headers = ["lib/cephes/mconf.h"; "lib/cephes/protos.h"];;
> >
> > dispatch begin function
> >   | After_rules ->
> >       dep ["compile"; "c"] headers;
> >   | _ -> ()
> > end
> >
> > $ ocamlbuild lib/cephes/libjane_stubs.a
> > + /usr/local/home/godi310/godi/bin/ocamlmklib -o /cephes/libjane_stubs
>
> by the way, obviously the culprit is in this -o, it should have lib/, is
> this a ocamlbuild bug?
>

Indeed, it seems to be a bug. In order to give the library name
without the "lib" prefix, ocamlbuild cuts the given pathname on the
substring "lib". The bad news is that it's not dummy programming bug,
it's more abou the expressiveness of ocamlbuild rules.

Indeed there are roughly two rules for libs.

... ~prods:["lib%(libname).a"; "dll%(libname).so"] ...

... ~prods:["%(path)/lib%(libname).a"; "%(path)/dll%(libname).so"] ...

And for now I can specify more precise rules. So with your lib/
directory you fall in the first one.

An safe workaround is to rename your lib/ dir.

-- 
Nicolas Pouillard


      reply	other threads:[~2007-06-27 14:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-27 13:56 Andrew Warshaver
2007-06-27 14:08 ` [Caml-list] " Andrew Warshaver
2007-06-27 14:48   ` Nicolas Pouillard [this message]

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=cd67f63a0706270748w3a7028f8w1117d77187622803@mail.gmail.com \
    --to=nicolas.pouillard@gmail.com \
    --cc=awarshaver@janestcapital.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;
as well as URLs for NNTP newsgroup(s).