diff options
author | 2021-05-03 18:10:40 +0100 | |
---|---|---|
committer | 2021-05-11 12:02:29 +0100 | |
commit | a0ce4f3bbafd96e85e2fd0d2761e8b98e4e169ea (patch) | |
tree | d98bd8d5197bd0ba44ccc4a90f7146513f0d1f2c | |
parent | b75787562e59b3f6fd54cdf668e5665dd708f2e1 (diff) | |
download | poky-a0ce4f3bbafd96e85e2fd0d2761e8b98e4e169ea.tar.gz poky-a0ce4f3bbafd96e85e2fd0d2761e8b98e4e169ea.tar.bz2 poky-a0ce4f3bbafd96e85e2fd0d2761e8b98e4e169ea.zip |
ptest-runner: libgcc must be installed for pthread_cancel to work
This only affects glibc systems and have been
found on runqemu core-image-minimal with gstreamer ptest-runner
STOP: ptest-runner
libgcc_s.so.1 must be installed for pthread_cancel to work
Aborted
(From OE-Core rev: 0eeb4dd1e9dbbbe205ff9821a398c44d5769f798)
Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1cb679e6a4528a2cef16f65342d5e65adb14cb16)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/ptest-runner/ptest-runner_2.4.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.4.1.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.4.1.bb index 57a3ae005b..6bd10d2fec 100644 --- a/meta/recipes-support/ptest-runner/ptest-runner_2.4.1.bb +++ b/meta/recipes-support/ptest-runner/ptest-runner_2.4.1.bb @@ -26,3 +26,5 @@ do_compile () { do_install () { install -D -m 0755 ${S}/ptest-runner ${D}${bindir}/ptest-runner } + +RDEPENDS_${PN}_append_libc-glibc = " libgcc" |