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.5 required=5.0 tests=AWL autolearn=disabled version=3.1.3 Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by yquem.inria.fr (Postfix) with ESMTP id AADD6BBAF; Wed, 15 Oct 2008 16:55:51 +0200 (CEST) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmsDAGCh9UjAXQIniGdsb2JhbACMFYdLAQEBFSKkaIkIgWs X-IronPort-AV: E=Sophos;i="4.33,416,1220220000"; d="scan'208";a="18769711" Received: from concorde.inria.fr ([192.93.2.39]) by mail1-smtp-roc.national.inria.fr with ESMTP; 15 Oct 2008 16:55:51 +0200 Received: from mail4-relais-sop.national.inria.fr (mail4-relais-sop.national.inria.fr [192.134.164.105]) by concorde.inria.fr (8.13.6/8.13.6) with ESMTP id m9FEtl94008400 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=OK); Wed, 15 Oct 2008 16:55:51 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoUAAJuh9UjYSfEMmmdsb2JhbACMFYdLAQEBAQEICwoHEQSkZokIgWs X-IronPort-AV: E=Sophos;i="4.33,416,1220220000"; d="scan'208";a="30372805" Received: from info-smtp-004.amnh.org ([216.73.241.12]) by mail4-smtp-sop.national.inria.fr with ESMTP; 15 Oct 2008 16:55:20 +0200 Received: from localhost (localhost.localdomain [127.0.0.1]) by info-smtp-004.amnh.org (Postfix) with ESMTP id BF7FA1CD521; Wed, 15 Oct 2008 10:55:19 -0400 (EDT) X-Virus-Scanned: amavisd-new at amnh.org Received: from info-smtp-004.amnh.org ([127.0.0.1]) by localhost (info-smtp-004.amnh.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F5vcrTr9VNIe; Wed, 15 Oct 2008 10:55:19 -0400 (EDT) Received: from [10.0.1.4] (unknown [216.73.248.245]) by info-smtp-004.amnh.org (Postfix) with ESMTP id D0C281CD50F; Wed, 15 Oct 2008 10:55:18 -0400 (EDT) Cc: caml users Message-Id: <1477A5A4-3533-4A62-AF02-07F860E56773@gmail.com> From: Andres Varon To: Damien Doligez In-Reply-To: <83E04F95-55DD-470E-9C6D-98FA15AE0CE0@inria.fr> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Subject: Re: [Caml-list] OCaml version 3.11.0+beta1 Date: Wed, 15 Oct 2008 10:55:18 -0400 References: <83E04F95-55DD-470E-9C6D-98FA15AE0CE0@inria.fr> X-Mailer: Apple Mail (2.929.2) X-Miltered: at concorde with ID 48F60473.000 by Joe's j-chkmail (http://j-chkmail . ensmp . fr)! X-Spam: no; 0.00; ocaml:01 damien:01 ocaml:01 dynlink:01 dynlink:01 cmxa:01 camlp:01 cmxa:01 ocaml-:01 cvs:01 camlcvs:01 bug:01 camlp:01 rprint:01 beginner's:01 On Oct 15, 2008, at 9:40 AM, Damien Doligez wrote: > Dear OCaml Users, > > We are pleased to celebrate the birthday of Friedrich Nietzsche > by releasing OCaml version 3.11.0+beta1. We need YOU to test > it thoroughly and report any problems you might have. Does > your favorite software work with it? Thanks for the good work. I would like to know exactly what architectures support the native Dynlink? I did not see this information in the release notes. I need to update configure scripts to include it or not in the link step because dynlink.cmxa is needed by camlp4fulllib.cmxa, but now I realize that it's not just a matter of having OCaml >= 3.11. many thanks again, Andres > > > It is available as a source release only (plus documentation), > from this address: > < http://caml.inria.fr/pub/distrib/ocaml-3.11/ > > > It is also available from our CVS server at: > < http://camlcvs.inria.fr/ > > Use tag "ocaml3110beta1" to get the beta release, and tag > "release311" to track the bug fixes between this and the > final release of 3.11.0. > > Have fun and PLEASE send us some feedback, positive or negative. > > > -- The OCaml team. > > > --------------------- Camlp5 HOW-TO ------------------------ > > Camlp5 version 5.09 does not work with OCaml 3.11.0+beta1 out of the > box. A new version compatible with OCaml 3.11.0 should be released > very soon. In the meantime you can use the following commands (in the > root directory of the Camlp5 5.09 sources) to compile Camlp5 5.09 with > OCaml 3.11.0+beta1. Note that you will need to provide the path name > to a copy of the OCaml 3.11.0+beta1 sources at the line labelled > "HERE". > > > cp -R ocaml_stuff/3.11 ocaml_stuff/3.11.0 > cp ocaml_src/main/ast2pt.ml_3.11 ocaml_src/main/ast2pt.ml_3.11.0 > ed main/ast2pt.ml <<-EOF > g/OCAML_3_11/s//& OR OCAML_3_11_0/ > wq > EOF > ed top/rprint.ml <<-EOF > g/OCAML_3_11/s//& OR OCAML_3_11_0/ > wq > EOF > ./configure --transitional > make steal OCAML_SRC= # HERE > make core > make bootstrap_sources > ./configure --transitional > make world.opt > > That's all. Now you can "make install" as usual. > > _______________________________________________ > Caml-list mailing list. Subscription management: > http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list > Archives: http://caml.inria.fr > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs