All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][dunfell PATCH] ti-rtos: enable parallel make
@ 2020-09-07  6:40 Subhajit Paul
  2020-09-08 15:32 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Subhajit Paul @ 2020-09-07  6:40 UTC (permalink / raw)
  To: meta-ti, denys, dmurphy, m-radhakrishnan2; +Cc: Subhajit Paul

Signed-off-by: Subhajit Paul <a0132170@ti.com>
---
 classes/ti-pdk.bbclass                      | 1 -
 recipes-bsp/sciclient/sciclient-rtos_git.bb | 2 +-
 recipes-bsp/udma-lld/udma-lld-rtos_git.bb   | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/classes/ti-pdk.bbclass b/classes/ti-pdk.bbclass
index 37305e89..a3685602 100644
--- a/classes/ti-pdk.bbclass
+++ b/classes/ti-pdk.bbclass
@@ -72,7 +72,6 @@ TI_PDK_DOXYGEN_SUPPORT ?= "1"
 TI_PDK_XDC_ARGS ?= "${TI_PDK_LIMIT_SOCS}"
 
 PARALLEL_XDC = "${@oe.utils.parallel_make_argument(d, '--jobs=%d')}"
-PARALLEL_MAKE = ""
 
 def get_doxygen_support(d):
     if d.getVar('TI_PDK_DOXYGEN_SUPPORT') == '1':
diff --git a/recipes-bsp/sciclient/sciclient-rtos_git.bb b/recipes-bsp/sciclient/sciclient-rtos_git.bb
index deaf0b12..26b09537 100644
--- a/recipes-bsp/sciclient/sciclient-rtos_git.bb
+++ b/recipes-bsp/sciclient/sciclient-rtos_git.bb
@@ -59,7 +59,7 @@ do_compile() {
     # make clean LIMIT_SOCS="${LIMSOCS}" LIMIT_BOARDS="${LIMBOARDS}"
 
     # Build am65xx libraries
-    make lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
+    oe_runmake lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
 
     #archive
     tar -cf sciclient.tar --exclude='*.tar' ./*
diff --git a/recipes-bsp/udma-lld/udma-lld-rtos_git.bb b/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
index a82eb362..797572d3 100644
--- a/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
+++ b/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
@@ -48,7 +48,7 @@ do_compile() {
     cd ${UDMA_LLD_ROOTPATH}
 
     # Build am65xx libraries
-    make clean lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
+    oe_runmake clean lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
 
     #archive
     tar -cf udma_lld.tar --exclude='*.tar' ./*
-- 
2.17.1


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

* Re: [meta-ti][dunfell PATCH] ti-rtos: enable parallel make
  2020-09-07  6:40 [meta-ti][dunfell PATCH] ti-rtos: enable parallel make Subhajit Paul
@ 2020-09-08 15:32 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2020-09-08 15:32 UTC (permalink / raw)
  To: Subhajit Paul; +Cc: meta-ti, dmurphy, m-radhakrishnan2

Has this been extensively tested on all platforms?


On Mon, Sep 07, 2020 at 12:10:07PM +0530, Subhajit Paul wrote:
> Signed-off-by: Subhajit Paul <a0132170@ti.com>
> ---
>  classes/ti-pdk.bbclass                      | 1 -
>  recipes-bsp/sciclient/sciclient-rtos_git.bb | 2 +-
>  recipes-bsp/udma-lld/udma-lld-rtos_git.bb   | 2 +-
>  3 files changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/classes/ti-pdk.bbclass b/classes/ti-pdk.bbclass
> index 37305e89..a3685602 100644
> --- a/classes/ti-pdk.bbclass
> +++ b/classes/ti-pdk.bbclass
> @@ -72,7 +72,6 @@ TI_PDK_DOXYGEN_SUPPORT ?= "1"
>  TI_PDK_XDC_ARGS ?= "${TI_PDK_LIMIT_SOCS}"
>  
>  PARALLEL_XDC = "${@oe.utils.parallel_make_argument(d, '--jobs=%d')}"
> -PARALLEL_MAKE = ""
>  
>  def get_doxygen_support(d):
>      if d.getVar('TI_PDK_DOXYGEN_SUPPORT') == '1':
> diff --git a/recipes-bsp/sciclient/sciclient-rtos_git.bb b/recipes-bsp/sciclient/sciclient-rtos_git.bb
> index deaf0b12..26b09537 100644
> --- a/recipes-bsp/sciclient/sciclient-rtos_git.bb
> +++ b/recipes-bsp/sciclient/sciclient-rtos_git.bb
> @@ -59,7 +59,7 @@ do_compile() {
>      # make clean LIMIT_SOCS="${LIMSOCS}" LIMIT_BOARDS="${LIMBOARDS}"
>  
>      # Build am65xx libraries
> -    make lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
> +    oe_runmake lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
>  
>      #archive
>      tar -cf sciclient.tar --exclude='*.tar' ./*
> diff --git a/recipes-bsp/udma-lld/udma-lld-rtos_git.bb b/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
> index a82eb362..797572d3 100644
> --- a/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
> +++ b/recipes-bsp/udma-lld/udma-lld-rtos_git.bb
> @@ -48,7 +48,7 @@ do_compile() {
>      cd ${UDMA_LLD_ROOTPATH}
>  
>      # Build am65xx libraries
> -    make clean lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
> +    oe_runmake clean lib xdc_meta doxygen LIMIT_SOCS="${TI_PDK_LIMIT_SOCS}" LIMIT_BOARDS="${TI_PDK_LIMIT_BOARDS}" LIMIT_CORES="${TI_PDK_LIMIT_CORES}"
>  
>      #archive
>      tar -cf udma_lld.tar --exclude='*.tar' ./*
> -- 
> 2.17.1
> 

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

end of thread, other threads:[~2020-09-08 15:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-07  6:40 [meta-ti][dunfell PATCH] ti-rtos: enable parallel make Subhajit Paul
2020-09-08 15:32 ` Denys Dmytriyenko

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.