From 71ac5fa78e0ed5290aaecd81e3144c10fcb610a7 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Thu, 7 Apr 2016 08:47:38 -0500 Subject: [PATCH] rust: fix target generation add 'has-elf-tls' This field defaults to false but for all of our targets it should be true. Signed-off-by: Doug Goldstein --- recipes-devtools/rust/rust.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-devtools/rust/rust.inc b/recipes-devtools/rust/rust.inc index f2ab319..3b25a70 100644 --- a/recipes-devtools/rust/rust.inc +++ b/recipes-devtools/rust/rust.inc @@ -218,6 +218,7 @@ def rust_gen_target(d, thing, wd): tspec['morestack'] = True tspec['linker-is-gnu'] = True tspec['has-rpath'] = True + tspec['has-elf-tls'] = True tspec['position-independent-executables'] = True tspec['pre-link-args'] = pre_link_args_for(d, thing, arch) tspec['post-link-args'] = post_link_args_for(d, thing, arch)