summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/rust-target-config.bbclass8
-rw-r--r--meta/recipes-devtools/cargo/cargo.inc2
-rw-r--r--meta/recipes-devtools/rust/libstd-rs.inc3
-rw-r--r--meta/recipes-devtools/rust/rust.inc2
4 files changed, 2 insertions, 13 deletions
diff --git a/meta/classes/rust-target-config.bbclass b/meta/classes/rust-target-config.bbclass
index 0f0797603e..135ed86308 100644
--- a/meta/classes/rust-target-config.bbclass
+++ b/meta/classes/rust-target-config.bbclass
@@ -372,16 +372,12 @@ do_rust_gen_targets[vardeps] += "DATA_LAYOUT TARGET_ENDIAN TARGET_POINTER_WIDTH
372RUST_TARGETS_DIR = "${WORKDIR}/rust-targets/" 372RUST_TARGETS_DIR = "${WORKDIR}/rust-targets/"
373export RUST_TARGET_PATH = "${RUST_TARGETS_DIR}" 373export RUST_TARGET_PATH = "${RUST_TARGETS_DIR}"
374 374
375RUST_TARGETGENS = "BUILD HOST TARGET"
376
377python do_rust_gen_targets () { 375python do_rust_gen_targets () {
378 wd = d.getVar('RUST_TARGETS_DIR') 376 wd = d.getVar('RUST_TARGETS_DIR')
379 # Order of BUILD, HOST, TARGET is important in case the files overwrite, most specific last 377 # Order of BUILD, HOST, TARGET is important in case the files overwrite, most specific last
380 rust_gen_target(d, 'BUILD', wd, d.getVar('BUILD_ARCH')) 378 rust_gen_target(d, 'BUILD', wd, d.getVar('BUILD_ARCH'))
381 if "HOST" in d.getVar("RUST_TARGETGENS"): 379 rust_gen_target(d, 'HOST', wd, d.getVar('HOST_ARCH'))
382 rust_gen_target(d, 'HOST', wd, d.getVar('HOST_ARCH')) 380 rust_gen_target(d, 'TARGET', wd, d.getVar('TARGET_ARCH'))
383 if "TARGET" in d.getVar("RUST_TARGETGENS"):
384 rust_gen_target(d, 'TARGET', wd, d.getVar('TARGET_ARCH'))
385} 381}
386 382
387addtask rust_gen_targets after do_patch before do_compile 383addtask rust_gen_targets after do_patch before do_compile
diff --git a/meta/recipes-devtools/cargo/cargo.inc b/meta/recipes-devtools/cargo/cargo.inc
index 636e9c4fe5..40421df4f7 100644
--- a/meta/recipes-devtools/cargo/cargo.inc
+++ b/meta/recipes-devtools/cargo/cargo.inc
@@ -18,8 +18,6 @@ EXCLUDE_FROM_WORLD = "1"
18 18
19inherit cargo pkgconfig 19inherit cargo pkgconfig
20 20
21RUST_TARGETGENS = "BUILD HOST TARGET"
22
23do_cargo_setup_snapshot () { 21do_cargo_setup_snapshot () {
24 ${WORKDIR}/rust-snapshot-components/${CARGO_SNAPSHOT}/install.sh --prefix="${WORKDIR}/${CARGO_SNAPSHOT}" --disable-ldconfig 22 ${WORKDIR}/rust-snapshot-components/${CARGO_SNAPSHOT}/install.sh --prefix="${WORKDIR}/${CARGO_SNAPSHOT}" --disable-ldconfig
25 # Need to use uninative's loader if enabled/present since the library paths 23 # Need to use uninative's loader if enabled/present since the library paths
diff --git a/meta/recipes-devtools/rust/libstd-rs.inc b/meta/recipes-devtools/rust/libstd-rs.inc
index 1498b88f0e..d49383ced5 100644
--- a/meta/recipes-devtools/rust/libstd-rs.inc
+++ b/meta/recipes-devtools/rust/libstd-rs.inc
@@ -12,9 +12,6 @@ DEPENDS:append:libc-musl = " libunwind"
12DEPENDS:remove:riscv32 = "libunwind" 12DEPENDS:remove:riscv32 = "libunwind"
13DEPENDS:remove:riscv64 = "libunwind" 13DEPENDS:remove:riscv64 = "libunwind"
14 14
15
16RUST_TARGETGENS = "BUILD HOST TARGET"
17
18# Embed bitcode in order to allow compiling both with and without LTO 15# Embed bitcode in order to allow compiling both with and without LTO
19RUSTFLAGS += "-Cembed-bitcode=yes" 16RUSTFLAGS += "-Cembed-bitcode=yes"
20# Needed so cargo can find libbacktrace 17# Needed so cargo can find libbacktrace
diff --git a/meta/recipes-devtools/rust/rust.inc b/meta/recipes-devtools/rust/rust.inc
index 7e302b5992..284347dedc 100644
--- a/meta/recipes-devtools/rust/rust.inc
+++ b/meta/recipes-devtools/rust/rust.inc
@@ -34,8 +34,6 @@ setup_cargo_environment () {
34 34
35inherit rust-target-config 35inherit rust-target-config
36 36
37RUST_TARGETGENS = "BUILD HOST TARGET"
38
39do_rust_setup_snapshot () { 37do_rust_setup_snapshot () {
40 for installer in "${WORKDIR}/rust-snapshot-components/"*"/install.sh"; do 38 for installer in "${WORKDIR}/rust-snapshot-components/"*"/install.sh"; do
41 "${installer}" --prefix="${WORKDIR}/rust-snapshot" --disable-ldconfig 39 "${installer}" --prefix="${WORKDIR}/rust-snapshot" --disable-ldconfig