Gentoo Archives: gentoo-dev

From: Mike Gilbert <floppym@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] [PATCH] linux-info.eclass: getfilevar: pass 'need-compiler=' to make
Date: Tue, 29 Nov 2022 22:31:42
Message-Id: CAJ0EP42S0cms+XSVmxmAnXDKW1rzSacQ+w7YUV5VwbmqHtcuXg@mail.gmail.com
In Reply to: Re: [gentoo-dev] [PATCH] linux-info.eclass: getfilevar: pass 'need-compiler=' to make by James Le Cuirot
1 On Tue, Nov 29, 2022 at 5:14 PM James Le Cuirot <chewi@g.o> wrote:
2 >
3 > On Tue, 2022-11-29 at 13:55 -0500, Mike Gilbert wrote:
4 > > This avoids some unnecessary Makefile logic and gives a nice speed up.
5 > >
6 > > Before the change, linux-info_pkg_setup takes 11 to 15 seconds on my
7 > > AMD Phenom II. After, it takes 3 to 4 seconds.
8 > >
9 > > Signed-off-by: Mike Gilbert <floppym@g.o>
10 > > ---
11 > > eclass/linux-info.eclass | 4 +++-
12 > > 1 file changed, 3 insertions(+), 1 deletion(-)
13 > >
14 > > diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass
15 > > index fc125b0d751..3e64cb9457a 100644
16 > > --- a/eclass/linux-info.eclass
17 > > +++ b/eclass/linux-info.eclass
18 > > @@ -238,7 +238,9 @@ getfilevar() {
19 > > # Pass dot-config=0 to avoid the config check in kernels prior to 5.4.
20 > > [[ ${EAPI:-0} == [0123] ]] && nonfatal() { "$@"; }
21 > > echo -e "e:\\n\\t@echo \$(${1})\\ninclude ${basefname}" | \
22 > > - nonfatal emake -C "${basedname}" --no-print-directory M="${T}" dot-config=0 need-config= ${BUILD_FIXES} -s -f - 2>/dev/null
23 > > + nonfatal emake -C "${basedname}" --no-print-directory M="${T}" \
24 > > + dot-config=0 need-config= need-compiler= \
25 > > + ${BUILD_FIXES} -s -f - 2>/dev/null
26 > >
27 > > ARCH=${myARCH}
28 > > fi
29 >
30 > I'm confused. Breaking up the line makes it faster?
31
32 The change is stated in the email subject.

Replies