Re: [PATCH v5] kbuild: add variables for compression tools

2020-06-08 Thread Guenter Roeck
On 6/8/20 3:28 AM, Denis Efremov wrote: > > > On 6/8/20 7:59 AM, Masahiro Yamada wrote: >> On Mon, Jun 8, 2020 at 10:30 AM Guenter Roeck wrote: >>> >>> Hi, >>> >>> On Fri, Jun 05, 2020 at 10:39:55AM +0300, Denis Efremov wrote: Allow user to use alternative implementations of compression

Re: [PATCH v5] kbuild: add variables for compression tools

2020-06-08 Thread Denis Efremov
On 6/8/20 7:59 AM, Masahiro Yamada wrote: > On Mon, Jun 8, 2020 at 10:30 AM Guenter Roeck wrote: >> >> Hi, >> >> On Fri, Jun 05, 2020 at 10:39:55AM +0300, Denis Efremov wrote: >>> Allow user to use alternative implementations of compression tools, >>> such as pigz, pbzip2, pxz. For example,

Re: [PATCH v5] kbuild: add variables for compression tools

2020-06-07 Thread Masahiro Yamada
On Mon, Jun 8, 2020 at 10:30 AM Guenter Roeck wrote: > > Hi, > > On Fri, Jun 05, 2020 at 10:39:55AM +0300, Denis Efremov wrote: > > Allow user to use alternative implementations of compression tools, > > such as pigz, pbzip2, pxz. For example, multi-threaded tools to > > speed up the build: > > $

Re: [PATCH v5] kbuild: add variables for compression tools

2020-06-07 Thread Guenter Roeck
Hi, On Fri, Jun 05, 2020 at 10:39:55AM +0300, Denis Efremov wrote: > Allow user to use alternative implementations of compression tools, > such as pigz, pbzip2, pxz. For example, multi-threaded tools to > speed up the build: > $ make GZIP=pigz BZIP2=pbzip2 > > Variables _GZIP, _BZIP2, _LZOP are

Re: [PATCH v5] kbuild: add variables for compression tools

2020-06-06 Thread Masahiro Yamada
On Fri, Jun 5, 2020 at 4:40 PM Denis Efremov wrote: > > Allow user to use alternative implementations of compression tools, > such as pigz, pbzip2, pxz. For example, multi-threaded tools to > speed up the build: > $ make GZIP=pigz BZIP2=pbzip2 > > Variables _GZIP, _BZIP2, _LZOP are used

[PATCH v5] kbuild: add variables for compression tools

2020-06-05 Thread Denis Efremov
Allow user to use alternative implementations of compression tools, such as pigz, pbzip2, pxz. For example, multi-threaded tools to speed up the build: $ make GZIP=pigz BZIP2=pbzip2 Variables _GZIP, _BZIP2, _LZOP are used internally because original env vars are reserved by the tools. The use of