From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by walapai.inria.fr (8.13.6/8.13.6) with ESMTP id p5RKdPlv012240 for ; Mon, 27 Jun 2011 22:39:25 +0200 X-IronPort-AV: E=Sophos;i="4.65,434,1304287200"; d="scan'208";a="112043187" Received: from walapai.inria.fr ([128.93.30.24]) by mail1-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-SHA; 27 Jun 2011 22:39:20 +0200 Received: from walapai.inria.fr (localhost [127.0.0.1]) by walapai.inria.fr (8.13.6/8.13.6) with ESMTP id p5RKdKuj012237 for ; Mon, 27 Jun 2011 22:39:20 +0200 Received: (from sympa@localhost) by walapai.inria.fr (8.13.6/8.12.10/Submit) id p5RKdK8B012236 for caml-list@inria.fr; Mon, 27 Jun 2011 22:39:20 +0200 Date: Mon, 27 Jun 2011 22:39:20 +0200 X-Authentication-Warning: walapai.inria.fr: sympa set sender to sympa@inria.fr using -f To: caml-list@inria.fr From: derek.schutt@colostate.edu In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: [Caml-list] build problem with 3.12.0; no ocamlrun in /usr/local/bin Hi, I'm a new user of ocaml, and having some difficulties that are probably due to my own ignorance. Namely, ocamlrun doesn't seem to get produced when I compile the code. I've downloaded and tried to compile ocaml 3.12.0 on a 64-bit linux system (Fedora 14, kernel 2.6.35.6-45.fc14.x86_64). make world and make bootstrap seem to work fine; here's the last bit of output from 'make bootstrap'. make compare make[1]: Entering directory `/usr/local/ocaml-3.12.0' Fixpoint reached, bootstrap succeeded. make[1]: Leaving directory `/usr/local/ocaml-3.12.0' However, if I type 'ocaml', I get this response: bash: /usr/local/bin/ocaml: /usr/local/bin/ocamlrun: bad interpreter: No such file or directory This is no surprise, because only ocaml and ocamlc are installed in /usr/local/bin. As far as I can tell, ocamlrun is never created, nor are many of the executable files listed in the INSTALL document, ocamlrun, ocamlyacc, ocamllex, etc. The output from 'configure' says these should be installed in /usr/local/bin: Directories where Objective Caml will be installed: binaries.................. /usr/local/bin standard library.......... /usr/local/lib/ocaml manual pages.............. /usr/local/man (with extension .1) Can anyone help me? I have to say I can't quite figure out what to try next. Thanks for your help.