From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id MAA01166; Mon, 22 Oct 2001 12:16:59 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: (from weis@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id MAA03285 for caml-list@pauillac.inria.fr; Mon, 22 Oct 2001 12:16:53 +0200 (MET DST) Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id DAA29436 for ; Mon, 22 Oct 2001 03:47:24 +0200 (MET DST) Received: from mail.asahi-net.or.jp (mail.asahi-net.or.jp [202.224.39.39]) by concorde.inria.fr (8.11.1/8.10.0) with ESMTP id f9M1lM524022 for ; Mon, 22 Oct 2001 03:47:22 +0200 (MET DST) Received: from cool.email.ne.jp (e150058.ppp.asahi-net.or.jp [211.13.150.58]) by mail.asahi-net.or.jp (Postfix) with SMTP id C5E676FAC for ; Mon, 22 Oct 2001 10:46:29 +0900 (JST) Date: Mon, 22 Oct 2001 10:46:29 +0900 From: Masakazu Fukuzawa Subject: Re: [Caml-list] Ocaml 3.03 alpha MinGW port To: caml-list@inria.fr MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: TuruKame 1.33 (Win,400) In-Reply-To: References: Message-Id: Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk After applying the patch, in ocaml-3.03-alpha\asmcomp\i386\emit.mlp, add '| "mingw32"' to let emit_align = match Config.system with "linux_elf" | "bsd_elf" | "solaris" | "beos" | "cygwin" -> to read let emit_align = match Config.system with "linux_elf" | "bsd_elf" | "solaris" | "beos" | "cygwin" | "mingw32" -> and in ocaml-3.03-alpha\asmrun\i386.S, add '|| defined(SYS_mingw32)' to || defined(SYS_solaris) || defined(SYS_beos) || defined(SYS_cygwin) to read || defined(SYS_solaris) || defined(SYS_beos) || defined(SYS_cygwin) | | defined(SYS_mingw32) Now you can successfully make opt.opt and use ocamlopt.opt. Thanks, Dmitry!! Fukuzawa ------------------- Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr