caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Alessandro Baretta <alex@baretta.com>
To: olczyk@interaccess.com
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Is Caml a fraud ( especially on Windows )?
Date: Fri, 18 Oct 2002 18:54:02 +0200	[thread overview]
Message-ID: <3DB03CAA.8080202@baretta.com> (raw)
In-Reply-To: <3db1215f.928509171@smtp.interaccess.com>



Thaddeus L. Olczyk wrote:
> On Fri, 18 Oct 2002 12:56:17 +0200, Sven Luther
> <luther@dpt-info.u-strasbg.fr> wrote:
> 
>>
> 
> But then why does it call cl.exe?

To support linking with C libraries.

>>Maybe you should try using only ocamlopt.
>>
> 
> But then why does cameleon use ocamlc?
> Obviously you want to use ocamlc when debugging,
> but I would think there are Debug and Release versions in
> the make. If so then why is Debug the default ( and why isn't it in
> the documentation)?

This has nothing to do with debugging: ocamlc compiles to 
bytecode, which is fast and guarantees a very high degree of 
portability; ocamlopt produces native code. This requires an 
assembler and a linker from a C compiler. The linker is 
platform-specific and makes native executables not portable, 
although the code can be recompiled with absolutely no 
differences on all supported platforms.

>>That said, there are a few library which are only bindings to C code
>>(the FFI you spoke about previously) and which need a C compiler. But
>>once they are compiled, you can use them without problems.
> 
> What do you need the compiler for?
> To build the C library or to actually build the bindings?
> This seems to be adding to my rants.

In order to link to C code you must first write special C 
functions called "stubs" (Java might be a good choice as 
your next language, so that you may discover that such 
functions exist elsewhere, too). Stubs are necessary to pass 
data back and forth from caml functions in a way compatible 
with the caml runtime, debugger and calling conventions.

> Ok. But why. IIRC the cygwin stuff you have to compile yourself. (
> Something I am loathe to do, especially since I see some people have
> had problems. )

Very well. If you are unable to use Cygwin get yourself a 
Debian distro and you won't have to compile anything at all. 
Sven is the one who does the job for you.

> I can see that the Win32 port is "crippled".  When I assumed that
> the compile used a C compiler, it made sense--cygwin creates code
> that is significantly slower. But if ocamlopt generates native code
> then the speed of the executables produced should be the same speed in
> both ports. So then why distribute the Win32 port as the main port?

Don't blame the Caml team if Windows is crippled OS. Cygwin 
uses gcc to generate code. So Cygwin code is neither faster 
nor slower than equivalent gcc code under Linux. However, 
Cygwin code is linked with a POSIX emulation library which 
runs on top of the standard Win32 C library and kernel. This 
  is less efficient than linking directly with a POSIX 
conformat c library like glibc.

>>>Am I going to discover that a prepackaged library doesn't work
>>
>>And here is your error, these are _not_ prepackaged libraries.
>>
> 
> No but about nine months ago I tried ocaml very briefly. I had
> a set of programs I had to write which basically encapsulated
> database with little processing. It seemed like the perfect
> opportunity to try out a new language because it involved little
> actual coding. At the time the dbm library was unavaile ( on Linux ).

You want the a library? Then, please, go on and write the 
stubs for it. Everybody will be thankful to you. You wanna 
rant about it. Then go on ranting till you please, but it's 
not going to serve much, either to you or to anybody else.

Alex

-------------------
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


  parent reply	other threads:[~2002-10-18 16:43 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-18  9:35 Thaddeus L. Olczyk
2002-10-18 10:25 ` Remi VANICAT
2002-10-18 15:42   ` Thaddeus L. Olczyk
2002-10-21 10:15   ` [Caml-list] ocamlopt / ocaml -custom and C compiler Dmitry Bely
2002-10-21 13:18     ` Xavier Leroy
2002-10-21 13:46       ` Dmitry Bely
2002-10-18 10:56 ` [Caml-list] Is Caml a fraud ( especially on Windows )? Sven Luther
2002-10-18 15:42   ` Thaddeus L. Olczyk
2002-10-18 16:25     ` Sven Luther
2002-10-18 16:54     ` Alessandro Baretta [this message]
2002-10-18 11:25 ` Maxence Guesdon
2002-10-18 11:44 ` [Caml-list] Re: "ocaml_beginners"::[] " Joaquin Cuenca Abela
2002-10-18 19:03   ` Thaddeus L. Olczyk
2002-10-19  0:08     ` Oleg
2002-10-19  3:57       ` Thaddeus L. Olczyk
2002-10-18 13:23 ` [Caml-list] " Pierre Weis
2002-10-18 15:40   ` AC
2002-10-18 19:02   ` Thaddeus L. Olczyk
2002-10-18 20:56     ` Pierre Weis
2002-10-18 16:34 ` Alessandro Baretta
2002-10-18 18:43 ` Issac Trotts
2002-10-18 20:21 ` Damien Doligez
     [not found] ` <20021018132416.3f89f744.maxence.guesdon@inria.fr>
     [not found]   ` <3db34c45.939491921@smtp.interaccess.com>
2002-10-19  0:53     ` Maxence Guesdon
2002-10-18 16:44 Nikolaj Bjorner

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=3DB03CAA.8080202@baretta.com \
    --to=alex@baretta.com \
    --cc=caml-list@inria.fr \
    --cc=olczyk@interaccess.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).