From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=AWL autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from discorde.inria.fr (discorde.inria.fr [192.93.2.38]) by yquem.inria.fr (Postfix) with ESMTP id 468CFBBE1 for ; Mon, 9 Oct 2006 18:34:16 +0200 (CEST) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by discorde.inria.fr (8.13.6/8.13.6) with ESMTP id k99GYFqC031248 for ; Mon, 9 Oct 2006 18:34:16 +0200 Received: from [192.168.1.2] (che78-2-82-237-71-191.fbx.proxad.net [82.237.71.191]) by smtp5-g19.free.fr (Postfix) with ESMTP id 037B52783F; Mon, 9 Oct 2006 18:34:09 +0200 (CEST) Message-ID: <452A7A00.6080009@inria.fr> Date: Mon, 09 Oct 2006 18:34:08 +0200 From: Xavier Leroy User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Peter Halacsy Cc: caml-list@yquem.inria.fr Subject: Re: [Caml-list] ppc 64 bit References: In-Reply-To: X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Miltered: at discorde with ID 452A7A07.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; ocaml:01 ocaml:01 ocamlrun:01 -nostdlib:01 stdlib:01 2006:98 caml-list:01 exception:01 dev:01 boot:01 caml:02 compiling:02 objective:02 env:03 compiled:04 > make world > > everything compiled but > > ./ocaml > Objective Caml version 3.10+dev10 (2006-10-04) > > Fatal error: exception Env.Error(_) It looks you're tring to run OCaml before having installed it. This will, in general, not work. You'd need to do something like boot/ocamlrun ./ocaml -nostdlib -I ./stdlib. But save yourself the pain and just install after compiling. - Xavier Leroy