From mboxrd@z Thu Jan 1 00:00:00 1970 From: Finn Thain Subject: Re: [PATCH v3 0/7] Remove errors building drivers/DRIVERNAME Date: Thu, 4 Oct 2018 09:27:16 +1000 (AEST) Message-ID: References: <20180928020816.11251-1-leobras.c@gmail.com> <20181001075607.GA3776@rric.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Cc: Robert Richter , lkcamp@lists.libreplanetbr.org, Alexander Shishkin , "James E.J. Bottomley" , Helge Deller , Martin Schwidefsky , Heiko Carstens , Geert Uytterhoeven , linux-kernel , linux-m68k@lists.linux-m68k.org, oprofile-list@lists.sf.net, linux-parisc@vger.kernel.org, linux-s390@vger.kernel.org, James Bottomley To: Leonardo Bras Return-path: In-Reply-To: List-ID: List-Id: linux-parisc.vger.kernel.org On Wed, 3 Oct 2018, Leonardo Bras wrote: > > Sorry, I was not very clear at my reasons why this change is important, > I will try to briefly explain the whole story. > > Some weeks ago I was trying to solve a task that needed to change some > compiling options, build the whole kernel (allyesconfig) and look for > errors. The problem was: It would take a long time to build everything > in my computer. And many friends with slimmer laptops would take much > longer. > It seems to me that you shouldn't need expensive optimization for continuous integration. In theory that could make a big difference though I admit to no experience of build farms. Have you looked at ccache? It will save you from having to recompile any files not changed. You could also leverage all of your laptops together using distcc. HTH. --