[PATCH] D100907: [lsan][docs] Clarify supported platforms
Vitaly Buka via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 20 16:22:44 PDT 2021
vitalybuka added inline comments.
================
Comment at: clang/docs/LeakSanitizer.rst:49
+
+* Android aarch64/i386/x86_64
+* Linux arm/aarch64/mips64/ppc64/ppc64le/s390x/i386/x86\_64
----------------
Apple is incomplete and riscv is missing
```
if(APPLE)
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})
else()
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64} ${ARM32} ${PPC64} ${S390X} ${RISCV64})
endif()
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100907/new/
https://reviews.llvm.org/D100907
More information about the cfe-commits
mailing list