diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-25 11:48:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-30 10:33:35 +0100 |
commit | 4830a76a3ccba8128ebd0817c636045ae080659a (patch) | |
tree | 42fda041dd86af8f3c2a09ac17742a2b5cfb73df /meta | |
parent | 56ec09dbec2a049d20a6210a8ed8e8bab198953b (diff) | |
download | poky-4830a76a3ccba8128ebd0817c636045ae080659a.tar.gz |
rust-target-config: Drop has-elf-tls option
This option doesn't seem to exist any more and causes lots of warnings.
Remove it.
(From OE-Core rev: 8e1614a906086fb46c5dd7b7f2dffab91194165c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes-recipe/rust-target-config.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes-recipe/rust-target-config.bbclass b/meta/classes-recipe/rust-target-config.bbclass index 3405086402..e30eaa1da3 100644 --- a/meta/classes-recipe/rust-target-config.bbclass +++ b/meta/classes-recipe/rust-target-config.bbclass | |||
@@ -362,7 +362,6 @@ def rust_gen_target(d, thing, wd, arch): | |||
362 | tspec['linker-is-gnu'] = True | 362 | tspec['linker-is-gnu'] = True |
363 | tspec['linker-flavor'] = "gcc" | 363 | tspec['linker-flavor'] = "gcc" |
364 | tspec['has-rpath'] = True | 364 | tspec['has-rpath'] = True |
365 | tspec['has-elf-tls'] = True | ||
366 | tspec['position-independent-executables'] = True | 365 | tspec['position-independent-executables'] = True |
367 | tspec['panic-strategy'] = d.getVar("RUST_PANIC_STRATEGY") | 366 | tspec['panic-strategy'] = d.getVar("RUST_PANIC_STRATEGY") |
368 | 367 | ||