[PATCH] D111840: [hwasan] Add default "/" prefix.
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 14 14:50:40 PDT 2021
eugenis updated this revision to Diff 379855.
eugenis added a comment.
address comment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111840/new/
https://reviews.llvm.org/D111840
Files:
compiler-rt/lib/hwasan/scripts/hwasan_symbolize
Index: compiler-rt/lib/hwasan/scripts/hwasan_symbolize
===================================================================
--- compiler-rt/lib/hwasan/scripts/hwasan_symbolize
+++ compiler-rt/lib/hwasan/scripts/hwasan_symbolize
@@ -200,6 +200,7 @@
if 'ANDROID_PRODUCT_OUT' in os.environ:
product_out = os.path.join(os.environ['ANDROID_PRODUCT_OUT'], 'symbols')
binary_prefixes.append(product_out)
+ binary_prefixes.append('/')
for p in binary_prefixes:
if not os.path.isdir(p):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111840.379855.patch
Type: text/x-patch
Size: 497 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211014/17cbae11/attachment.bin>
More information about the llvm-commits
mailing list