datenlord icon indicating copy to clipboard operation
datenlord copied to clipboard

Add sanitizers

Open pwang7 opened this issue 5 years ago • 0 comments

Rust supports several sanitizers:

  • AddressSanitizer a fast memory error detector.
  • LeakSanitizer a run-time memory leak detector.
  • MemorySanitizer a detector of uninitialized reads.
  • ThreadSanitizer a fast data race detector.

Note that each sanitizer supports different architecture, and only a single sanitizer can be enabled at a time.

pwang7 avatar Jul 15 '20 14:07 pwang7