Details
Details
- Reviewers
vitalybuka - Group Reviewers
Restricted Project - Commits
- rG9496e39b4a83: [compiler-rt] Add the common FreeBSD AArch64 support
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp | ||
---|---|---|
1796 | Are they supported in the sanitizers on AArch64? NetBSD doesn't have a __reserved field in its mcontext_t so will fail to build, and I don't see any ports of Solaris to AArch64. |
how about SANITIZER_NETBSD and solaris?
can you switch to:
#if SANITIZER_FREEBSD && defined(aarch64)
#elif defined(aarch64)
#endif