($INBOX_DIR/description missing)
 help / color / mirror / Atom feed
* [meta-oe][PATCH] sysbench: upgrade to 1.0.20
@ 2021-05-19  6:00 Nicolas Dechesne
  2021-05-19 16:37 ` [oe] " Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Nicolas Dechesne @ 2021-05-19  6:00 UTC (permalink / raw
  To: openembedded-devel; +Cc: Nicolas Dechesne

* Upstream moved to Github, let's use it for SRC_URI
* COPYING file was changed, but with no impact on license
* sysbench includes a copy of luajit project and it's compiled by
  default. However the internal copy of luajit won't cross compile
  properly, without patching it (it uses 'gcc'). So instead use the
  'system' luajit, e.g. the one package from OE (which is what most
  distro do anyways)
* Does not compile with different built folder. Lua generated files
  have things like that:
unsigned char __/__/__/__/sysbench-1_0_20/src/lua/internal/sysbench_lua[] =

Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
---
 ...{sysbench_0.4.12.bb => sysbench_1.0.20.bb} | 21 ++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)
 rename meta-oe/recipes-benchmark/sysbench/{sysbench_0.4.12.bb => sysbench_1.0.20.bb} (56%)

diff --git a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
similarity index 56%
rename from meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
rename to meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
index 708c71f4f..555477ab0 100644
--- a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
+++ b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
@@ -2,16 +2,17 @@ SUMMARY = "System performance benchmark"
 HOMEPAGE = "http://github.com/akopytov/sysbench"
 SECTION = "console/tests"
 LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-inherit autotools
+DEPENDS = "luajit"
 
-# The project has moved from Sourceforge to Launchpad, to Github. Use the source tarball from
-# Launchpad until the next release is available from Github.
-SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz"
+inherit autotools pkgconfig
 
-SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d"
-SRC_URI[sha256sum] = "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e"
+SRC_URI = "git://github.com/akopytov/${BPN}.git"
+
+SRCREV = "ebf1c90da05dea94648165e4f149abc20c979557"
+
+S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'largefile', d)}"
 PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,,"
@@ -21,6 +22,12 @@ PACKAGECONFIG[mysql] = "--with-mysql \
                         --with-mysql-libs=${STAGING_LIBDIR}, \
                         --without-mysql,mysql5"
 
+# the internal luajit won't cross compile
+EXTRA_OECONF += "--with-system-luajit"
+
+# lua.h generated files are bogus when using B != S
+B = "${S}"
+
 do_configure_prepend() {
     touch ${S}/NEWS ${S}/AUTHORS
 }
-- 
2.29.2


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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
  2021-05-19  6:00 [meta-oe][PATCH] sysbench: upgrade to 1.0.20 Nicolas Dechesne
@ 2021-05-19 16:37 ` Khem Raj
  2021-05-24 16:29   ` Nicolas Dechesne
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2021-05-19 16:37 UTC (permalink / raw
  To: Nicolas Dechesne; +Cc: openembeded-devel

seeing this failure

https://errors.yoctoproject.org/Errors/Details/584952/

On Tue, May 18, 2021 at 11:01 PM Nicolas Dechesne
<nicolas.dechesne@linaro.org> wrote:
>
> * Upstream moved to Github, let's use it for SRC_URI
> * COPYING file was changed, but with no impact on license
> * sysbench includes a copy of luajit project and it's compiled by
>   default. However the internal copy of luajit won't cross compile
>   properly, without patching it (it uses 'gcc'). So instead use the
>   'system' luajit, e.g. the one package from OE (which is what most
>   distro do anyways)
> * Does not compile with different built folder. Lua generated files
>   have things like that:
> unsigned char __/__/__/__/sysbench-1_0_20/src/lua/internal/sysbench_lua[] =
>
> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
> ---
>  ...{sysbench_0.4.12.bb => sysbench_1.0.20.bb} | 21 ++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)
>  rename meta-oe/recipes-benchmark/sysbench/{sysbench_0.4.12.bb => sysbench_1.0.20.bb} (56%)
>
> diff --git a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> similarity index 56%
> rename from meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
> rename to meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> index 708c71f4f..555477ab0 100644
> --- a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
> +++ b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> @@ -2,16 +2,17 @@ SUMMARY = "System performance benchmark"
>  HOMEPAGE = "http://github.com/akopytov/sysbench"
>  SECTION = "console/tests"
>  LICENSE = "GPLv2"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> -inherit autotools
> +DEPENDS = "luajit"
>
> -# The project has moved from Sourceforge to Launchpad, to Github. Use the source tarball from
> -# Launchpad until the next release is available from Github.
> -SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz"
> +inherit autotools pkgconfig
>
> -SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d"
> -SRC_URI[sha256sum] = "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e"
> +SRC_URI = "git://github.com/akopytov/${BPN}.git"
> +
> +SRCREV = "ebf1c90da05dea94648165e4f149abc20c979557"
> +
> +S = "${WORKDIR}/git"
>
>  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'largefile', d)}"
>  PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,,"
> @@ -21,6 +22,12 @@ PACKAGECONFIG[mysql] = "--with-mysql \
>                          --with-mysql-libs=${STAGING_LIBDIR}, \
>                          --without-mysql,mysql5"
>
> +# the internal luajit won't cross compile
> +EXTRA_OECONF += "--with-system-luajit"
> +
> +# lua.h generated files are bogus when using B != S
> +B = "${S}"
> +
>  do_configure_prepend() {
>      touch ${S}/NEWS ${S}/AUTHORS
>  }
> --
> 2.29.2
>
>
> 
>

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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
  2021-05-19 16:37 ` [oe] " Khem Raj
@ 2021-05-24 16:29   ` Nicolas Dechesne
  2021-05-25  0:52     ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Nicolas Dechesne @ 2021-05-24 16:29 UTC (permalink / raw
  To: Khem Raj; +Cc: openembeded-devel

[-- Attachment #1: Type: text/plain, Size: 4069 bytes --]

On Wed, May 19, 2021 at 6:37 PM Khem Raj <raj.khem@gmail.com> wrote:

> seeing this failure
>
> https://errors.yoctoproject.org/Errors/Details/584952/


hmm. Sorry about the delay.. Looks like I am not able to reproduce the
error, it builds for me with oe-core only and with:

Build Configuration:
BB_VERSION           = "1.51.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "debian-10"
TARGET_SYS           = "arm-oe-linux-gnueabi"
MACHINE              = "qemuarm"
DISTRO               = "nodistro"
DISTRO_VERSION       = "nodistro.0"
TUNE_FEATURES        = "arm armv7ve vfp thumb neon callconvention-hard"
TARGET_FPU           = "hard"

Do you have any idea why it would work for me, and not for you?


>
>
> On Tue, May 18, 2021 at 11:01 PM Nicolas Dechesne
> <nicolas.dechesne@linaro.org> wrote:
> >
> > * Upstream moved to Github, let's use it for SRC_URI
> > * COPYING file was changed, but with no impact on license
> > * sysbench includes a copy of luajit project and it's compiled by
> >   default. However the internal copy of luajit won't cross compile
> >   properly, without patching it (it uses 'gcc'). So instead use the
> >   'system' luajit, e.g. the one package from OE (which is what most
> >   distro do anyways)
> > * Does not compile with different built folder. Lua generated files
> >   have things like that:
> > unsigned char
> __/__/__/__/sysbench-1_0_20/src/lua/internal/sysbench_lua[] =
> >
> > Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
> > ---
> >  ...{sysbench_0.4.12.bb => sysbench_1.0.20.bb} | 21 ++++++++++++-------
> >  1 file changed, 14 insertions(+), 7 deletions(-)
> >  rename meta-oe/recipes-benchmark/sysbench/{sysbench_0.4.12.bb =>
> sysbench_1.0.20.bb} (56%)
> >
> > diff --git a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
> b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> > similarity index 56%
> > rename from meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
> > rename to meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> > index 708c71f4f..555477ab0 100644
> > --- a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
> > +++ b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
> > @@ -2,16 +2,17 @@ SUMMARY = "System performance benchmark"
> >  HOMEPAGE = "http://github.com/akopytov/sysbench"
> >  SECTION = "console/tests"
> >  LICENSE = "GPLv2"
> > -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> >
> > -inherit autotools
> > +DEPENDS = "luajit"
> >
> > -# The project has moved from Sourceforge to Launchpad, to Github. Use
> the source tarball from
> > -# Launchpad until the next release is available from Github.
> > -SRC_URI = "
> https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz
> <https://launchpad.net/ubuntu/+archive/primary/+files/$%7BBPN%7D_$%7BPV%7D.orig.tar.gz>
> "
> > +inherit autotools pkgconfig
> >
> > -SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d"
> > -SRC_URI[sha256sum] =
> "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e"
> > +SRC_URI = "git://github.com/akopytov/${BPN}.git
> <http://github.com/akopytov/$%7BBPN%7D.git>"
> > +
> > +SRCREV = "ebf1c90da05dea94648165e4f149abc20c979557"
> > +
> > +S = "${WORKDIR}/git"
> >
> >  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'largefile',
> d)}"
> >  PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,,"
> > @@ -21,6 +22,12 @@ PACKAGECONFIG[mysql] = "--with-mysql \
> >                          --with-mysql-libs=${STAGING_LIBDIR}, \
> >                          --without-mysql,mysql5"
> >
> > +# the internal luajit won't cross compile
> > +EXTRA_OECONF += "--with-system-luajit"
> > +
> > +# lua.h generated files are bogus when using B != S
> > +B = "${S}"
> > +
> >  do_configure_prepend() {
> >      touch ${S}/NEWS ${S}/AUTHORS
> >  }
> > --
> > 2.29.2
> >
> >
> > 
> >
>

[-- Attachment #2: Type: text/html, Size: 6517 bytes --]

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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
  2021-05-24 16:29   ` Nicolas Dechesne
@ 2021-05-25  0:52     ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2021-05-25  0:52 UTC (permalink / raw
  To: Nicolas Dechesne; +Cc: openembeded-devel

On Mon, May 24, 2021 at 9:29 AM Nicolas Dechesne
<nicolas.dechesne@linaro.org> wrote:
>
>
>
> On Wed, May 19, 2021 at 6:37 PM Khem Raj <raj.khem@gmail.com> wrote:
>>
>> seeing this failure
>>
>> https://errors.yoctoproject.org/Errors/Details/584952/
>
>
> hmm. Sorry about the delay.. Looks like I am not able to reproduce the error, it builds for me with oe-core only and with:
>
> Build Configuration:
> BB_VERSION           = "1.51.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "debian-10"
> TARGET_SYS           = "arm-oe-linux-gnueabi"
> MACHINE              = "qemuarm"
> DISTRO               = "nodistro"
> DISTRO_VERSION       = "nodistro.0"
> TUNE_FEATURES        = "arm armv7ve vfp thumb neon callconvention-hard"
> TARGET_FPU           = "hard"
>
> Do you have any idea why it would work for me, and not for you?

you need really old compiler which does not implement
-fmacro-prefix-map cmdline option e.g. gcc 7 on ubuntu 18.04 build
host.
perhaps this package should ensure these options are not used in BUILD_CFLAGS

>
>>
>>
>>
>> On Tue, May 18, 2021 at 11:01 PM Nicolas Dechesne
>> <nicolas.dechesne@linaro.org> wrote:
>> >
>> > * Upstream moved to Github, let's use it for SRC_URI
>> > * COPYING file was changed, but with no impact on license
>> > * sysbench includes a copy of luajit project and it's compiled by
>> >   default. However the internal copy of luajit won't cross compile
>> >   properly, without patching it (it uses 'gcc'). So instead use the
>> >   'system' luajit, e.g. the one package from OE (which is what most
>> >   distro do anyways)
>> > * Does not compile with different built folder. Lua generated files
>> >   have things like that:
>> > unsigned char __/__/__/__/sysbench-1_0_20/src/lua/internal/sysbench_lua[] =
>> >
>> > Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
>> > ---
>> >  ...{sysbench_0.4.12.bb => sysbench_1.0.20.bb} | 21 ++++++++++++-------
>> >  1 file changed, 14 insertions(+), 7 deletions(-)
>> >  rename meta-oe/recipes-benchmark/sysbench/{sysbench_0.4.12.bb => sysbench_1.0.20.bb} (56%)
>> >
>> > diff --git a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
>> > similarity index 56%
>> > rename from meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
>> > rename to meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
>> > index 708c71f4f..555477ab0 100644
>> > --- a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb
>> > +++ b/meta-oe/recipes-benchmark/sysbench/sysbench_1.0.20.bb
>> > @@ -2,16 +2,17 @@ SUMMARY = "System performance benchmark"
>> >  HOMEPAGE = "http://github.com/akopytov/sysbench"
>> >  SECTION = "console/tests"
>> >  LICENSE = "GPLv2"
>> > -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>> >
>> > -inherit autotools
>> > +DEPENDS = "luajit"
>> >
>> > -# The project has moved from Sourceforge to Launchpad, to Github. Use the source tarball from
>> > -# Launchpad until the next release is available from Github.
>> > -SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz"
>> > +inherit autotools pkgconfig
>> >
>> > -SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d"
>> > -SRC_URI[sha256sum] = "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e"
>> > +SRC_URI = "git://github.com/akopytov/${BPN}.git"
>> > +
>> > +SRCREV = "ebf1c90da05dea94648165e4f149abc20c979557"
>> > +
>> > +S = "${WORKDIR}/git"
>> >
>> >  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'largefile', d)}"
>> >  PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,,"
>> > @@ -21,6 +22,12 @@ PACKAGECONFIG[mysql] = "--with-mysql \
>> >                          --with-mysql-libs=${STAGING_LIBDIR}, \
>> >                          --without-mysql,mysql5"
>> >
>> > +# the internal luajit won't cross compile
>> > +EXTRA_OECONF += "--with-system-luajit"
>> > +
>> > +# lua.h generated files are bogus when using B != S
>> > +B = "${S}"
>> > +
>> >  do_configure_prepend() {
>> >      touch ${S}/NEWS ${S}/AUTHORS
>> >  }
>> > --
>> > 2.29.2
>> >
>> >
>> > 
>> >

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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
@ 2022-09-12  6:49 venkatakoteswararao talluri
  2022-09-12  6:50 ` venkatakoteswararao talluri
       [not found] ` <17140A457780EF26.27399@lists.openembedded.org>
  0 siblings, 2 replies; 7+ messages in thread
From: venkatakoteswararao talluri @ 2022-09-12  6:49 UTC (permalink / raw
  To: openembedded-devel, Khem Raj


[-- Attachment #1.1: Type: text/plain, Size: 941 bytes --]

Hi All,

I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm getting
following error so can you please help me to solve this issue.
Image:qti-multimedia-image
Target:qcs610-odk-64

Error log:

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'luajit' (but
/var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
luajit was skipped: incompatible with host aarch64-oe-linux (not in
COMPATIBLE_HOST)
NOTE: Runtime target 'luajit' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['luajit']
ERROR: Required build target 'qti-multimedia-image' has no buildable
providers.
Missing or unbuildable dependency chain was: ['qti-multimedia-image',
'luajit']


Please find the attached sysbench_1.0.20.bb file.


Thanks,

Venkata Talluri

[-- Attachment #1.2: Type: text/html, Size: 1213 bytes --]

[-- Attachment #2: sysbench_1.0.20.bb --]
[-- Type: application/octet-stream, Size: 1415 bytes --]

SUMMARY = "System performance benchmark"
HOMEPAGE = "http://github.com/akopytov/sysbench"
SECTION = "console/tests"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"

DEPENDS = "luajit"

# The project has moved from Sourceforge to Launchpad, to Github. Use the source tarball from
# Launchpad until the next release is available from Github.
#SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz";
inherit autotools pkgconfig

#SRC_URI = "https://github.com/akopytov/sysbench/archive/refs/tags/${PV}.tar.gz"
SRC_URI = "git://github.com/akopytov/${BPN}.git"

SRCREV = "ebf1c90da05dea94648165e4f149abc20c979557"

S = "${WORKDIR}/git"

#SRC_URI[md5sum] = "756381c6fc4e16af1e0831b5e6a3dcb3"
#SRC_URI[sha256sum] = "e8ee79b1f399b2d167e6a90de52ccc90e52408f7ade1b9b7135727efe181347f"

PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'largefile', d)}"
PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,,"
#PACKAGECONFIG[aio] = "--enable-aio,--disable-aio,libaio,"
PACKAGECONFIG[mysql] = "--with-mysql \
                        --with-mysql-libs=${STAGING_LIBDIR}, \
                        --without-mysql,mysql5"

# the internal luajit won't cross compile
EXTRA_OECONF += "--with-system-luajit"

# lua.h generated files are bogus when using B != S
B = "${S}"

do_configure_prepend() {
    touch ${S}/NEWS ${S}/AUTHORS
}

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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
  2022-09-12  6:49 venkatakoteswararao talluri
@ 2022-09-12  6:50 ` venkatakoteswararao talluri
       [not found] ` <17140A457780EF26.27399@lists.openembedded.org>
  1 sibling, 0 replies; 7+ messages in thread
From: venkatakoteswararao talluri @ 2022-09-12  6:50 UTC (permalink / raw
  To: openembedded-devel, Khem Raj

[-- Attachment #1: Type: text/plain, Size: 1250 bytes --]

I've followed below link and updated sysbench_1.0.20.bb file on QCS610
https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg77365.html

On Mon, Sep 12, 2022 at 12:19 PM venkatakoteswararao talluri <
venkattalluri5559@gmail.com> wrote:

> Hi All,
>
> I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm getting
> following error so can you please help me to solve this issue.
> Image:qti-multimedia-image
> Target:qcs610-odk-64
>
> Error log:
>
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES 'luajit' (but
> /var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
> qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
> luajit was skipped: incompatible with host aarch64-oe-linux (not in
> COMPATIBLE_HOST)
> NOTE: Runtime target 'luajit' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['luajit']
> ERROR: Required build target 'qti-multimedia-image' has no buildable
> providers.
> Missing or unbuildable dependency chain was: ['qti-multimedia-image',
> 'luajit']
>
>
> Please find the attached sysbench_1.0.20.bb file.
>
>
> Thanks,
>
> Venkata Talluri
>

[-- Attachment #2: Type: text/html, Size: 1968 bytes --]

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

* Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20
       [not found] ` <17140A457780EF26.27399@lists.openembedded.org>
@ 2022-09-12 10:20   ` venkatakoteswararao talluri
  0 siblings, 0 replies; 7+ messages in thread
From: venkatakoteswararao talluri @ 2022-09-12 10:20 UTC (permalink / raw
  To: venkatakoteswararao talluri; +Cc: openembedded-devel, Khem Raj

[-- Attachment #1: Type: text/plain, Size: 2005 bytes --]

Hello Khem Raj,
Can you please help to provide feedback on this?


Thanks,
Venkata Talluri

On Mon, Sep 12, 2022 at 12:20 PM venkatakoteswararao talluri via
lists.openembedded.org <venkattalluri5559=gmail.com@lists.openembedded.org>
wrote:

> I've followed below link and updated sysbench_1.0.20.bb file on QCS610
>
> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg77365.html
>
> On Mon, Sep 12, 2022 at 12:19 PM venkatakoteswararao talluri <
> venkattalluri5559@gmail.com> wrote:
>
>> Hi All,
>>
>> I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm
>> getting following error so can you please help me to solve this issue.
>> Image:qti-multimedia-image
>> Target:qcs610-odk-64
>>
>> Error log:
>>
>> NOTE: Resolving any missing task queue dependencies
>> ERROR: Nothing RPROVIDES 'luajit' (but
>> /var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
>> qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
>> luajit was skipped: incompatible with host aarch64-oe-linux (not in
>> COMPATIBLE_HOST)
>> NOTE: Runtime target 'luajit' is unbuildable, removing...
>> Missing or unbuildable dependency chain was: ['luajit']
>> ERROR: Required build target 'qti-multimedia-image' has no buildable
>> providers.
>> Missing or unbuildable dependency chain was: ['qti-multimedia-image',
>> 'luajit']
>>
>>
>> Please find the attached sysbench_1.0.20.bb file.
>>
>>
>> Thanks,
>>
>> Venkata Talluri
>>
>
> --
> Venkata Talluri
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#98750):
> https://lists.openembedded.org/g/openembedded-devel/message/98750
> Mute This Topic: https://lists.openembedded.org/mt/93627594/7150353
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> venkattalluri5559@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

[-- Attachment #2: Type: text/html, Size: 3638 bytes --]

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

end of thread, other threads:[~2022-09-12 10:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-19  6:00 [meta-oe][PATCH] sysbench: upgrade to 1.0.20 Nicolas Dechesne
2021-05-19 16:37 ` [oe] " Khem Raj
2021-05-24 16:29   ` Nicolas Dechesne
2021-05-25  0:52     ` Khem Raj
  -- strict thread matches above, loose matches on Subject: below --
2022-09-12  6:49 venkatakoteswararao talluri
2022-09-12  6:50 ` venkatakoteswararao talluri
     [not found] ` <17140A457780EF26.27399@lists.openembedded.org>
2022-09-12 10:20   ` venkatakoteswararao talluri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).