summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-23 13:48:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-28 11:07:33 +0100
commite75e781a480d37898e8e38dc993dd8daf0dee8b3 (patch)
tree658cc2591914a324cb25d9e13559c2bf30d7727a /meta/classes
parent1e04c8aafbe562d2c87ca9de53fbb27703b0c51a (diff)
downloadpoky-e75e781a480d37898e8e38dc993dd8daf0dee8b3.tar.gz
rust-target-config: Allow the targets generated to be configurable
Remove further code duplication by allowing the main function to be configurable. (From OE-Core rev: 2d4b35a0db1220e7a7f1b6776223aa4d40a3f246) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/rust-target-config.bbclass10
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/classes/rust-target-config.bbclass b/meta/classes/rust-target-config.bbclass
index 4db91d36d5..87b7dee3ed 100644
--- a/meta/classes/rust-target-config.bbclass
+++ b/meta/classes/rust-target-config.bbclass
@@ -357,10 +357,16 @@ rust_gen_target[vardepsexclude] += "RUST_HOST_SYS RUST_TARGET_SYS ABIEXTENSION l
357 357
358do_rust_gen_targets[vardeps] += "DATA_LAYOUT TARGET_ENDIAN TARGET_POINTER_WIDTH TARGET_C_INT_WIDTH MAX_ATOMIC_WIDTH FEATURES" 358do_rust_gen_targets[vardeps] += "DATA_LAYOUT TARGET_ENDIAN TARGET_POINTER_WIDTH TARGET_C_INT_WIDTH MAX_ATOMIC_WIDTH FEATURES"
359 359
360RUST_TARGETGENS = "BUILD"
361
360python do_rust_gen_targets () { 362python do_rust_gen_targets () {
361 wd = d.getVar('WORKDIR') + '/targets/' 363 wd = d.getVar('WORKDIR') + '/targets/'
362 build_arch = d.getVar('BUILD_ARCH') 364 # Order of BUILD, HOST, TARGET is important in case the files overwrite, most specific last
363 rust_gen_target(d, 'BUILD', wd, build_arch) 365 rust_gen_target(d, 'BUILD', wd, d.getVar('BUILD_ARCH'))
366 if "HOST" in d.getVar("RUST_TARGETGENS"):
367 rust_gen_target(d, 'HOST', wd, d.getVar('HOST_ARCH'))
368 if "TARGET" in d.getVar("RUST_TARGETGENS"):
369 rust_gen_target(d, 'TARGET', wd, d.getVar('TARGET_ARCH'))
364} 370}
365 371
366addtask rust_gen_targets after do_patch before do_compile 372addtask rust_gen_targets after do_patch before do_compile