[clang-tools] Symlink lib -> lib64 in prebuilts/clang-tools

Bug: http://b/241011085

Create symlink lib -> lib64 as toolchain libraries have a RUNPATH pointing
to $ORIGIN/../lib instead of lib64

Test: presubmit with new clang-tools prebuilts
Change-Id: I90973fc756b9489a16a0837473b86e728f50d8e0
This commit is contained in:
Pirama Arumuga Nainar
2022-10-18 16:36:36 +00:00
parent 2a2efc7cf0
commit 59eac68f50

View File

@@ -60,6 +60,10 @@ update_prebuilts () {
rm .fetch* || true
find . | xargs touch
# create symlink lib -> lib64 as toolchain libraries have a RUNPATH pointing
# to $ORIGIN/../lib instead of lib64
ln -s lib64 lib
}