From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 126159 invoked by alias); 29 May 2017 02:11:57 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 126111 invoked by uid 89); 29 May 2017 02:11:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy= X-HELO: mail-lf0-f54.google.com Received: from mail-lf0-f54.google.com (HELO mail-lf0-f54.google.com) (209.85.215.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 29 May 2017 02:11:53 +0000 Received: by mail-lf0-f54.google.com with SMTP id a5so27585118lfh.2 for ; Sun, 28 May 2017 19:11:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=FIg6rp8e6jfZnbJdor+JD/KPmstQ5QtCzb6uiyPOSP8=; b=hURtneh1Vsarfm6PvcJj7oVFDDkefOn8NnoCTlyw0+djxshf/xy0gC5Lk1F/deKTUu 2QvBZad8tRqkUrZan09bt1eR/4CLdgigmuKYbkKpWfnAW0dotl2g5SPdUVSVqVX985n8 KiH4+tz7GMmsMvRKtgk81KV7NiCK59ZuHQkmN91ik/cb7M9r1uBUhp6PtaoEg9cbgkMJ viaajm1RLj2YL4f3x/7l+5LzRQBnPxWovjVaW/sL5mHpUblLXmoVJ8doucGOqWQva/lI yBwsUqkUVecrOu1U6cEcugFBAoJ99F6PHZU+PPDI4T5w0clIfLW23Lt8feja0R/JsigR E3xA== X-Gm-Message-State: AODbwcC8erDgDevNNlgSBPI1w08d2pXRYXq5wUwM/YJ9KFdUsxja7KKP ajNe2D/q9FpM3VdJkk8xlbLm1PaMsk4A9OM= X-Received: by 10.25.148.148 with SMTP id o20mr3822532lfk.22.1496023915002; Sun, 28 May 2017 19:11:55 -0700 (PDT) MIME-Version: 1.0 Received: by 10.25.21.149 with HTTP; Sun, 28 May 2017 19:11:24 -0700 (PDT) In-Reply-To: <2a4518f2-71f4-59ff-6c74-5b2b123ec354@dronecode.org.uk> References: <2a4518f2-71f4-59ff-6c74-5b2b123ec354@dronecode.org.uk> From: Andy Li Date: Mon, 29 May 2017 02:11:00 -0000 Message-ID: Subject: Re: Haxe package To: Jon Turney Cc: cygwin-apps@cygwin.com Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00158.txt.bz2 On Fri, May 26, 2017 at 9:01 PM, Jon Turney wrote: > This fails to build for me, the first error is: > > make: *** No rule to make target 'libs/ilib/il.cmxa', needed by > 'src/context/common.cmx'. Stop. > > I wonder if I'm missing some build-dep? I've just double check and it still build fine on my machine... I notice your build log contains "make: *** Waiting for unfinished jobs....", does it mean `make` was run in parallel mode somehow? The Haxe makefile doesn't support parallel build so I set `MAKEOPTS="-f Makefile.win"` that removes the `-j` opt. Maybe there is some other setting that caused a parallel build? Best, Andy