From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by yquem.inria.fr (Postfix) with ESMTP id 1CDC1BC37 for ; Tue, 26 Jan 2010 16:42:20 +0100 (CET) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aq4CAI+cXkvZSMDqi2dsb2JhbACBRo4bjCoBAQEKCwoHEQW9HoQ5BA X-IronPort-AV: E=Sophos;i="4.49,347,1262559600"; d="scan'208";a="42224040" Received: from fmmailgate03.web.de ([217.72.192.234]) by mail2-smtp-roc.national.inria.fr with ESMTP; 26 Jan 2010 16:42:19 +0100 Received: from smtp07.web.de (fmsmtp07.dlan.cinetic.de [172.20.5.215]) by fmmailgate03.web.de (Postfix) with ESMTP id 54E8113CA9A27; Tue, 26 Jan 2010 16:42:19 +0100 (CET) Received: from [95.208.117.111] (helo=frosties.localdomain) by smtp07.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #314) id 1NZnYY-0007Gs-00; Tue, 26 Jan 2010 16:42:18 +0100 Received: from mrvn by frosties.localdomain with local (Exim 4.71) (envelope-from ) id 1NZnYY-0007zE-4Z; Tue, 26 Jan 2010 16:42:18 +0100 From: Goswin von Brederlow To: Ed Keith Cc: caml-list@inria.fr Subject: Re: [Caml-list] Unable to reach fixpoint building ocaml 3.11.2 on cygwin References: <110415.76516.qm@web58901.mail.re1.yahoo.com> Date: Tue, 26 Jan 2010 16:42:18 +0100 In-Reply-To: <110415.76516.qm@web58901.mail.re1.yahoo.com> (Ed Keith's message of "Tue, 26 Jan 2010 07:19:27 -0800 (PST)") Message-ID: <873a1slvol.fsf@frosties.localdomain> User-Agent: Gnus/5.110009 (No Gnus v0.9) XEmacs/21.4.22 (linux, no MULE) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: goswin-v-b@web.de X-Sender: goswin-v-b@web.de X-Provags-ID: V01U2FsdGVkX1/jQE0E93xQieHj63eMffauUO8VTQIi20o4A5at WWVLrib5aeTXpQ+fFQQE5ItVkG+RyhlHAQ5HpB97UbhUINA+qJ jhZ73q0hc= X-Spam: no; 0.00; fixpoint:01 ocaml:01 cygwin:01 ocaml:01 cygwin:01 usr:01 ocaml-:01 ocamldoc':01 usr:01 ocaml-:01 ocamlc:01 ocamlc:01 byte:01 fixpoint:01 foo:01 Ed Keith writes: > I am trying to build ocaml 3.112 on cygwin. Make world seems to work fine, but when I make bootstrap I do not get any errors, but I get the following message: > > make[2]: warning: Clock skew detected. Your build may be incomplete. > make[2]: Leaving directory `/usr/src/ocaml-3.11.2/ocamldoc' > make[1]: Leaving directory `/usr/src/ocaml-3.11.2' > make compare > make[1]: Entering directory `/usr/src/ocaml-3.11.2' > boot/ocamlc ocamlc differ: byte 137, line 2 > Fixpoint not reached, try one more bootstrapping cycle. > make[1]: Leaving directory `/usr/src/ocaml-3.11.2' > > I ran make bootstrap three times, with the same result each time then I repeated the whole process, and again got the same results. > > Can anyone give me any advice? > > -EdK > > > Ed Keith > e_d_k@yahoo.com > > Blog: edkeith.blogspot.com Maybe just fix all timestamps: touch foo find -exec touch -r foo "{}" \; rm foo make clean make world MfG Goswin