From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: multi-process elisp compilation? Date: Tue, 27 Jul 2021 16:55:03 +0300 Message-ID: <83a6m7vp3c.fsf@gnu.org> References: <63ee5c0f-7906-7ed7-e9a6-bf6eb48741a4@piermont.com> <83eebkv6j4.fsf@gnu.org> <30e6c979-548a-1b30-1cd7-75365915e0f9@piermont.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23555"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: "Perry E. Metzger" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Jul 27 15:55:45 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m8NYf-0005u1-99 for ged-emacs-devel@m.gmane-mx.org; Tue, 27 Jul 2021 15:55:45 +0200 Original-Received: from localhost ([::1]:54134 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m8NYe-00059K-6C for ged-emacs-devel@m.gmane-mx.org; Tue, 27 Jul 2021 09:55:44 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56398) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m8NY7-0004NS-G3 for emacs-devel@gnu.org; Tue, 27 Jul 2021 09:55:11 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:47320) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m8NY7-0006dU-5L; Tue, 27 Jul 2021 09:55:11 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:1600 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m8NY5-0001Rq-RW; Tue, 27 Jul 2021 09:55:10 -0400 In-Reply-To: <30e6c979-548a-1b30-1cd7-75365915e0f9@piermont.com> (perry@piermont.com) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:271692 Archived-At: > Date: Tue, 27 Jul 2021 08:42:50 -0400 > Cc: emacs-devel@gnu.org > From: "Perry E. Metzger" > > On 7/26/21 22:23, Eli Zaretskii wrote: > >> From: "Perry E. Metzger" > >> > >> Howdy! Nowadays, most of us have multiprocessor desktops, but so far as > >> I can tell, when compiling elisp to .elc (or .eln) during make of Emacs, > >> the build only takes advantage of one processor. Is there a magic option > >> to configure that I missed that will use all my processors to compile > >> elisp during the build? > > You mean, "make -jN" where N is the number of execution units? > > Precisely, but that seems to work for building Emacs's .c files but not > for compiling the elisp files. No, it should compile the *.el files in parallel as well. It works here as expected, I use it all the time.