Without this compiling the santizers on i686-musl fail
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h | ||
|---|---|---|
| 481 | !defined(__GLIBC__) will apply to *BSD systems. You can use something like SANITIZER_LINUX && !SANITIZER_GLIBC. Can you dig up the history a bit why glibc x86-64 needs to use this branch? | |
!defined(__GLIBC__) will apply to *BSD systems.
You can use something like SANITIZER_LINUX && !SANITIZER_GLIBC.
Can you dig up the history a bit why glibc x86-64 needs to use this branch?
I'd expect that it uses the same for its other 64-bit ports.