diff options
author | Alex Kiernan <alex.kiernan@gmail.com> | 2023-12-08 12:00:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-09 19:17:11 +0000 |
commit | dddfe1e3f4135d974c6692071e08f6e0a96df1b3 (patch) | |
tree | 430850e551952c1b7d9f6060e69fb151f4b17fce /meta/classes-recipe/rust-common.bbclass | |
parent | 43df94f7af8422ebd1f2884992349ff1baae232b (diff) | |
download | poky-dddfe1e3f4135d974c6692071e08f6e0a96df1b3.tar.gz |
rust: cargo: Convert single-valued variables to weak defaults
All of these variables are single-valued, so we can use weak-defaults
for them and only see the final assignment after parsing.
(From OE-Core rev: 3221e82a35a149fdf38fe66dcd5de758ac1b9185)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/rust-common.bbclass')
-rw-r--r-- | meta/classes-recipe/rust-common.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes-recipe/rust-common.bbclass b/meta/classes-recipe/rust-common.bbclass index ae96d9c5b1..6940093e59 100644 --- a/meta/classes-recipe/rust-common.bbclass +++ b/meta/classes-recipe/rust-common.bbclass | |||
@@ -16,8 +16,8 @@ FILES:${PN}-dbg += "${rustlibdir}/.debug" | |||
16 | RUSTLIB = "-L ${STAGING_DIR_HOST}${rustlibdir}" | 16 | RUSTLIB = "-L ${STAGING_DIR_HOST}${rustlibdir}" |
17 | RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=${TARGET_DBGSRC_DIR}" | 17 | RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=${TARGET_DBGSRC_DIR}" |
18 | RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}" | 18 | RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}" |
19 | RUSTLIB_DEP ?= "libstd-rs" | 19 | RUSTLIB_DEP ??= "libstd-rs" |
20 | RUST_PANIC_STRATEGY ?= "unwind" | 20 | RUST_PANIC_STRATEGY ??= "unwind" |
21 | 21 | ||
22 | def target_is_armv7(d): | 22 | def target_is_armv7(d): |
23 | '''Determine if target is armv7''' | 23 | '''Determine if target is armv7''' |