Details
Details
- Reviewers
vitalybuka - Group Reviewers
Restricted Project - Commits
- rG4cbe4881882e: [lsan][docs] Clarify supported platforms
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/docs/LeakSanitizer.rst | ||
---|---|---|
49 | 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() |
clang/docs/LeakSanitizer.rst | ||
---|---|---|
49 | I'll add riscv64 for Linux. But wait, lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp doesn't mention mips64... |
clang/docs/LeakSanitizer.rst | ||
---|---|---|
50 | You can clarify that Fuchsia supports aarch64 and x86_64. |
clang/docs/LeakSanitizer.rst | ||
---|---|---|
49 | maybe work in progress |
clang/docs/LeakSanitizer.rst | ||
---|---|---|
49 | Likely a copy-paste error from de3b9a2ecc7e9ebe3fc1780aede0223821c52d2a I can delete it. CC @delcypher @fjricci who have touched the macOS code. |
Apple is incomplete and riscv is missing