diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-05-19 23:37:46 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-09-08 09:08:54 -0700 |
commit | 04a07650fc2f28935ff08985aea634ce05a4633d (patch) | |
tree | 244eca4c677bc16121743c78dae5449b5f486806 | |
parent | 43f1ea3102edc881cf97cd0b93316a1010d90567 (diff) | |
download | meta-clang-04a07650fc2f28935ff08985aea634ce05a4633d.tar.gz |
compiler-rt-sanitizers: Limit to buildable arch/libc combinations
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 6a442a8a3b6b898c90ae1e25216810cf0022e8ad)
-rw-r--r-- | recipes-devtools/clang/compiler-rt-sanitizers_git.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-devtools/clang/compiler-rt-sanitizers_git.bb b/recipes-devtools/clang/compiler-rt-sanitizers_git.bb index aa3a9ac..50fc865 100644 --- a/recipes-devtools/clang/compiler-rt-sanitizers_git.bb +++ b/recipes-devtools/clang/compiler-rt-sanitizers_git.bb | |||
@@ -95,3 +95,9 @@ ALLOW_EMPTY_${PN}-dev = "1" | |||
95 | 95 | ||
96 | TOOLCHAIN_forcevariable = "clang" | 96 | TOOLCHAIN_forcevariable = "clang" |
97 | SYSROOT_DIRS_append_class-target = " ${nonarch_libdir}" | 97 | SYSROOT_DIRS_append_class-target = " ${nonarch_libdir}" |
98 | |||
99 | # riscv and x86_64 Sanitizers work on musl too | ||
100 | COMPATIBLE_HOST_libc-musl_x86-64 = "(.*)" | ||
101 | COMPATIBLE_HOST_libc-musl_riscv64 = "(.*)" | ||
102 | COMPATIBLE_HOST_libc-musl_riscv32 = "(.*)" | ||
103 | COMPATIBLE_HOST_libc-musl = "null" | ||