From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id NAA05687; Sat, 21 Sep 2002 13:30:15 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id NAA04605 for ; Sat, 21 Sep 2002 13:30:15 +0200 (MET DST) Received: from mail.helpinhand.com ([195.204.121.12]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id g8LBUED29120 for ; Sat, 21 Sep 2002 13:30:14 +0200 (MET DST) Received: from [62.179.158.177] (HELO daniello.helpinhand.com) by mail.helpinhand.com (CommuniGate Pro SMTP 3.2) with ESMTP id 711540 for caml-list@inria.fr; Sat, 21 Sep 2002 13:32:20 +0200 X-URL: Message-Id: <5.1.1.6.2.20020921130501.0280a058@helpinhand.com> X-Sender: hallvard.ystad@helpinhand.com X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Sat, 21 Sep 2002 13:35:10 +0200 To: caml-list@inria.fr From: Hallvard Ystad Subject: [Caml-list] beginner's questions Mime-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk Hello

I'm just about to get started with caml, but I encounter a few problems.

To do something simple, I took Stephan Houben's calc.ml (from http://caml.inria.fr/FAQ/stephan.html)= , added a function to avoid division by zero, and tried to compile it to native code using ocamlopt (on a windows 2000 machine). Here's what I get:

D:\ocaml>ocamlopt calc.ml
'ml' is not recognized as an internal or external command,
operable program or batch file.
Assembler error, input left in file C:\DOCUME~1\............\Temp\camlasm8c5322.asm

Did I miss something? Am I dumb? I've tried to read the documentation for compiling (found in differen FAQs), but none of them seem to mention special constraints for the windows platform. Any tips about what to do?

Second issue (not a problem!): when I try to run the ocamlbrowser, it complains about not finding tk83.dll and tcl83.dll. Well, I seem to have a version too new for this. My files are tk84.dll and tcl84.dll. I had to make copies of them with the "older" names for ocamlbrowser to work...

Hope someone can help with the compile problem (and maybe tell me how to compile with the regexp library too?).

Regards,
~HY

Pr=E6tera censeo Carthaginem esse delendam
------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id OAA06647; Sat, 21 Sep 2002 14:18:41 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f 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 OAA06937 for ; Sat, 21 Sep 2002 14:18:40 +0200 (MET DST) Received: from mx7.mail.ru (mx7.mail.ru [194.67.57.17]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g8LCIe524777 for ; Sat, 21 Sep 2002 14:18:40 +0200 (MET DST) Received: from drweb by mx7.mail.ru with drweb-scanned (Exim MX.7) id 17sjDb-000Lx3-00 for caml-list@inria.fr; Sat, 21 Sep 2002 16:18:39 +0400 Received: from [195.210.132.36] (helo=ROVER1) by mx7.mail.ru with esmtp (Exim SMTP.7) id 17sjDY-000LtE-00 for caml-list@inria.fr; Sat, 21 Sep 2002 16:18:38 +0400 X-Comment-To: Hallvard Ystad To: caml-list@inria.fr Subject: Re: [Caml-list] beginner's questions References: <5.1.1.6.2.20020921130501.0280a058@helpinhand.com> From: Dmitry Bely Date: Sat, 21 Sep 2002 16:17:11 +0400 In-Reply-To: <5.1.1.6.2.20020921130501.0280a058@helpinhand.com> (Hallvard Ystad's message of "Sat, 21 Sep 2002 13:35:10 +0200") Message-ID: <3cs3zge0.fsf@mail.ru> User-Agent: Gnus/5.090005 (Oort Gnus v0.05) XEmacs/21.4 (Common Lisp (Windows [3]), i586-pc-win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Envelope-To: caml-list@inria.fr Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk Hallvard Ystad writes: > I'm just about to get started with caml, but I encounter a few problems. > To do something simple, I took Stephan Houben's calc.ml (from > http://caml.inria.fr/FAQ/stephan.html), added a function to avoid division > by zero, and tried to compile it to native code using ocamlopt (on a > windows 2000 machine). Here's what I get: > D:\ocaml>ocamlopt calc.ml > 'ml' is not recognized as an internal or external command, operable program or batch file. > Assembler error, input left in file C:\DOCUME~1\............\Temp\camlasm8c5322.asm > Did I miss something? Am I dumb? I've tried to read the documentation for > compiling (found in differen FAQs), but none of them seem to mention > special constraints for the windows platform. They do. See readme.win32: [---cut---] Release notes on the MS Windows ports of Objective Caml ------------------------------------------------------- Starting with OCaml 3.05, there are no less than three ports of Objective Caml for MS Windows available: - a native Win32 port, built with the Microsoft development tools; - a native Win32 port, built with the MinGW development tools; - a port consisting of the Unix sources compiled under the Cygwin Unix-like environment for Windows. Here is a summary of the main differences between these ports: Native MS Native MinGW Cygwin Third-party software required - for base bytecode system none none none - for ocamlc -custom MSVC MinGW or Cygwin Cygwin - for native-code generation MSVC+MASM MinGW or Cygwin Cygwin [---cut---] So if you are going to use ocamlopt from win32 binary distribution, you have to install Microsoft Visual C and Microsoft Macro Assembler on your computer. > Second issue (not a problem!): when I try to run the ocamlbrowser, it > complains about not finding tk83.dll and tcl83.dll. Well, I seem to have a > version too new for this. My files are tk84.dll and tcl84.dll. I had to > make copies of them with the "older" names for ocamlbrowser to work... Again, the binary build expects Tcl/Tk 8.3 installed. To work with other version you can rebuild the whole Ocaml from the sources. > Hope someone can help with the compile problem (and maybe tell me how to > compile with the regexp library too?). Which one? E.g. module "Str" is already included into the standard library. - Dmitry Bely ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id NAA20923; Sun, 29 Sep 2002 13:32:17 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id NAA21176 for ; Sun, 29 Sep 2002 13:32:16 +0200 (MET DST) Received: from mail.helpinhand.com ([195.204.121.12]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id g8TBWFD26349 for ; Sun, 29 Sep 2002 13:32:15 +0200 (MET DST) Received: from [80.111.4.50] (HELO daniello.helpinhand.com) by mail.helpinhand.com (CommuniGate Pro SMTP 3.2) with ESMTP id 740222 for caml-list@inria.fr; Sun, 29 Sep 2002 13:34:37 +0200 X-URL: Message-Id: <5.1.1.6.2.20020929132717.01ad5650@helpinhand.com> X-Sender: hallvard@helpinhand.com X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Sun, 29 Sep 2002 13:37:23 +0200 To: caml-list@inria.fr From: Hallvard Ystad Subject: Re: [Caml-list] beginner's questions In-Reply-To: <3cs3zge0.fsf@mail.ru> References: <5.1.1.6.2.20020921130501.0280a058@helpinhand.com> <5.1.1.6.2.20020921130501.0280a058@helpinhand.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk Dixit Dmitry Bely (14.17 21.09.2002): >They do. See readme.win32: > >[---cut---] >Here is a summary of the main differences between these ports: > > Native MS Native MinGW = Cygwin >Third-party software required > - for base bytecode system none none = none > - for ocamlc -custom MSVC MinGW or Cygwin = Cygwin > - for native-code generation MSVC+MASM MinGW or Cygwin = Cygwin >[---cut---] > >So if you are going to use ocamlopt from win32 binary distribution, you= have >to install Microsoft Visual C and Microsoft Macro Assembler on your= computer. ..or MinGW. I tried to compile ocaml with MinGW installed, and then got this= error message (copied from console): C:\ocaml>make -f Makefile.nt world cd byterun ; make -f Makefile.nt all gcc -mno-cygwin -DIN_OCAMLRUN -DOCAML_STDLIB_DIR=3D'"C:/ocamlmgw/lib"' -O= -Wall -Wno-unused -D_DLL -c interp.c interp.c(215): jumptbl.h: No such file or directory make[1]: *** [interp.d.o] Error 1 make: *** [coldstart] Error 2 So what did I miss now? It seems jumptbl.h isn't included in the= distribution... Or am I mistaken again? >> Hope someone can help with the compile problem (and maybe tell me how to >> compile with the regexp library too?).=20 > >Which one? E.g. module "Str" is already included into the standard library. Actually, I was asking for a friend. He thinks it's called PCRE. Thanks, ~H Pr=E6tera censeo Carthaginem esse delendam ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id PAA14039; Mon, 30 Sep 2002 15:17:09 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f 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 PAA14035 for ; Mon, 30 Sep 2002 15:17:08 +0200 (MET DST) Received: from vestra.bendery.md (vestra.bendery.md [193.201.204.58]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g8UDGr527856 for ; Mon, 30 Sep 2002 15:16:55 +0200 (MET DST) Received: from vestra.bendery.md (vestra.bendery.md [193.201.204.58]) by vestra.bendery.md (8.9.3/8.9.3) with ESMTP id QAA02731 for ; Mon, 30 Sep 2002 16:16:39 +0300 Date: Mon, 30 Sep 2002 16:16:39 +0300 (EEST) From: dmitry grebeniuk To: caml-list@inria.fr Subject: Re: [Caml-list] beginner's questions In-Reply-To: <5.1.1.6.2.20020929132717.01ad5650@helpinhand.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk On Sun, 29 Sep 2002, Hallvard Ystad wrote: > ..or MinGW. I tried to compile ocaml with MinGW installed, and then got this error message (copied from console): > C:\ocaml>make -f Makefile.nt world > cd byterun ; make -f Makefile.nt all > gcc -mno-cygwin -DIN_OCAMLRUN -DOCAML_STDLIB_DIR='"C:/ocamlmgw/lib"' -O -Wall -Wno-unused -D_DLL -c interp.c > interp.c(215): jumptbl.h: No such file or directory > make[1]: *** [interp.d.o] Error 1 > make: *** [coldstart] Error 2 jumptbl.h is generated from existing files. I made it "by hand": cd byterun && make -f Makefile.nt jumptbl.h before running "make world". But real problems begin further, at Dynlink module (generally at first module when exception End_of_file needs to be got from stdlib.cma). I can't cite the exact error message, but ocamlc can't find "End_of_file" exception in "stdlib.cma(Pervasives)". Really, any small test program, which requires End_of_file, can't be compiled, and the problem is not in bad paths to library/compiler. I'm using mingw 2.0 (gcc 3.2, binutils 2.13). Where I'm wrong? bye ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id LAA04025; Tue, 1 Oct 2002 11:20:48 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f 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 LAA04066 for ; Tue, 1 Oct 2002 11:20:48 +0200 (MET DST) Received: from pauillac.inria.fr (pauillac.inria.fr [128.93.11.35]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g919KF508127; Tue, 1 Oct 2002 11:20:15 +0200 (MET DST) Received: (from xleroy@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id LAA04143; Tue, 1 Oct 2002 11:20:11 +0200 (MET DST) Date: Tue, 1 Oct 2002 11:20:11 +0200 From: Xavier Leroy To: dmitry grebeniuk Cc: caml-list@inria.fr Subject: Re: [Caml-list] beginner's questions Message-ID: <20021001112011.C3571@pauillac.inria.fr> References: <5.1.1.6.2.20020929132717.01ad5650@helpinhand.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from gds@vestra.bendery.md on Mon, Sep 30, 2002 at 04:16:39PM +0300 Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk > jumptbl.h is generated from existing files. I made it "by hand": > cd byterun && make -f Makefile.nt jumptbl.h > before running "make world". Right, I believe this is a small bug in the 3.06 distribution (the file byterun/.depend.nt should be in the distributed sources, but isn't). > But real problems begin further, at Dynlink module (generally at first > module when exception End_of_file needs to be got from stdlib.cma). > I can't cite the exact error message, but ocamlc can't find "End_of_file" > exception in "stdlib.cma(Pervasives)". > Really, any small test program, which requires End_of_file, can't be > compiled, and the problem is not in bad paths to library/compiler. Probably the file bytecomp/runtimedef.ml was generated incorrectly, maybe because you didn't use the correct version of "sed". The Win32 Makefiles are known to work with GNU sed as found in Cygwin, but one user reported problems with another version of sed coming from another Windows port of Unix tools. - Xavier Leroy ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id KAA31907; Wed, 2 Oct 2002 10:19:33 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f 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 KAA31761 for ; Wed, 2 Oct 2002 10:19:32 +0200 (MET DST) Received: from vestra.bendery.md (vestra.bendery.md [193.201.204.58]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g928JP512363; Wed, 2 Oct 2002 10:19:27 +0200 (MET DST) Received: from vestra.bendery.md (vestra.bendery.md [193.201.204.58]) by vestra.bendery.md (8.9.3/8.9.3) with ESMTP id LAA12734; Wed, 2 Oct 2002 11:19:21 +0300 Date: Wed, 2 Oct 2002 11:19:21 +0300 (EEST) From: dmitry grebeniuk To: Xavier Leroy cc: caml-list@inria.fr Subject: Re: [Caml-list] beginner's questions In-Reply-To: <20021001112011.C3571@pauillac.inria.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk On Tue, 1 Oct 2002, Xavier Leroy wrote: > Probably the file bytecomp/runtimedef.ml was generated incorrectly, > maybe because you didn't use the correct version of "sed". The > Win32 Makefiles are known to work with GNU sed as found in Cygwin, but > one user reported problems with another version of sed coming from > another Windows port of Unix tools. Thank you for help. Yes, you are right - problem with "sed" and end-of-lines. I get sources from cvs using cvsnt, which writes CRLF instead of LF. And there's an easy way to fix this problem - you can change sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/$$| \1;|p' byterun/fail.h | \ to sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/| \1;|p' byterun/fail.h | \ in Makefile.nt (thus not matching end-of-line) - the result will be the same, but it will work with CRLFs (matching ".?$" or "\r?$" or "\x0D?$" instead of "$" won't work). bye ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id UAA25021; Mon, 7 Oct 2002 20:21:29 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f 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 UAA25030 for ; Mon, 7 Oct 2002 20:21:27 +0200 (MET DST) Received: from mail.helpinhand.com ([195.204.121.12]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g97ILQ518708 for ; Mon, 7 Oct 2002 20:21:26 +0200 (MET DST) Received: from [80.111.5.68] (HELO daniello.helpinhand.com) by mail.helpinhand.com (CommuniGate Pro SMTP 3.2) with ESMTP id 760358 for caml-list@inria.fr; Mon, 07 Oct 2002 20:24:04 +0200 X-URL: Message-Id: <5.1.1.6.2.20021007202630.025db710@helpinhand.com> X-Sender: hallvard@helpinhand.com X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Mon, 07 Oct 2002 20:26:46 +0200 To: caml-list@inria.fr From: Hallvard Ystad Subject: Re: [Caml-list] beginner's questions Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk So what does all this mean? May I avoid the whole problem by downloading= version 3.05, or do I have to wait for 3.07? I made the changes you mentioned below, but I still get this: C:\ocaml>make -f Makefile.nt world cd byterun ; make -f Makefile.nt all gcc -mno-cygwin -DIN_OCAMLRUN -DOCAML_STDLIB_DIR=3D'"C:/ocamlmgw/lib"' -O= -Wall -W interp.c interp.c(215): jumptbl.h: No such file or directory make[1]: *** [interp.d.o] Error 1 make: *** [coldstart] Error 2 So the file jumptbl.h is still missing. What should I do? ~HY (sorry if this is out of this list's scope. If so, please tell me where to= look for this kind of help.) Dixit dmitry grebeniuk (10.19 02.10.2002): >On Tue, 1 Oct 2002, Xavier Leroy wrote: > >> Probably the file bytecomp/runtimedef.ml was generated incorrectly, >> maybe because you didn't use the correct version of "sed". The >> Win32 Makefiles are known to work with GNU sed as found in Cygwin, but >> one user reported problems with another version of sed coming from >> another Windows port of Unix tools. > > Thank you for help. Yes, you are right - problem with "sed" and >end-of-lines. I get sources from cvs using cvsnt, which writes CRLF >instead of LF. And there's an easy way to fix this problem - you can >change > sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/$$| \1;|p' byterun/fail.h | \ >to > sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/| \1;|p' byterun/fail.h | \ >in Makefile.nt (thus not matching end-of-line) - the result will be the >same, but it will work with CRLFs (matching ".?$" or "\r?$" or "\x0D?$" >instead of "$" won't work). > > >bye > >------------------- >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=20 Pr=E6tera censeo Carthaginem esse delendam ------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id LAA12556; Wed, 9 Oct 2002 11:08:09 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id LAA12936 for ; Wed, 9 Oct 2002 11:08:08 +0200 (MET DST) Received: from mail.helpinhand.com ([195.204.121.12]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id g99987D21234 for ; Wed, 9 Oct 2002 11:08:08 +0200 (MET DST) Received: from [80.111.5.68] (HELO daniello.helpinhand.com) by mail.helpinhand.com (CommuniGate Pro SMTP 3.2) with ESMTP id 760601 for caml-list@inria.fr; Wed, 09 Oct 2002 11:10:49 +0200 X-URL: Message-Id: <5.1.1.6.2.20021009110822.01ac2748@helpinhand.com> X-Sender: hallvard@helpinhand.com X-Mailer: QUALCOMM Windows Eudora Version 5.1.1 Date: Wed, 09 Oct 2002 11:13:29 +0200 To: caml-list@inria.fr From: Hallvard Ystad Subject: Re: [Caml-list] beginner's questions In-Reply-To: References: <5.1.1.6.2.20021007202649.025dba60@helpinhand.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk OK, thanks. Things work better now. But there still is a problem. There= seems to be noe file named "ocamlrun.a" anywhere, but it is required by= byterun/Makefile.nt, line 43: $(CC) -o ocamlrun.exe main.$(DO) ocamlrun.$(A) I get this error in the DOS console: C:/mingw/bin/gcc -mno-cygwin -o ocamlrun.exe main.d.o ocamlrun.a gcc: ocamlrun.a: No such file or directory make[1]: *** [ocamlrun.exe] Error 1 make: *** [coldstart] Error 2 (I need to specify full path to gcc, because I have WebObjects installed on= my computer, with an older version of gcc. It took a while to figure that= out. WO has bugged me before, overriding my java paths, so I really wasn't= all that surprised.) Is ocamlrun.a really missing, or am I overlooking something again? Thanks, ~H Dixit dmitry grebeniuk (09.13 09.10.2002): >On Mon, 7 Oct 2002, Hallvard Ystad wrote: > >> Sorry about this posting to your personal mail account. I was going to= send it to the list, but changed a few parameters here and there, and then= suddenly... the To: field had nothing but your name in it. I only found out= now. I didn't mean to bug you personnaly with my questions. > > You don't need to sorry. > Your problem (missing jumptbl.h) can be fixed manually: > >$ cd byterun >$ make -f Makefile.nt jumptbl.h > > >bye Pr=E6tera censeo Carthaginem esse delendam ------------------- 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