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 mail4-relais-sop.national.inria.fr (mail4-relais-sop.national.inria.fr [192.134.164.105]) by yquem.inria.fr (Postfix) with ESMTP id BCC6EBBC4 for ; Thu, 19 Mar 2009 08:48:07 +0100 (CET) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AloCAF6VwUnUGyoCkWdsb2JhbACVcwEBAQEHDQoHEQO8BIN8Bg X-IronPort-AV: E=Sophos;i="4.38,388,1233529200"; d="scan'208";a="36780282" Received: from smtp2-g21.free.fr ([212.27.42.2]) by mail4-smtp-sop.national.inria.fr with ESMTP; 19 Mar 2009 08:48:05 +0100 Received: from smtp2-g21.free.fr (localhost [127.0.0.1]) by smtp2-g21.free.fr (Postfix) with ESMTP id 2772A4B0045; Thu, 19 Mar 2009 08:47:59 +0100 (CET) Received: from [82.229.183.156] (rke75-3-82-229-183-156.fbx.proxad.net [82.229.183.156]) by smtp2-g21.free.fr (Postfix) with ESMTP id 1F6BE4B0034; Thu, 19 Mar 2009 08:47:57 +0100 (CET) Message-ID: <49C1F8AC.7030705@frisch.fr> Date: Thu, 19 Mar 2009 08:47:56 +0100 From: Alain Frisch User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Alan Schmitt Cc: caml-list@inria.fr Subject: Re: [Caml-list] Problem during Godi bootstrap_stage2 (Windows mingw) References: <83A0EFEB-EA29-48ED-8701-FBF5C5A1C5CC@polytechnique.org> In-Reply-To: <83A0EFEB-EA29-48ED-8701-FBF5C5A1C5CC@polytechnique.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam: no; 0.00; frisch:01 frisch:01 mingw:01 schmitt:01 ocaml:01 mingw:01 cygwin:01 gcc:01 cygwin:01 gcc:01 symlinks:01 ocamlrun:01 cpp:01 wrote:01 symbolic:01 Alan Schmitt wrote: > I had to reinstall my environment to develop OCaml applications under > Windows (using mingw), and I'm having some problem during > bootstrap_stage2. Here are the last few lines before the problem occurs: I think the problem comes from a recent update in Cygwin. Now, gcc is a (Cygwin) symbolic link to gcc3.exe. Cygwin applications (like bash or make) are able to follow symlinks, but not native Win32 applications (like ocamlrun). A solution is to copy gcc3.exe to gcc.exe in a directory which is put in front of the PATH. Same for cpp. Alain