diff options
-rw-r--r-- | meta/classes/rust-common.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rust-common.bbclass b/meta/classes/rust-common.bbclass index f2e99493fe..7c432ed131 100644 --- a/meta/classes/rust-common.bbclass +++ b/meta/classes/rust-common.bbclass | |||
@@ -63,7 +63,7 @@ def rust_base_triple(d, thing): | |||
63 | ''' | 63 | ''' |
64 | 64 | ||
65 | # The llvm-target for armv7 is armv7-unknown-linux-gnueabihf | 65 | # The llvm-target for armv7 is armv7-unknown-linux-gnueabihf |
66 | if thing == "TARGET" and target_is_armv7(d): | 66 | if d.getVar('{}_ARCH'.format(thing)) == d.getVar('TARGET_ARCH') and target_is_armv7(d): |
67 | arch = "armv7" | 67 | arch = "armv7" |
68 | else: | 68 | else: |
69 | arch = oe.rust.arch_to_rust_arch(d.getVar('{}_ARCH'.format(thing))) | 69 | arch = oe.rust.arch_to_rust_arch(d.getVar('{}_ARCH'.format(thing))) |