diff options
author | Mamta Shukla <mamta.shukla@leica-geosystems.com> | 2022-09-20 16:42:22 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-09-08 09:08:54 -0700 |
commit | 0763a114a20500bd0181ef778b2c091100a1eed8 (patch) | |
tree | 6e8b293714cf8a9558eebf6b52782e8353e2ef0e | |
parent | da03514ffb56a102663a8fef906e8986f3e76956 (diff) | |
download | meta-clang-0763a114a20500bd0181ef778b2c091100a1eed8.tar.gz |
compiler-rt-sanitizers: fix multiple installations for orc lib
remove libclang_rt.orc and c_orc.h header since it is being installed by both
compiler-rt and compiler-rt-sanitizer when built for arm.
Signed-off-by: Mamta Shukla <mamta.shukla@leica-geosystems.com>
(cherry picked from commit ed5ac4ff7a8d3704f2d2fe9db659304d1b360e2c)
-rw-r--r-- | recipes-devtools/clang/compiler-rt-sanitizers_git.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-devtools/clang/compiler-rt-sanitizers_git.bb b/recipes-devtools/clang/compiler-rt-sanitizers_git.bb index 50a8cb7..bf29364 100644 --- a/recipes-devtools/clang/compiler-rt-sanitizers_git.bb +++ b/recipes-devtools/clang/compiler-rt-sanitizers_git.bb | |||
@@ -61,7 +61,8 @@ do_install:append () { | |||
61 | rmdir --ignore-fail-on-non-empty ${D}${libdir} | 61 | rmdir --ignore-fail-on-non-empty ${D}${libdir} |
62 | fi | 62 | fi |
63 | # Already shipped with compile-rt Orc support | 63 | # Already shipped with compile-rt Orc support |
64 | rm -rf ${D}${nonarch_libdir}/clang/${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}/lib/linux/libclang_rt.orc-x86_64.a | 64 | rm -rf ${D}${nonarch_libdir}/clang/${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}/lib/linux/libclang_rt.orc-*.a |
65 | rm -rf ${D}${nonarch_libdir}/clang/${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}/include/orc/ | ||
65 | } | 66 | } |
66 | 67 | ||
67 | FILES_SOLIBSDEV = "" | 68 | FILES_SOLIBSDEV = "" |