xyz12345
xyz12345

Reputation: 71

How use Memory Sanitizer with use GCC?

I want to use this kind of sanitizer in gcc. How can I do this? Is such an operation possible?

I found solution for clang: clang -fsanitize=memory -fno-omit-frame-pointer -g -O2 umr.cc but I don't know how use this in gcc

Upvotes: 7

Views: 4252

Answers (1)

yugr
yugr

Reputation: 21954

This is impossible - GCC does not support MSan.

Upvotes: 6

Related Questions