From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id 9ABDE7EE80 for ; Sat, 16 Mar 2013 21:39:51 +0100 (CET) Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of markr@raymonds.org.uk) identity=pra; client-ip=81.21.76.54; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="markr@raymonds.org.uk"; x-sender="markr@raymonds.org.uk"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of markr@raymonds.org.uk) identity=mailfrom; client-ip=81.21.76.54; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="markr@raymonds.org.uk"; x-sender="markr@raymonds.org.uk"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp.donhost.co.uk) identity=helo; client-ip=81.21.76.54; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="markr@raymonds.org.uk"; x-sender="postmaster@smtp.donhost.co.uk"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgsBAOHVRFFRFUw2g2dsb2JhbABDxzYOAQEBCgsSEgUlgjEIAh4STAVoPwEEHgWICKIqoFaPMoMqA44qiVOES44i X-IPAS-Result: AgsBAOHVRFFRFUw2g2dsb2JhbABDxzYOAQEBCgsSEgUlgjEIAh4STAVoPwEEHgWICKIqoFaPMoMqA44qiVOES44i X-IronPort-AV: E=Sophos;i="4.84,857,1355094000"; d="scan'208";a="7942232" Received: from smtp.donhost.co.uk ([81.21.76.54]) by mail2-smtp-roc.national.inria.fr with SMTP; 16 Mar 2013 21:39:51 +0100 Received: (qmail 26925 invoked from network); 16 Mar 2013 20:39:50 -0000 Received: from cpc33-cmbg15-2-0-cust6.5-4.cable.virginmedia.com (HELO MarkLaptop) (crraymonds-markr@81.102.136.7) by smtp.donhost.co.uk with SMTP; 16 Mar 2013 20:39:50 -0000 From: "Mark Raymond" To: Date: Sat, 16 Mar 2013 20:39:39 -0000 Message-ID: <000901ce2286$61eb84b0$25c28e10$@raymonds.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 thread-index: Ac4icdgGPVnhTGxETrONN/vyrO/B2g== Content-Language: en-gb Subject: [Caml-list] Compiling OCaml on win64 I am trying to compile OCaml 4.00.1 using MSVC 64-bit. When make tries to build the ocamlbuild.byte target, I get the following error: ''../ocamlcomp.sh -c -I ocamlbuild -I stdlib -o ocamlbuild/ocamlbuild_unix_plugin.cmo ocamlbuild/ocamlbuild_unix_plugin.ml File "ocamlbuild/ocamlbuild_unix_plugin.ml", line 20, characters 4-39: Error: Unbound module Unix Exit code 2 while executing this command: ''../ocamlcomp.sh -c -I ocamlbuild -I stdlib -o ocamlbuild/ocamlbuild_unix_plugin.cmo ocamlbuild/ocamlbuild_unix_plugin.ml make: *** [ocamlbuild.byte] Error 2 The unix files have been built in otherlibs/win32unix, but are not present in ocamlbuild or stdlib. All the other dependencies listed in ocamlbuild_unix_plugin.ml.depends are present in either ocamlbuild or stdlib. Any ideas?