summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rust
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-09-11 16:28:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-12 08:33:35 +0100
commit521872ab2cac092c88446730772cb8c4e22b0cdc (patch)
tree55ba93c7341c4790f5e76f0534d71745226cc7ba /meta/recipes-devtools/rust
parenta6be6d307fbe69248b4905214712d67bfddf6b92 (diff)
downloadopenembedded-core-contrib-521872ab2cac092c88446730772cb8c4e22b0cdc.tar.gz
rust: Use libc++ runtime when using clang with llvm runtime
meta-clang has options when it comes to C++ runtime, default is to use gnu runtime, other options are llvm runtime and android runtime. This patch helps when a distro is using llvm runtime for C/C++ runtime. It informs the rust build system about right C++ runtime to configure for when such a setting is used. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rust')
-rw-r--r--meta/recipes-devtools/rust/rust.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rust/rust.inc b/meta/recipes-devtools/rust/rust.inc
index a33eb00e25..956301023a 100644
--- a/meta/recipes-devtools/rust/rust.inc
+++ b/meta/recipes-devtools/rust/rust.inc
@@ -110,6 +110,8 @@ python do_configure() {
# [llvm]
config.add_section("llvm")
config.set("llvm", "static-libstdcpp", e(False))
+ if "llvm" in (d.getVar('TC_CXX_RUNTIME') or ""):
+ config.set("llvm", "use-libcxx", e(True))
# [rust]
config.add_section("rust")