[PATCH] D100505: Fix android-x86 library name in asan_device_setup.
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 19 17:40:24 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfbb9132e71a2: Fix android-x86 library name in asan_device_setup. (authored by eugenis).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100505/new/
https://reviews.llvm.org/D100505
Files:
compiler-rt/lib/asan/scripts/asan_device_setup
Index: compiler-rt/lib/asan/scripts/asan_device_setup
===================================================================
--- compiler-rt/lib/asan/scripts/asan_device_setup
+++ compiler-rt/lib/asan/scripts/asan_device_setup
@@ -94,7 +94,7 @@
local _ARCH=
local _ARCH64=
if [[ $_ABI == x86* ]]; then
- _ARCH=i386
+ _ARCH=i686
elif [[ $_ABI == armeabi* ]]; then
_ARCH=arm
elif [[ $_ABI == arm64-v8a* ]]; then
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100505.338676.patch
Type: text/x-patch
Size: 455 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210420/02aded06/attachment.bin>
More information about the llvm-commits
mailing list