diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-23 13:59:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-26 22:09:44 +0100 |
commit | f37be5cafa0ed2238683b063b4875c88338fadf7 (patch) | |
tree | 01f380cd2077303c3e791f3c2e609e2ebcee9608 /meta/recipes-devtools/rust | |
parent | cfc8d6dd641f3c0fb080cccbc2577d0a65858913 (diff) | |
download | poky-f37be5cafa0ed2238683b063b4875c88338fadf7.tar.gz |
rust-native: Avoid stripped warning
Instead of giving the following warning, hide it since we don't plan to change it.
WARNING: rust-native-1.54.0-r0 do_populate_sysroot: File '/media/build1/poky/build/tmp/work/x86_64-linux/rust-native/1.54.0-r0/recipe-sysroot-native/usr/lib/rustlib/x86_64-linux/bin/rust-llvm-dwp' from rust-native was already stripped, this will prevent future debugging!
(From OE-Core rev: ec5f0c77882ccbd5797519f5ded4e528eb687008)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rust')
-rw-r--r-- | meta/recipes-devtools/rust/rust_1.54.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rust/rust_1.54.0.bb b/meta/recipes-devtools/rust/rust_1.54.0.bb index 07221ac127..ee60c3e6f1 100644 --- a/meta/recipes-devtools/rust/rust_1.54.0.bb +++ b/meta/recipes-devtools/rust/rust_1.54.0.bb | |||
@@ -2,6 +2,8 @@ require rust-target.inc | |||
2 | require rust-source-${PV}.inc | 2 | require rust-source-${PV}.inc |
3 | require rust-snapshot-${PV}.inc | 3 | require rust-snapshot-${PV}.inc |
4 | 4 | ||
5 | INSANE_SKIP:${PN}:class-native = "already-stripped" | ||
6 | |||
5 | do_compile () { | 7 | do_compile () { |
6 | rust_runx build --stage 2 | 8 | rust_runx build --stage 2 |
7 | } | 9 | } |