-fno-lto is in SANITIZER_COMMON_CFLAGS but not here.
Don't use SANITIZER_COMMON_CFLAGS because of performance issues.
See https://bugs.llvm.org/show_bug.cgi?id=46838.
Fixes
$ ninja TScudoCUnitTest-i386-Test
on an LLVM build with -DLLVM_ENABLE_LTO=Thin.
check-scudo now passes.
So there are various things we don't want from SANITIZER_COMMON_CFLAGS, like -fno-builtin etc.
The other sanitizer are not meant to be performance critical while Scudo is.
Just using SANITIZER_COMMON_CFLAGS as is wouldn't work for us.