diff options
author | Mamta Shukla <mamta.shukla@leica-geosystems.com> | 2022-09-20 16:42:22 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-11-04 13:34:12 -0700 |
commit | ed5ac4ff7a8d3704f2d2fe9db659304d1b360e2c (patch) | |
tree | 6eaccda398f17dab34519353333b9ce71ccba0c4 | |
parent | 8e53d8f91b0afd9d9076c5e052297cfd5d494db6 (diff) | |
download | meta-clang-ed5ac4ff7a8d3704f2d2fe9db659304d1b360e2c.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>
-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 = "" |