All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masahiro Yamada <masahiroy@kernel.org>
To: Bastian Germann <bage@linutronix.de>
Cc: Nathan Chancellor <nathan@kernel.org>,
	Nick Desaulniers <ndesaulniers@google.com>,
	linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/1] kbuild: deb-pkg: Build parallely with current dpkg-buildpackage
Date: Tue, 21 Mar 2023 19:18:32 +0900	[thread overview]
Message-ID: <CAK7LNASckF_6QLHkvLEk3b8nE23v4Qy4wmm4FHd5BrDo6U2x2g@mail.gmail.com> (raw)
In-Reply-To: <20230315173524.63179-2-bage@linutronix.de>

On Thu, Mar 16, 2023 at 2:35 AM Bastian Germann <bage@linutronix.de> wrote:
>
> With dpkg-buildpackage v1.21.10 or later, the only way to build the
> deb-pkg generated package parallely is adding -j<N> to the MAKEFLAGS
> environment variable or using the --jobs-force option, see dpkg commit
> 1d0ea9b2ba3f ("dpkg-buildpackage: Change -j, --jobs semantics to
> non-force mode"). The package ignores the usual parallel build option
> that is described in Debian Policy.
>
> Derive make's -j parameter from the DEB_BUILD_OPTIONS environment variable
> that ends up being set by dpkg-buildpackage -j<N>. The snippet is copied
> from Debian Policy.
>
> Link: https://www.debian.org/doc/debian-policy/ch-source.html#debian-rules-and-deb-build-options
> Signed-off-by: Bastian Germann <bage@linutronix.de>
> ---


I was about to pick this up, then I stopped it.



If I apply this patch,

"make -j2 bindeb-pkg" shows a new warning.

make[3]: warning: -j16 forced in makefile: resetting jobserver mode.




Please note `nproc` returns 16 on my machine.


"make bindeb-pkg" also runs in 16 threads because
$(DEB_BUILD_OPTIONS) always contains "parallel=16"
even if -j<N> option is given at all.

In other words, this patch will take away user's freedom
to choose the number of threads.









>  scripts/package/mkdebian | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
> index f74380036bb5..ed5c2b65798b 100755
> --- a/scripts/package/mkdebian
> +++ b/scripts/package/mkdebian
> @@ -238,6 +238,11 @@ fi
>  cat <<EOF > debian/rules
>  #!$(command -v $MAKE) -f
>
> +ifneq (,\$(filter parallel=%,\$(DEB_BUILD_OPTIONS)))
> +       NUMJOBS = \$(patsubst parallel=%,%,\$(filter parallel=%,\$(DEB_BUILD_OPTIONS)))
> +       MAKEFLAGS += -j\$(NUMJOBS)
> +endif
> +
>  srctree ?= .
>
>  build-indep:
> --
> 2.39.2
>


-- 
Best Regards
Masahiro Yamada

  reply	other threads:[~2023-03-21 10:19 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-15 17:35 [PATCH v3 0/1] kbuild: deb-pkg: Build parallely with current dpkg-buildpackage Bastian Germann
2023-03-15 17:35 ` [PATCH v3 1/1] " Bastian Germann
2023-03-21 10:18   ` Masahiro Yamada [this message]
2023-03-21 10:28     ` Bastian Germann
2023-04-10 12:26       ` Masahiro Yamada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAK7LNASckF_6QLHkvLEk3b8nE23v4Qy4wmm4FHd5BrDo6U2x2g@mail.gmail.com \
    --to=masahiroy@kernel.org \
    --cc=bage@linutronix.de \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nathan@kernel.org \
    --cc=ndesaulniers@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.