Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Andrej Bauer <Andrej.Bauer@andrej.com>
To: <caml-list@inria.fr>
Subject: Re: [Caml-list] Re: Filename.quote - again
Date: 15 Apr 2002 15:26:49 +0200	[thread overview]
Message-ID: <vka3cxxgkiu.fsf@laurie.fmf.uni-lj.si> (raw)
In-Reply-To: Vitaly Lugovsky's message of "Mon, 15 Apr 2002 16:49:13 +0400 (MSD)"


Vitaly Lugovsky <vsl@ontil.ihep.su> writes:
> $ocamlc -custom -linkall -o ocamltktop -I ../support \
>     -ccopt -L../support -cclib -lcamltk -ccopt "" \
>  -cclib "-ltk8.3 -ltcl8.3 -ldl " -ccopt " -L/usr/X11R6/lib" \
>  -cclib " -lSM -lICE -lX11  -lm" \
>  toplevellib.cma camltk.cma topmain.cmo
> i586-alt-linux-gcc:  -lSM -lICE -lX11  -lm: No such file or directory
> i586-alt-linux-gcc:  -lSM -lICE -lX11  -lm: No such file or directory
> Error while building custom runtime system
> 
>  With '-verbose' option I got something like
> gcc ... ' -L/usr/X11R6/lib ' ' -lSM -lICE -lX11  -lm' ...
>                              ^^^^^^^^^^^^^^^^^^^^^^^^ 
>  gcc treats this as a file name, not as an options, thanx
> to the single quotes.

Instead of using a single -cclib to pass three C libraries at the same
time (which you noted doesn't work), you should use -cclib three
times, once for each library:

camlc -custom -linkall -o ocamltktop -I ../support \
      -ccopt -L../support -cclib -lcamltk -ccopt "" \
      -cclib "-ltk8.3" -cclib "-ltcl8.3" -cclib "-ldl "
      -ccopt "-L/usr/X11R6/lib" \
      -cclib "-lSM" -cclib "-lICE" -cclib "-lX11"  -cclib "-lm" \
      toplevellib.cma camltk.cma topmain.cmo

Since there could be a library with a space or a single quote in its
name, ocaml does the correct thing. How is it supposed to know that
your library is not called "SM -lICE -lX11 -lm"? I admit only a crazy
person would create such a library, but that is irrelevant.

Andrej Bauer
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2002-04-15 13:26 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-14 18:03 [Caml-list] " Vitaly Lugovsky
2002-04-15  8:12 ` [Caml-list] " Xavier Leroy
2002-04-15 12:49   ` Vitaly Lugovsky
2002-04-15 13:26     ` Andrej Bauer [this message]
2002-04-15 13:47       ` Vitaly Lugovsky
     [not found]       ` <"from Andrej.Bauer"@andrej.com>
2002-04-19  5:58         ` [Caml-list] command arguments sticking together Brock
2002-04-19  9:08           ` Jérôme Marant
2002-04-19 10:01             ` [Caml-list] Prerelease - Announce ocaml-swig Benedikt Grundmann
2002-04-19  9:22           ` [Caml-list] command arguments sticking together Jacques Garrigue
2002-04-19 12:21             ` Florian Hars
2002-04-19 13:01               ` Christopher Quinn
2002-04-19 13:33                 ` Christopher Quinn
     [not found]                   ` <"from cq"@htec.demon.co.uk>
2002-04-19 19:39                     ` Brock
2002-04-20 11:09                       ` 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=vka3cxxgkiu.fsf@laurie.fmf.uni-lj.si \
    --to=andrej.bauer@andrej.com \
    --cc=caml-list@inria.fr \
    --cc=from_caml@andrej.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