Comment #4 on issue 85 by
gonzalob...@gmail.com: Add MacOs support
https://code.google.com/p/memory-sanitizer/issues/detail?id=85
be used by any GUI application.
Might be, but nor did I ask support for MacOS GUI frameworks, nor this
would be the right place to ask for that.
I asked for support for the 'x86_64-apple-darwin14.1.0' target.
The documentation says that the memory sanitizer provides libc wrappers.
However, using clang tip-of-trunk under MacOS with -fsanitize=memroy fails
to compile the following C++ program:
int main() { return 0; }
The error is just: target 'x86_64-apple-darwin14.1.0' is not supported.
I would like to be able to compile:
#include <stdio.h>
int main() { puts("Hello World!"); }
Since that would mean the libc wrapper works, and that I can compile
non-trivial non-tiny applications like llvm/clang from source using the
memory sanitizer.