summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-21 22:08:49 +0000
committerKhem Raj <raj.khem@gmail.com>2025-01-21 20:14:14 -0800
commit0ea2df0462edc0c01e787b6ee6c0e20cd6a42fc7 (patch)
tree6edbb2b01270bdd7a0a15cee2dc9f11292108d28 /classes
parent92e322d797e7945425103d76289a5fc3a2b43ace (diff)
downloadmeta-clang-0ea2df0462edc0c01e787b6ee6c0e20cd6a42fc7.tar.gz
recipes: Update to match OE-Core virtual/cross-* changes
Update meta-clang to match OE-Core changes to use recipe specific virtual providers (without yet switching to the new switching mechanism). Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'classes')
-rw-r--r--classes/clang.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/clang.bbclass b/classes/clang.bbclass
index c43eed8..e9571ce 100644
--- a/classes/clang.bbclass
+++ b/classes/clang.bbclass
@@ -132,7 +132,7 @@ def clang_base_deps(d):
132 elif (d.getVar('LIBCPLUSPLUS').find('-stdlib=libc++') != -1): 132 elif (d.getVar('LIBCPLUSPLUS').find('-stdlib=libc++') != -1):
133 ret += " libcxx " 133 ret += " libcxx "
134 else: 134 else:
135 ret += " virtual/${TARGET_PREFIX}compilerlibs " 135 ret += " virtual/${MLPREFIX}compilerlibs "
136 return ret 136 return ret
137 return "" 137 return ""
138 138