From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 24E65BBAF for ; Thu, 15 Jul 2010 17:56:30 +0200 (CEST) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlgCAG/MPkzRVaE2kGdsb2JhbACDH5AMjDEIFQEBAQEJCQwHEQMfrUKCSoYUiQEBAQMFgSSDCXIEiFCHRQ X-IronPort-AV: E=Sophos;i="4.55,209,1278280800"; d="scan'208";a="66500665" Received: from mail-fx0-f54.google.com ([209.85.161.54]) by mail4-smtp-sop.national.inria.fr with ESMTP; 15 Jul 2010 17:56:29 +0200 Received: by fxm13 with SMTP id 13so655010fxm.27 for ; Thu, 15 Jul 2010 08:56:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=+2DT3ctSVtDPoUwrQhNtufPhsZn8rBAAaPJOr0HWM/o=; b=AqnKUrWFJClZXSp7ecAD86PzBJFnczTtCbdnzVFTOKdhYlHEYEvdp3D+o/UId2jRU0 0yaGaWd+caL3u8t+kdwEizV7E5yLJV6Bcg67SJy2p5R6wla+044F/0KITyj4JvOthR0I gBf9ehyOEVmIWESU9fAKBYtfVgwVv+nJ/z5zs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=I9Kx3Jz4fiaZXPGJ7d7KNqxTZmG9sq5Rm2RPoNlUevv7C3DiW+tuVbCSgwJ1nWa9pI nzNTNSHXDBz4ZdjmHzmQcv7NnkCNL0yhlcAp7Pq9q9pYdGzRGiSfdRIDawbIy3aMV9kW gDXX3wi6ULFyddzvEs9N2eA8fn62rAI5HO1Wc= MIME-Version: 1.0 Received: by 10.223.103.194 with SMTP id l2mr833218fao.6.1279209389185; Thu, 15 Jul 2010 08:56:29 -0700 (PDT) Sender: daniel.c.buenzli@gmail.com Received: by 10.223.113.11 with HTTP; Thu, 15 Jul 2010 08:56:29 -0700 (PDT) In-Reply-To: References: Date: Thu, 15 Jul 2010 17:56:29 +0200 X-Google-Sender-Auth: nBwesYbnKk681fsfelM7RKEHW0Y Message-ID: Subject: Re: ocamlbuild, knowing what is being built From: =?UTF-8?Q?Daniel_B=C3=BCnzli?= To: caml-list@inria.fr Content-Type: text/plain; charset=UTF-8 X-Spam: no; 0.00; buenzli:01 handles:03 concurrency:04 solved:04 daniel:04 daniel:04 problem:05 parallel:05 target:91 manually:08 solves:08 rule:10 rules:11 targets:12 targets:12 > is there any way to get the targets that are already > being built when a rule is invoked ? Solved that by manually tracking in my rules the targets I build in a global reference, so far this solves my problem but I wonder if there are any concurrency issue that may arise, I don't know how ocamlbuild handles parallel target building. Best, Daniel