caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: ocaml <caml-list@inria.fr>
Subject: Re: [Caml-list] How to use pcre (3)
Date: Thu, 6 Sep 2001 23:28:31 +0200	[thread overview]
Message-ID: <01090623430915.02716@ice> (raw)
In-Reply-To: <87heug5c81.fsf_-_@adept.co.za>

On Thu, 06 Sep 2001, Johann Spies wrote:
>Markus Mottl <markus@mail4.ai.univie.ac.at> writes:
>
>> This is an FAQ and not related to the Pcre in particular: the problem
>> is that
>
>Maybe a FAQ, but difficult for newbies to know when and how.  
>
>> 
>>   a) you have to build a "customized" toplevel, because a C-library
>>      has to be linked in. This is very easy:
>
>After a bit of experimentation I got this to work.
>
>After about another hour and a half I did not succeed in compiling the
>following program:
>
>-------------------------
>let s = "abcde";;
>let t = Pcre.replace ~pat:"c" ~templ:" Hier gebeur 'n ding " s;;
>print_string t;;
>print_newline();;
>--------------------------
>
>I have read the man page for ocamlopt as well as the ocaml manual and
>still do not know how to compile it!?  Maybe I am just dumb.
>
>My latest effort was:
>
>$ocamlfind ocamlopt -o rex -I /usr/lib/ocaml/contrib -ccopt
>-L/usr/lib/ocaml/contrib  -cclib -llibpcre.a -linkall /tmp/rex.ml
>
>No implementations provided for the following modules:
>  Pcre referenced from /tmp/rex.cmx
>
>The usage of ocamlfind made no difference.

ocamlopt -o rex -I /usr/lib/ocaml/contrib pcre.cmxa /tmp/rex.ml

SHOULD suffice. Perhaps you need the -ccopt and -cclib options, too, that
depends on how clever pcre is installed (can't remember) (oh, and it's -lpcre,
not -llibpcre.a, if you need it).

You seem to be confused because there are two .a files, arent't you:
libpcre.a and pcre.a. Actually, both are needed in the final executable, i.e.
both contain necessary machine code. Fortutately, there is also the .cmxa file
which only contains management information, and no machine code, and if you
put it onto the command line the compiler will always be able to find the
pcre.a file at least, and if you are lucky, it will also find libpcre.a. (The
latter works only if pcre is installed with "automatic linking", I don't know
whether the current release supports it.) pcre.a contains compiled ocaml code,
and libpcre.a contains compiled C code.

ocamlfind makes only a difference if the pcre installation contains a so-called
META file, and in this case you could do: ocamlfind ocamlopt -o rex -package
pcre -linkpkg /tmp/rex.ml. That's for people who like it comfortable (here in
Germany we say "Warmduscher", don't know how to translate it).

Gerd
-- 
----------------------------------------------------------------------------
Gerd Stolpmann      Telefon: +49 6151 997705 (privat)
Viktoriastr. 45             
64293 Darmstadt     EMail:   gerd@gerd-stolpmann.de
Germany                     
----------------------------------------------------------------------------
-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs  FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr  Archives: http://caml.inria.fr


  parent reply	other threads:[~2001-09-06 21:43 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-09-06 13:03 [Caml-list] How to use pcre Johann Spies
2001-09-06 13:29 ` Markus Mottl
2001-09-06 13:44   ` Johann Spies
2001-09-06 14:21   ` [Caml-list] How to use pcre (2) Johann Spies
2001-09-06 14:45     ` Markus Mottl
2001-09-06 19:51       ` [Caml-list] How to use pcre (3) Johann Spies
2001-09-06 21:12         ` Nicolas George
2001-09-06 21:23         ` Markus Mottl
2001-09-07  6:59           ` Johann Spies
2001-09-06 21:28         ` Gerd Stolpmann [this message]
2001-09-06 21:55           ` Markus Mottl
2001-09-06 22:14           ` Alain Frisch

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=01090623430915.02716@ice \
    --to=info@gerd-stolpmann.de \
    --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).