shaka-player-embedded
shaka-player-embedded copied to clipboard
Enable remaining sanitizers
By using the Chromium build scripts, we get (mostly) free support for the clang sanitizers. We have support for the AddressSanitizer
, ThreadSanitizer
, and UndefinedBehaviorSanitizer
. But we should add support for the others:
- The
LeakSanitizer
is getting linker errors from a missing libclang binary. - The
MemorySanitizer
gets errors from V8 make snapshot (and blacklisting doesn't seem to work).
Unless, of course, we decide to switch over to Bazel as proposed in #19.