From owner-freebsd-questions@FreeBSD.ORG Tue Mar 15 20:08:00 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD7431065673 for ; Tue, 15 Mar 2011 20:08:00 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout023.mac.com (asmtpout023.mac.com [17.148.16.98]) by mx1.freebsd.org (Postfix) with ESMTP id A53FB8FC0C for ; Tue, 15 Mar 2011 20:08:00 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp023.mac.com (Oracle Communications Messaging Exchange Server 7u4-20.01 64bit (built Nov 21 2010)) with ESMTPSA id <0LI400BSK7X7AR60@asmtp023.mac.com> for freebsd-questions@freebsd.org; Tue, 15 Mar 2011 13:07:55 -0700 (PDT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2011-03-15_02:2011-03-14, 2011-03-15, 1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1012030000 definitions=main-1103150145 From: Chuck Swiger In-reply-to: <4D7FBC0E.5020302@reiteration.net> Date: Tue, 15 Mar 2011 13:07:54 -0700 Message-id: <1468BFDD-5E3C-4756-830B-266D0942AED0@mac.com> References: <4D7FBC0E.5020302@reiteration.net> To: John X-Mailer: Apple Mail (2.1082) Cc: freebsd-questions@freebsd.org Subject: Re: can make -j be used for ports? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Ports ML List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2011 20:08:00 -0000 Hi-- [ ...followups sent to freebsd-ports@ list... ] On Mar 15, 2011, at 12:20 PM, John wrote: > I am no expert on make, so, here goes: > > Can -j options be used for make when building ports? Yes. Ports which support parallel builds will have MAKE_JOBS_SAFE=yes set in the port Makefile. It defaults to running -j with MAKE_JOBS_NUMBER=`${SYSCTL} -n kern.smp.cpus`, but you can change that to some other # if you like. Regards, -- -Chuck