caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Kenichi Asai <asai@is.ocha.ac.jp>
To: hugo <hugo.heuzard@gmail.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] How can I use a library in a toplevel created by js_of_ocaml?
Date: Sat, 1 Jun 2019 10:00:31 +0900	[thread overview]
Message-ID: <20190601010031.GA673@pllab.is.ocha.ac.jp> (raw)
In-Reply-To: <20190530141933.GA93967@pllab.is.ocha.ac.jp>

I could.  In addition to adding myFac to the argument of
jsoo_listunits:

> (action (run jsoo_listunits -o %{targets} stdlib myFac))

I inserted myFac as one of the libraries:

(executables
  (names eval)
  (libraries
    myFac
    js_of_ocaml-compiler
    js_of_ocaml-toplevel)
  (link_flags (:standard -linkall))
  (preprocess (pps js_of_ocaml-ppx)))

and added the path to the cmi file of myFac library to the argument
of js_of_ocaml.

-I /home/asai/.opam/ocaml-base-compiler.4.04.0/lib/myFac/

(I wonder if I always have to write this path.  Maybe it could be
automatically searched (as it is an opam library) or there is a
better way to write it rather than writing the absolute path.)

> As a related question, is there a document I can study that describes:
> - what jsoo_listunits does, and
> - what the --export option (and other options) of js_of_ocaml does?

I imagine that:

- executables have to contain libraries to be used in the toplevel.
- The --export option exports to the toplevel those modules that are
  required in the toplevel.
- export.txt specifies which modules to be exported.

Correct me if I am wrong.  I still welcome any documents to study.

Sincerely,

-- 
Kenichi Asai


On Thu, May 30, 2019 at 11:19:33PM +0900,
 Kenichi Asai wrote:

> Thank you for the e-mail.  It goes great.  Going one step further, can
> I do the same if I install fac as an opam library?  Suppose I packaged
> fac.ml as a library called myFac and installed fac.cma and fac.cmi via
> opam.  Using:
> 
> (action (run jsoo_listunits -o %{targets} stdlib myFac))
> 
> I could compile it but I got the "Unbound module Fac" error when I
> open index.html.  Is listing myFac in the above line not enough?
> 
> As a related question, is there a document I can study that describes:
> - what jsoo_listunits does, and
> - what the --export option (and other options) of js_of_ocaml does?
> 
> -- 
> Kenichi Asai
> 
> 
> On Tue, May 28, 2019 at 08:41:01AM +0800,
>  hugo wrote:
> 
> > You need to tell js_of_ocaml the list of cmi that you want to export.
> > [jsoo_listunits] can compute the list of cmi from a findlib library.
> > Because fac is not installed, you'll need to be explicit.
> > There might be some better wait to integrate with dune but the following
> > should change should do what you want.
> > 
> > (rule
> >  (targets export.txt)
> >  (deps eval.bc fac/fac.cma)
> >  (action (run jsoo_listunits -o %{targets} stdlib fac/.fac.objs/byte/fac.cmi)))
> > 
> > H
> > 
> > 
> > On Sun, May 26, 2019 at 2:27 PM Kenichi Asai <asai@is.ocha.ac.jp> wrote:
> > 
> > > I want to create a web page where I can execute an OCaml expression
> > > that mentions a prebuilt user-defined library.  I find the following
> > > example in the js_of_ocaml/toplevel repository:
> > >
> > > https://github.com/ocsigen/js_of_ocaml/tree/master/toplevel/examples/eval
> > >
> > > Can I extend this example so that the toplevel is compiled with a
> > > user-defined library?  The attached program contains the following
> > > where the first three files are copied from the example in the
> > > js_of_ocaml/toplevel repository.
> > >
> > > toplevel/ -- dune
> > >           -- eval.ml
> > >           -- index.html
> > >           -- fac/ -- dune
> > >                   -- fac.ml
> > >
> > > I intend that fac.ml is compiled as a library and I want to use it in
> > > the toplevel.  I added "fac" in the libraries stanza of the toplevel
> > > dune file (as in the attached file):
> > >
> > > (executables
> > >   (names eval)
> > >   (libraries
> > >     fac
> > >     js_of_ocaml-compiler
> > >     js_of_ocaml-toplevel)
> > >   (link_flags (:standard -linkall))
> > >   (preprocess (pps js_of_ocaml-ppx)))
> > >
> > > Naturally, fac.ml is compiled and I can use it in the eval.ml, but it
> > > is not visible from the toplevel.  I included the following part in
> > > the index.html (as in the attached file):
> > >
> > > <script type="text/ocaml" stdout="script3" stderr="script3">
> > >   Fac.go 3;;
> > > </script>
> > > <div id="script3"> </div>
> > >
> > > but the output says:
> > >
> > > File "/dev/fake_stdin", line 2, characters 6-12:
> > > Error: Unbound module Fac
> > >
> > > Thank you in advance.
> > >
> > > --
> > > Kenichi Asai

  reply	other threads:[~2019-06-01  1:01 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-26  6:26 Kenichi Asai
2019-05-28  0:41 ` hugo
2019-05-30 14:19   ` Kenichi Asai
2019-06-01  1:00     ` Kenichi Asai [this message]
2019-06-06  1:05       ` hugo
2019-05-27 18:34 Quaker Quickoats
2019-05-29  0:39 ` Kenichi Asai
2019-05-29 20:27   ` Quaker Quickoats
2019-05-30  0:45     ` hugo

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=20190601010031.GA673@pllab.is.ocha.ac.jp \
    --to=asai@is.ocha.ac.jp \
    --cc=caml-list@inria.fr \
    --cc=hugo.heuzard@gmail.com \
    /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).