diff options
author | Harish Sadineni <Harish.Sadineni@windriver.com> | 2024-11-08 08:24:56 -0800 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-11-18 06:59:35 -0800 |
commit | e1958af36c9bb27f683b82a13e91f17f4cb64858 (patch) | |
tree | fada6f93887b02223d1b8f7cfffa94354816221c /meta/recipes-devtools/binutils | |
parent | 679b1842bb0a250f43c030ca905a569b7b4c553a (diff) | |
download | poky-e1958af36c9bb27f683b82a13e91f17f4cb64858.tar.gz |
binutils: Add missing perl modules to RDEPENDS for nativesdk variant
In SDK, missing perl modules causes 'x86_64-pokysdk-linux-gp-display-html --help' to abort with below errors..
- Can't locate bignum.pm in @INC (you may need to install the feature module).
- Can't locate Math/BigInt.pm in @INC (you may need to install the Math::BigInt module)
By adding the following perl modules to RDEPENDS fixes the above errors:
nativesdk-perl-module-bignum
nativesdk-perl-module-bigint
nativesdk-perl-module-math-bigint
(patch taken to master branch with following commit id: 05f1099acbbb10b6ce33ea117d313749f7dc4a47)
(From OE-Core rev: a1317e52260eed9961291d461e48a4915ffc36bc)
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/binutils')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils_2.42.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils_2.42.bb b/meta/recipes-devtools/binutils/binutils_2.42.bb index 2cce40f1ef..8594db9bfb 100644 --- a/meta/recipes-devtools/binutils/binutils_2.42.bb +++ b/meta/recipes-devtools/binutils/binutils_2.42.bb | |||
@@ -72,5 +72,9 @@ SRC_URI:append:class-nativesdk = " file://0003-binutils-nativesdk-Search-for-al | |||
72 | 72 | ||
73 | USE_ALTERNATIVES_FOR:class-nativesdk = "" | 73 | USE_ALTERNATIVES_FOR:class-nativesdk = "" |
74 | FILES:${PN}:append:class-nativesdk = " ${bindir}" | 74 | FILES:${PN}:append:class-nativesdk = " ${bindir}" |
75 | RDEPENDS:gprofng:class-nativesdk = " nativesdk-perl-module-bignum \ | ||
76 | nativesdk-perl-module-bigint \ | ||
77 | nativesdk-perl-module-math-bigint \ | ||
78 | " | ||
75 | 79 | ||
76 | BBCLASSEXTEND = "native nativesdk" | 80 | BBCLASSEXTEND = "native nativesdk" |