From owner-freebsd-hackers@FreeBSD.ORG Mon Jun 3 21:13:42 2013 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1155174F; Mon, 3 Jun 2013 21:13:42 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) by mx1.freebsd.org (Postfix) with ESMTP id DD43E17E2; Mon, 3 Jun 2013 21:13:41 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id 3so6229667pdj.19 for ; Mon, 03 Jun 2013 14:13:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=vvqJO+LMgg0W3JDcBs7qbVjq0DHs35LOttUIBoIeJEs=; b=mQMdl2thSJuuXtLrIifchvQYUEh/1yEJ7Jfth2X6bCwKGZCIi40XuNsw+g3khAA3Ru pLLG86Mo83nrBw2yoj/ahUDSOj7/Rt3Fa0Yy+L5CA1HnBfSSeO3YVbpYY+sdHsvleIAc jF0ZDWzfNV91ip7u4X4IAjSTxXy6A6J80aOmjUKKZLH2zaA85WJatUeH3mNBuNyQFuD+ KBWK8KYcrzoIcrzAuly7tXph/4b8j1blok2SLfginv+G9mXRDDKb04oEFVyUP1PCSWoW UXjrI7Sr/RN2IA1N5+cHopRrbRKGHn3Li2+KI5nYL0hhjOh+Y2IVu0eRJkOaV9OPJvUg TCZw== X-Received: by 10.66.189.130 with SMTP id gi2mr26146571pac.89.1370294021510; Mon, 03 Jun 2013 14:13:41 -0700 (PDT) Received: from [10.192.166.0] (stargate.chelsio.com. [67.207.112.58]) by mx.google.com with ESMTPSA id qi1sm64425095pac.21.2013.06.03.14.13.39 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 03 Jun 2013 14:13:40 -0700 (PDT) Message-ID: <51AD0702.2060802@gmail.com> Date: Mon, 03 Jun 2013 14:13:38 -0700 From: Navdeep Parhar User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130522 Thunderbird/17.0.6 MIME-Version: 1.0 To: freebsd-hackers@freebsd.org, sjg@freebsd.org Subject: Re: UNIVERSE_TARGET doesn't seem to work References: <20130531014320.GA22257@itx> In-Reply-To: <20130531014320.GA22257@itx> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jun 2013 21:13:42 -0000 On 05/30/13 18:43, Navdeep Parhar wrote: > I build kernel-toolchain and MAKE_JUST_KERNELS (often with NO_CLEAN, but > not this time) as part of my pre-commit checklist. It doesn't seem to > work after the switch to bmake. What am I missing? This on a system > at r251171 with nothing in make.conf or src.conf: > > # make -j12 universe UNIVERSE_TARGET=kernel-toolchain > --- universe_prologue --- > -------------------------------------------------------------- >>>> make universe started on Thu May 30 18:19:44 PDT 2013 > -------------------------------------------------------------- > `universe_amd64_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_arm_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_i386_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_ia64_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_mips_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_pc98_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_powerpc_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_sparc64_prologue' was not built (made 0, flags 2009, type b000001)! > `universe_epilogue' was not built (made 1, flags 2009, type b000001)! > `universe_epilogue' has .ORDER dependency against universe_amd64 (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_arm (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_i386 (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_ia64 (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_mips (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_pc98 (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_powerpc (made 1, flags 3009, type 3000001) > `universe_epilogue' has .ORDER dependency against universe_sparc64 (made 1, flags 3009, type 3000001) > > # make -j12 -DMAKE_JUST_KERNELS JFLAG=-j12 universe > (same result) It is the -j causing the problem. I tried with an empty /usr/obj too but that didn't help either. Does anyone know of a way around this? Building without -j is quite tedious. Navdeep