All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS
@ 2018-03-14 20:18 Jörg Krause
  2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Jörg Krause @ 2018-03-14 20:18 UTC (permalink / raw)
  To: buildroot

Ninja understands the `-j` option which defines how many jobs are
run in parallel.

Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>
---
 docs/manual/adding-packages-meson.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/manual/adding-packages-meson.txt b/docs/manual/adding-packages-meson.txt
index 65a0f6a962..f3b4b30e48 100644
--- a/docs/manual/adding-packages-meson.txt
+++ b/docs/manual/adding-packages-meson.txt
@@ -35,7 +35,7 @@ package. Let's start with an example:
 18: 	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
 19: 	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
 20:
-21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v)
+21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
 22:
 23: ifeq ($(BR2_PACKAGE_BAZ),y)
 24: FOO_CONF_OPTS += -Dbaz
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 2/3] libmpdclient: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
@ 2018-03-14 20:18 ` Jörg Krause
  2018-03-14 20:24   ` Yann E. MORIN
  2018-03-19 22:23   ` Peter Korsgaard
  2018-03-14 20:18 ` [Buildroot] [PATCH 3/3] mpd-mpc: " Jörg Krause
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 10+ messages in thread
From: Jörg Krause @ 2018-03-14 20:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>
---
 package/libmpdclient/libmpdclient.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libmpdclient/libmpdclient.mk b/package/libmpdclient/libmpdclient.mk
index a399516fe3..6ff27241c0 100644
--- a/package/libmpdclient/libmpdclient.mk
+++ b/package/libmpdclient/libmpdclient.mk
@@ -20,7 +20,7 @@ LIBMPDCLIENT_CONF_OPTS += \
 	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
 	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
 
-LIBMPDCLIENT_NINJA_OPTS = $(if $(VERBOSE),-v)
+LIBMPDCLIENT_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
 
 define LIBMPDCLIENT_CONFIGURE_CMDS
 	rm -rf $(@D)/build
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 3/3] mpd-mpc: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
  2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
@ 2018-03-14 20:18 ` Jörg Krause
  2018-03-14 20:24   ` Yann E. MORIN
  2018-03-19 22:23   ` Peter Korsgaard
  2018-03-14 20:23 ` [Buildroot] [PATCH 1/3] docs/manual: " Yann E. MORIN
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 10+ messages in thread
From: Jörg Krause @ 2018-03-14 20:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>
---
 package/mpd-mpc/mpd-mpc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/mpd-mpc/mpd-mpc.mk b/package/mpd-mpc/mpd-mpc.mk
index 3eecf8a3ef..e16f600491 100644
--- a/package/mpd-mpc/mpd-mpc.mk
+++ b/package/mpd-mpc/mpd-mpc.mk
@@ -17,7 +17,7 @@ MPD_MPC_CONF_OPTS += \
 	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
 	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
 
-MPD_MPC_NINJA_OPTS = $(if $(VERBOSE),-v)
+MPD_MPC_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
 
 define MPD_MPC_CONFIGURE_CMDS
 	rm -rf $(@D)/build
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
  2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
  2018-03-14 20:18 ` [Buildroot] [PATCH 3/3] mpd-mpc: " Jörg Krause
@ 2018-03-14 20:23 ` Yann E. MORIN
  2018-03-19 22:23 ` Peter Korsgaard
  2018-04-06 16:56 ` Peter Korsgaard
  4 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2018-03-14 20:23 UTC (permalink / raw)
  To: buildroot

J?rg, All,

On 2018-03-14 21:18 +0100, J?rg Krause spake thusly:
> Ninja understands the `-j` option which defines how many jobs are
> run in parallel.
> 
> Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  docs/manual/adding-packages-meson.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/docs/manual/adding-packages-meson.txt b/docs/manual/adding-packages-meson.txt
> index 65a0f6a962..f3b4b30e48 100644
> --- a/docs/manual/adding-packages-meson.txt
> +++ b/docs/manual/adding-packages-meson.txt
> @@ -35,7 +35,7 @@ package. Let's start with an example:
>  18: 	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
>  19: 	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
>  20:
> -21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v)
> +21: FOO_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
>  22:
>  23: ifeq ($(BR2_PACKAGE_BAZ),y)
>  24: FOO_CONF_OPTS += -Dbaz
> -- 
> 2.16.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 2/3] libmpdclient: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
@ 2018-03-14 20:24   ` Yann E. MORIN
  2018-03-19 22:23   ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2018-03-14 20:24 UTC (permalink / raw)
  To: buildroot

J?rg, All,

On 2018-03-14 21:18 +0100, J?rg Krause spake thusly:
> Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libmpdclient/libmpdclient.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/libmpdclient/libmpdclient.mk b/package/libmpdclient/libmpdclient.mk
> index a399516fe3..6ff27241c0 100644
> --- a/package/libmpdclient/libmpdclient.mk
> +++ b/package/libmpdclient/libmpdclient.mk
> @@ -20,7 +20,7 @@ LIBMPDCLIENT_CONF_OPTS += \
>  	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
>  	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
>  
> -LIBMPDCLIENT_NINJA_OPTS = $(if $(VERBOSE),-v)
> +LIBMPDCLIENT_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
>  
>  define LIBMPDCLIENT_CONFIGURE_CMDS
>  	rm -rf $(@D)/build
> -- 
> 2.16.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 3/3] mpd-mpc: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 ` [Buildroot] [PATCH 3/3] mpd-mpc: " Jörg Krause
@ 2018-03-14 20:24   ` Yann E. MORIN
  2018-03-19 22:23   ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2018-03-14 20:24 UTC (permalink / raw)
  To: buildroot

J?rg, All,

On 2018-03-14 21:18 +0100, J?rg Krause spake thusly:
> Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/mpd-mpc/mpd-mpc.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/mpd-mpc/mpd-mpc.mk b/package/mpd-mpc/mpd-mpc.mk
> index 3eecf8a3ef..e16f600491 100644
> --- a/package/mpd-mpc/mpd-mpc.mk
> +++ b/package/mpd-mpc/mpd-mpc.mk
> @@ -17,7 +17,7 @@ MPD_MPC_CONF_OPTS += \
>  	--buildtype $(if $(BR2_ENABLE_DEBUG),debug,release) \
>  	--cross-file $(HOST_DIR)/etc/meson/cross-compilation.conf
>  
> -MPD_MPC_NINJA_OPTS = $(if $(VERBOSE),-v)
> +MPD_MPC_NINJA_OPTS = $(if $(VERBOSE),-v) -j$(PARALLEL_JOBS)
>  
>  define MPD_MPC_CONFIGURE_CMDS
>  	rm -rf $(@D)/build
> -- 
> 2.16.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
                   ` (2 preceding siblings ...)
  2018-03-14 20:23 ` [Buildroot] [PATCH 1/3] docs/manual: " Yann E. MORIN
@ 2018-03-19 22:23 ` Peter Korsgaard
  2018-04-06 16:56 ` Peter Korsgaard
  4 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2018-03-19 22:23 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > Ninja understands the `-j` option which defines how many jobs are
 > run in parallel.

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 2/3] libmpdclient: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
  2018-03-14 20:24   ` Yann E. MORIN
@ 2018-03-19 22:23   ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2018-03-19 22:23 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 3/3] mpd-mpc: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 ` [Buildroot] [PATCH 3/3] mpd-mpc: " Jörg Krause
  2018-03-14 20:24   ` Yann E. MORIN
@ 2018-03-19 22:23   ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2018-03-19 22:23 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS
  2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
                   ` (3 preceding siblings ...)
  2018-03-19 22:23 ` Peter Korsgaard
@ 2018-04-06 16:56 ` Peter Korsgaard
  4 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2018-04-06 16:56 UTC (permalink / raw)
  To: buildroot

>>>>> "J?rg" == J?rg Krause <joerg.krause@embedded.rocks> writes:

 > Ninja understands the `-j` option which defines how many jobs are
 > run in parallel.

 > Signed-off-by: J?rg Krause <joerg.krause@embedded.rocks>

Committed to 2018.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-04-06 16:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-14 20:18 [Buildroot] [PATCH 1/3] docs/manual: pass PARALLEL_JOBS to NINJA_OPTS Jörg Krause
2018-03-14 20:18 ` [Buildroot] [PATCH 2/3] libmpdclient: " Jörg Krause
2018-03-14 20:24   ` Yann E. MORIN
2018-03-19 22:23   ` Peter Korsgaard
2018-03-14 20:18 ` [Buildroot] [PATCH 3/3] mpd-mpc: " Jörg Krause
2018-03-14 20:24   ` Yann E. MORIN
2018-03-19 22:23   ` Peter Korsgaard
2018-03-14 20:23 ` [Buildroot] [PATCH 1/3] docs/manual: " Yann E. MORIN
2018-03-19 22:23 ` Peter Korsgaard
2018-04-06 16:56 ` Peter Korsgaard

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.