All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] lttng: Enable on musl and riscv
@ 2019-03-18 16:58 Khem Raj
  2019-03-18 16:58 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Khem Raj @ 2019-03-18 16:58 UTC (permalink / raw)
  To: openembedded-core

Latest version compiles on musl as well as on risv64 now

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb | 2 +-
 meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb   | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
index 086254d3d3..15e75e51c9 100644
--- a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
+++ b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4613d1f8a9587bd7b366191830364b3 \
 
 inherit module
 
-COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm).*-linux'
+COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm|riscv).*-linux'
 
 #https://lttng.org/files/lttng-modules/lttng-modules-2.10.7.tar.bz2
 SRC_URI = "https://lttng.org/files/${BPN}/${BPN}-${PV}.tar.bz2 \
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
index 151e35e3c3..d544f8e206 100644
--- a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
+++ b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
@@ -26,9 +26,7 @@ PACKAGECONFIG[python] = "--enable-python-bindings ${PYTHON_OPTION},,python3 swig
 PACKAGECONFIG[lttng-ust] = "--with-lttng-ust, --without-lttng-ust, lttng-ust"
 PACKAGECONFIG[kmod] = "--with-kmod, --without-kmod, kmod"
 PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native"
-PACKAGECONFIG_remove_libc-musl = "lttng-ust"
 PACKAGECONFIG_remove_arc = "lttng-ust"
-PACKAGECONFIG_remove_riscv64 = "lttng-ust"
 
 SRC_URI = "https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \
            file://x32.patch \
-- 
2.21.0



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

* [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v
  2019-03-18 16:58 [PATCH 1/3] lttng: Enable on musl and riscv Khem Raj
@ 2019-03-18 16:58 ` Khem Raj
  2019-03-18 17:12   ` Jonathan Rajotte-Julien
  2019-03-18 16:58 ` [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v Khem Raj
  2019-03-18 17:08 ` [PATCH 1/3] lttng: Enable on musl and riscv Jonathan Rajotte-Julien
  2 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2019-03-18 16:58 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../packagegroups/packagegroup-core-tools-profile.bb           | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
index 762c046636..3d8e0c2ed7 100644
--- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
@@ -39,16 +39,13 @@ SYSTEMTAP_riscv64 = ""
 LTTNGUST = "lttng-ust"
 LTTNGUST_libc-musl = ""
 LTTNGUST_arc = ""
-LTTNGUST_riscv64 = ""
 
 LTTNGTOOLS = "lttng-tools"
 LTTNGTOOLS_libc-musl = ""
 LTTNGTOOLS_arc = ""
-LTTNGTOOLS_riscv64 = ""
 
 LTTNGMODULES = "lttng-modules"
 LTTNGMODULES_arc = ""
-LTTNGMODULES_riscv64 = ""
 
 BABELTRACE = "babeltrace"
 
-- 
2.21.0



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

* [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v
  2019-03-18 16:58 [PATCH 1/3] lttng: Enable on musl and riscv Khem Raj
  2019-03-18 16:58 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj
@ 2019-03-18 16:58 ` Khem Raj
  2019-03-18 17:11   ` Jonathan Rajotte-Julien
  2019-03-18 17:08 ` [PATCH 1/3] lttng: Enable on musl and riscv Jonathan Rajotte-Julien
  2 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2019-03-18 16:58 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/recipes-devtools/gdb/gdb-common.inc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc
index 57bc0dc773..a07625bb8d 100644
--- a/meta/recipes-devtools/gdb/gdb-common.inc
+++ b/meta/recipes-devtools/gdb/gdb-common.inc
@@ -6,7 +6,6 @@ DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native"
 LTTNGUST = "lttng-ust"
 LTTNGUST_arc = ""
 LTTNGUST_aarch64 = ""
-LTTNGUST_riscv64 = ""
 LTTNGUST_mipsarch = ""
 LTTNGUST_sh4 = ""
 LTTNGUST_libc-musl = ""
-- 
2.21.0



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

* Re: [PATCH 1/3] lttng: Enable on musl and riscv
  2019-03-18 16:58 [PATCH 1/3] lttng: Enable on musl and riscv Khem Raj
  2019-03-18 16:58 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj
  2019-03-18 16:58 ` [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v Khem Raj
@ 2019-03-18 17:08 ` Jonathan Rajotte-Julien
  2019-03-18 17:12   ` Khem Raj
  2 siblings, 1 reply; 9+ messages in thread
From: Jonathan Rajotte-Julien @ 2019-03-18 17:08 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

Hi Khem,

This looks good, still please take some moment to read this thread from musl
mailing list regarding lttng-ust usage of _SC_NPROCESSORS_CONF. For now I would
maintain the disabling of lttng-ust when musl is used. I should have CC'ed you,
I forgot.

The modification for riscv64 seems good to me. We do support lttng-* for
riscv64 [2] on debian.

[1] https://www.openwall.com/lists/musl/2019/03/15/5
[2] https://packages.debian.org/sid/utils/lttng-tools


On Mon, Mar 18, 2019 at 09:58:01AM -0700, Khem Raj wrote:
> Latest version compiles on musl as well as on risv64 now
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb | 2 +-
>  meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb   | 2 --
>  2 files changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> index 086254d3d3..15e75e51c9 100644
> --- a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> +++ b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4613d1f8a9587bd7b366191830364b3 \
>  
>  inherit module
>  
> -COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm).*-linux'
> +COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm|riscv).*-linux'
>  
>  #https://lttng.org/files/lttng-modules/lttng-modules-2.10.7.tar.bz2
>  SRC_URI = "https://lttng.org/files/${BPN}/${BPN}-${PV}.tar.bz2 \
> diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> index 151e35e3c3..d544f8e206 100644
> --- a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> +++ b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> @@ -26,9 +26,7 @@ PACKAGECONFIG[python] = "--enable-python-bindings ${PYTHON_OPTION},,python3 swig
>  PACKAGECONFIG[lttng-ust] = "--with-lttng-ust, --without-lttng-ust, lttng-ust"
>  PACKAGECONFIG[kmod] = "--with-kmod, --without-kmod, kmod"
>  PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native"
> -PACKAGECONFIG_remove_libc-musl = "lttng-ust"
>  PACKAGECONFIG_remove_arc = "lttng-ust"
> -PACKAGECONFIG_remove_riscv64 = "lttng-ust"
>  
>  SRC_URI = "https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \
>             file://x32.patch \
> -- 
> 2.21.0
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* Re: [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v
  2019-03-18 16:58 ` [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v Khem Raj
@ 2019-03-18 17:11   ` Jonathan Rajotte-Julien
  2019-03-19 20:37     ` Jonathan Rajotte-Julien
  0 siblings, 1 reply; 9+ messages in thread
From: Jonathan Rajotte-Julien @ 2019-03-18 17:11 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Mon, Mar 18, 2019 at 09:58:03AM -0700, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  meta/recipes-devtools/gdb/gdb-common.inc | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc
> index 57bc0dc773..a07625bb8d 100644
> --- a/meta/recipes-devtools/gdb/gdb-common.inc
> +++ b/meta/recipes-devtools/gdb/gdb-common.inc
> @@ -6,7 +6,6 @@ DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native"
>  LTTNGUST = "lttng-ust"

I did not know that gdb depends on lttng-ust, I know gdb can depend on
libbabeltrace*. I'll check that a bit more.

Cheers.

>  LTTNGUST_arc = ""
>  LTTNGUST_aarch64 = ""
> -LTTNGUST_riscv64 = ""
>  LTTNGUST_mipsarch = ""
>  LTTNGUST_sh4 = ""
>  LTTNGUST_libc-musl = ""
> -- 
> 2.21.0
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* Re: [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v
  2019-03-18 16:58 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj
@ 2019-03-18 17:12   ` Jonathan Rajotte-Julien
  0 siblings, 0 replies; 9+ messages in thread
From: Jonathan Rajotte-Julien @ 2019-03-18 17:12 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Mon, Mar 18, 2019 at 09:58:02AM -0700, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  .../packagegroups/packagegroup-core-tools-profile.bb           | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
> index 762c046636..3d8e0c2ed7 100644
> --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
> +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
> @@ -39,16 +39,13 @@ SYSTEMTAP_riscv64 = ""
>  LTTNGUST = "lttng-ust"
>  LTTNGUST_libc-musl = ""

Looks like you missed this, based on the commit msg.

>  LTTNGUST_arc = ""
> -LTTNGUST_riscv64 = ""
>  
>  LTTNGTOOLS = "lttng-tools"
>  LTTNGTOOLS_libc-musl = ""

Looks like you missed this, based on the commit msg.

>  LTTNGTOOLS_arc = ""
> -LTTNGTOOLS_riscv64 = ""
>  
>  LTTNGMODULES = "lttng-modules"
>  LTTNGMODULES_arc = ""
> -LTTNGMODULES_riscv64 = ""
>  
>  BABELTRACE = "babeltrace"
>  
> -- 
> 2.21.0
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* Re: [PATCH 1/3] lttng: Enable on musl and riscv
  2019-03-18 17:08 ` [PATCH 1/3] lttng: Enable on musl and riscv Jonathan Rajotte-Julien
@ 2019-03-18 17:12   ` Khem Raj
  0 siblings, 0 replies; 9+ messages in thread
From: Khem Raj @ 2019-03-18 17:12 UTC (permalink / raw)
  To: Jonathan Rajotte-Julien; +Cc: Patches and discussions about the oe-core layer

On Mon, Mar 18, 2019 at 10:08 AM Jonathan Rajotte-Julien
<jonathan.rajotte-julien@efficios.com> wrote:
>
> Hi Khem,
>
> This looks good, still please take some moment to read this thread from musl
> mailing list regarding lttng-ust usage of _SC_NPROCESSORS_CONF. For now I would
> maintain the disabling of lttng-ust when musl is used. I should have CC'ed you,
> I forgot.

I think thats right, I should keep this pull just to riscv for now. I
will send a v2 soonish

>
> The modification for riscv64 seems good to me. We do support lttng-* for
> riscv64 [2] on debian.
>
> [1] https://www.openwall.com/lists/musl/2019/03/15/5
> [2] https://packages.debian.org/sid/utils/lttng-tools
>
>
> On Mon, Mar 18, 2019 at 09:58:01AM -0700, Khem Raj wrote:
> > Latest version compiles on musl as well as on risv64 now
> >
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb | 2 +-
> >  meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb   | 2 --
> >  2 files changed, 1 insertion(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> > index 086254d3d3..15e75e51c9 100644
> > --- a/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> > +++ b/meta/recipes-kernel/lttng/lttng-modules_2.10.8.bb
> > @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4613d1f8a9587bd7b366191830364b3 \
> >
> >  inherit module
> >
> > -COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm).*-linux'
> > +COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm|riscv).*-linux'
> >
> >  #https://lttng.org/files/lttng-modules/lttng-modules-2.10.7.tar.bz2
> >  SRC_URI = "https://lttng.org/files/${BPN}/${BPN}-${PV}.tar.bz2 \
> > diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> > index 151e35e3c3..d544f8e206 100644
> > --- a/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> > +++ b/meta/recipes-kernel/lttng/lttng-tools_2.10.6.bb
> > @@ -26,9 +26,7 @@ PACKAGECONFIG[python] = "--enable-python-bindings ${PYTHON_OPTION},,python3 swig
> >  PACKAGECONFIG[lttng-ust] = "--with-lttng-ust, --without-lttng-ust, lttng-ust"
> >  PACKAGECONFIG[kmod] = "--with-kmod, --without-kmod, kmod"
> >  PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native"
> > -PACKAGECONFIG_remove_libc-musl = "lttng-ust"
> >  PACKAGECONFIG_remove_arc = "lttng-ust"
> > -PACKAGECONFIG_remove_riscv64 = "lttng-ust"
> >
> >  SRC_URI = "https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \
> >             file://x32.patch \
> > --
> > 2.21.0
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
> --
> Jonathan Rajotte-Julien
> EfficiOS


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

* Re: [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v
  2019-03-18 17:11   ` Jonathan Rajotte-Julien
@ 2019-03-19 20:37     ` Jonathan Rajotte-Julien
  0 siblings, 0 replies; 9+ messages in thread
From: Jonathan Rajotte-Julien @ 2019-03-19 20:37 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

Hi Khem,

On Mon, Mar 18, 2019 at 01:11:19PM -0400, Jonathan Rajotte-Julien wrote:
> On Mon, Mar 18, 2019 at 09:58:03AM -0700, Khem Raj wrote:
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  meta/recipes-devtools/gdb/gdb-common.inc | 1 -
> >  1 file changed, 1 deletion(-)
> > 
> > diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc
> > index 57bc0dc773..a07625bb8d 100644
> > --- a/meta/recipes-devtools/gdb/gdb-common.inc
> > +++ b/meta/recipes-devtools/gdb/gdb-common.inc
> > @@ -6,7 +6,6 @@ DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native"
> >  LTTNGUST = "lttng-ust"
> 
> I did not know that gdb depends on lttng-ust, I know gdb can depend on
> libbabeltrace*. I'll check that a bit more.

Gdb can indeed depend on lttng-ust for gdbserver for tracpoint.

This answer my question.

> 
> Cheers.
> 
> >  LTTNGUST_arc = ""
> >  LTTNGUST_aarch64 = ""
> > -LTTNGUST_riscv64 = ""
> >  LTTNGUST_mipsarch = ""
> >  LTTNGUST_sh4 = ""
> >  LTTNGUST_libc-musl = ""
> > -- 
> > 2.21.0
> > 
> > -- 
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> 
> -- 
> Jonathan Rajotte-Julien
> EfficiOS
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v
  2019-03-19  4:41 [PATCH V2 1/3] lttng: Enable tools and modules on riscv Khem Raj
@ 2019-03-19  4:41 ` Khem Raj
  0 siblings, 0 replies; 9+ messages in thread
From: Khem Raj @ 2019-03-19  4:41 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
---
v2: Rebased

 .../packagegroups/packagegroup-core-tools-profile.bb           | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
index 762c046636..3d8e0c2ed7 100644
--- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb
@@ -39,16 +39,13 @@ SYSTEMTAP_riscv64 = ""
 LTTNGUST = "lttng-ust"
 LTTNGUST_libc-musl = ""
 LTTNGUST_arc = ""
-LTTNGUST_riscv64 = ""
 
 LTTNGTOOLS = "lttng-tools"
 LTTNGTOOLS_libc-musl = ""
 LTTNGTOOLS_arc = ""
-LTTNGTOOLS_riscv64 = ""
 
 LTTNGMODULES = "lttng-modules"
 LTTNGMODULES_arc = ""
-LTTNGMODULES_riscv64 = ""
 
 BABELTRACE = "babeltrace"
 
-- 
2.21.0



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

end of thread, other threads:[~2019-03-19 20:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-18 16:58 [PATCH 1/3] lttng: Enable on musl and riscv Khem Raj
2019-03-18 16:58 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj
2019-03-18 17:12   ` Jonathan Rajotte-Julien
2019-03-18 16:58 ` [PATCH 3/3] gdb: Do not disable lttng-ust on risc-v Khem Raj
2019-03-18 17:11   ` Jonathan Rajotte-Julien
2019-03-19 20:37     ` Jonathan Rajotte-Julien
2019-03-18 17:08 ` [PATCH 1/3] lttng: Enable on musl and riscv Jonathan Rajotte-Julien
2019-03-18 17:12   ` Khem Raj
2019-03-19  4:41 [PATCH V2 1/3] lttng: Enable tools and modules on riscv Khem Raj
2019-03-19  4:41 ` [PATCH 2/3] packagegroup-core-tools-profile: Do not remove lttng-ust for musl and risc-v Khem Raj

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.