From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from weis@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id XAA19213 for caml-redist@pauillac.inria.fr; Sun, 14 May 2000 23:18:00 +0200 (MET DST) Resent-Message-Id: <200005142118.XAA19213@pauillac.inria.fr> Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id IAA27329 for ; Sun, 14 May 2000 08:01:32 +0200 (MET DST) Received: from decis.be (mail.decis.be [195.74.199.225]) by concorde.inria.fr (8.10.0/8.10.0) with ESMTP id e4E61Nv05992 for ; Sun, 14 May 2000 08:01:25 +0200 (MET DST) Received: from TALI12 [192.168.0.7] by decis.be [195.74.199.255] with SMTP (MDaemon.v2.8.5.0.R) for ; Fri, 12 May 2000 20:23:24 +0200 Received: by TALI12 with Microsoft Mail id <01BFBC4F.D556FF70@TALI12>; Fri, 12 May 2000 20:22:45 +0200 Message-ID: <01BFBC4F.D556FF70@TALI12> From: Frederic van der Plancke To: "'Xavier.Leroy@inria.fr'" Cc: "'caml-list@inria.fr'" Subject: RE: (native Windows executables) Date: Fri, 12 May 2000 20:22:43 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MDaemon-Deliver-To: caml-list@inria.fr X-Return-Path: fvdp@decis.be Reply-To: fvdp@decis.be Resent-From: weis@pauillac.inria.fr Resent-Date: Sun, 14 May 2000 23:18:00 +0200 Resent-To: caml-redist@pauillac.inria.fr Thanks everyone for your answers. I think I have all information I need for now... More on this when I'll actually try to produce such executables, if I get problems. -- Fr=E9d=E9ric van der Plancke. ---------- From: Xavier Leroy[SMTP:Xavier.Leroy@inria.fr] Sent: mardi 9 mai 2000 11:14 To: fvdp@decis.be; 'caml-list@inria.fr' Subject: Re: your mail > Can OCaml programs be compiled to native Windows(x86) executables ? Yes, you can produce standalone Win32 executables, either using the bytecode compiler ocamlc with the -custom option, or using the native-code compiler ocamlopt. > What external programs are needed ? Can Microsoft Visual C++ be of > some help ? >>From the README.win32 file: Linking Caml bytecode with C code (ocamlc -custom) requires the Microsoft Visual C++ compiler version 6. The native-code compiler (ocamlopt) requires Visual C++ version 6 and the Microsoft assembler MASM version 6.11 or later. MASM can be downloaded for free from Microsoft's Web site; see the comp.lang.asm.x86 FAQ for directions, or = http://www.cs.uu.nl/wais/html/na-dir/assembly-language/x86/microsoft.html= Hope this helps, - Xavier Leroy