From owner-freebsd-arm@freebsd.org Tue Dec 3 17:15:42 2019 Return-Path: Delivered-To: freebsd-arm@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA3311B659C for ; Tue, 3 Dec 2019 17:15:42 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: from www.zefox.net (www.zefox.net [50.1.20.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "www.zefox.org", Issuer "www.zefox.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 47S7sp59whz4fWW; Tue, 3 Dec 2019 17:15:42 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: from www.zefox.net (localhost [127.0.0.1]) by www.zefox.net (8.15.2/8.15.2) with ESMTPS id xB3HFixa058974 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 3 Dec 2019 09:15:45 -0800 (PST) (envelope-from fbsd@www.zefox.net) Received: (from fbsd@localhost) by www.zefox.net (8.15.2/8.15.2/Submit) id xB3HFiup058973; Tue, 3 Dec 2019 09:15:44 -0800 (PST) (envelope-from fbsd) Date: Tue, 3 Dec 2019 09:15:44 -0800 From: bob prohaska To: Ian Lepore Cc: greg@unrelenting.technology, freebsd-arm@freebsd.org, bob prohaska Subject: Re: make -j1 produces four C++ instances Message-ID: <20191203171544.GC58722@www.zefox.net> References: <20191203155514.GA58722@www.zefox.net> <20191203162047.GB58722@www.zefox.net> <84bf64123583ce7b16aa60ea42c77e86fad7ba26.camel@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <84bf64123583ce7b16aa60ea42c77e86fad7ba26.camel@freebsd.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-Rspamd-Queue-Id: 47S7sp59whz4fWW X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2019 17:15:43 -0000 On Tue, Dec 03, 2019 at 09:28:28AM -0700, Ian Lepore wrote: > > When building ports, it's controlled by make variables which can be set > in make.conf or on the command line. The ports build machinery does > what it needs to, to pass that value down into whatever build system is > used within the port (cmake or ninja or whatever). > > make MAKE_JOBS_NUMBER=2 # like -j2 > make DISABLE_MAKE_JOBS=yes # disables multiple jobs completely > > Ahhh! that's what I needed to know. Thank you! bob prohaska >