This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clang runtime checks | |
## gochas | |
- The compiler_rt code must be built (if compiling llvm/clang with | |
cmake you need cmake > 2.8.7) | |
- `-fsanitize=thread` and therefore the `tsan` symbols are not available on OS X | |
- Missing `asan` symbols can be solved on OS X by doing: | |
``` | |
export DYLD_INSERT_LIBRARIES=/opt/llvm2/lib/clang/3.3/lib/darwin/libclang_rt.asan_osx_dynamic.dylib |