From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by yquem.inria.fr (Postfix) with ESMTP id 0169FD45F for ; Tue, 1 Nov 2005 00:26:09 +0100 (CET) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by nez-perce.inria.fr (8.13.0/8.13.0) with ESMTP id j9VNQ8L0001907 for ; Tue, 1 Nov 2005 00:26:09 +0100 Received: by xproxy.gmail.com with SMTP id s15so1114161wxc for ; Mon, 31 Oct 2005 15:26:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=li/NzHsfD0v7SAtSDCrkg1Rod3xBKMjKsZEb/thPRSLlYja7gD/J01TF6McfNo+o6aVdNz0u1+4+KoCqh/ELzr4qpBbAttFU9HNwwjgezVLJg1a/GRLaOqe1A1HRWg48kgk+Qdnnu6Zgvu5pA19xDaThG1PunAddDNxiFMmyMt4= Received: by 10.64.233.6 with SMTP id f6mr628202qbh; Mon, 31 Oct 2005 15:26:08 -0800 (PST) Received: by 10.65.23.20 with HTTP; Mon, 31 Oct 2005 15:26:08 -0800 (PST) Message-ID: Date: Tue, 1 Nov 2005 12:26:08 +1300 From: Jonathan Roewen To: caml-list@yquem.inria.fr Subject: [Caml-list] stdlib.cma MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Miltered: at nez-perce with ID 4366A810.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; caml-list:01 stdlib:01 cmi:01 cmo:01 stdlib:01 cmi:01 cmo:01 pervasives:01 libc:01 ...:98 cma:01 cma:01 library:03 depends:04 components:06 X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_BY_IP autolearn=disabled version=3.0.3 Hi, Couple questions... 1) In a .cma, it packages both .cmi & .cmo into it right? 2) If I want to make a custom stdlib.cma implementation, that uses components from my OS, can I only include the .cmi files? And have another library that a) depends on stdlib.cma, and b) contains the .cmo files? For instance: making pervasives channels based on my VFS layer, not libc implementations. Jonathan