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 pB87cZ2x009464 for ; Thu, 8 Dec 2011 08:38:35 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AkkBABJp4E5CbwQakGdsb2JhbABDhDZQpVIiAQEBAQkJDQcUBCGBcgEBBQwXBAsBDTgBAQ8JAhgCAgUWCwICCQMCAQIBRQYNAQcBAQWIBqRBaZEuB4E0iGqBFogykgeMeg X-IronPort-AV: E=Sophos;i="4.71,318,1320620400"; d="scan'208";a="134481909" Received: from out2.smtp.messagingengine.com ([66.111.4.26]) by mail1-smtp-roc.national.inria.fr with ESMTP/TLS/ADH-AES256-SHA; 08 Dec 2011 08:38:29 +0100 Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 91BCA21738 for ; Thu, 8 Dec 2011 02:38:28 -0500 (EST) Received: from frontend1.nyi.mail.srv.osa ([10.202.2.160]) by compute5.internal (MEProxy); Thu, 08 Dec 2011 02:38:28 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:date:from:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; s=smtpout; bh=T0Ikr9IwB0caQDwApRHfUX 2LYmU=; b=lAw32gePx05+Zvwtntu8iu3TcsM0j1IPty+NlVyVq4f6MUi3qVSPio xIbfVov2UcROfmVyajXuESnczXTorm1+lbmQCdcuLA3huCJNku+Ern7CF6q4T8q7 krKBZBNHy2HCd3m9I+cajINgAXq25+0ops0RoWI04lUTt9WmVTvSY= X-Sasl-enc: 00AuHbg/1dIWLYkr7fOevpSCkH3wavPEkzBUnngtnueJ 1323329908 Received: from [192.168.2.3] (c-98-248-39-171.hsd1.ca.comcast.net [98.248.39.171]) by mail.messagingengine.com (Postfix) with ESMTPSA id 1FF278E018F; Thu, 8 Dec 2011 02:38:28 -0500 (EST) Message-ID: <4EE06AEF.6030103@ens-lyon.org> Date: Wed, 07 Dec 2011 23:44:47 -0800 From: Martin Jambon User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20101023 Lightning/1.0b3pre Thunderbird/3.1.3 MIME-Version: 1.0 To: =?UTF-8?B?SsOpcsOpbWllIERpbWlubw==?= CC: caml-list@inria.fr References: <1323271707.32238.17.camel@arrakis> <4EE04A80.6090409@ens-lyon.org> <1323327163.3523.14.camel@aurora> In-Reply-To: <1323327163.3523.14.camel@aurora> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Caml-list] Generic printer patch On 12/07/2011 10:52 PM, Jérémie Dimino wrote: > Le mercredi 07 décembre 2011 à 21:26 -0800, Martin Jambon a écrit : >> I would like to fetch the git repository but it won't let me: >> >> $ git clone 'http://www.dimino.org/git/ocaml-3.12.1-print.git' >> Cloning into ocaml-3.12.1-print... >> fatal: http://www.dimino.org/git/ocaml-3.12.1-print.git/info/refs not >> found: did you run git update-server-info on the server? > > I ran the command. It should work now. It works. Thanks. What do you think of moving the project to GitHub so we could follow its progress and contribute more easily? For now, I would just like to report that so far it works just as I imagined, with the following bug: let f x = show x results in a segfault when running bytecode and an Assert_failure while compiling with ocamlopt: external show : 'a -> string = "%show" let f l = show l let () = print_endline (f ()) $ ocamlopt -o toto toto.ml Fatal error: exception Assert_failure("asmcomp/cmmgen.ml", 1682, 10) Martin