Add MSan to the list of targets in Makefile-based builds.

llvm-svn: 175738
This commit is contained in:
Evgeniy Stepanov 2013-02-21 13:59:14 +00:00
parent 57d6f737e6
commit 54b54e4772
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ endif
ifeq ($(ARCH),x86_64)
RuntimeLibrary.linux.Configs += \
full-x86_64.a profile-x86_64.a asan-x86_64.a tsan-x86_64.a ubsan-x86_64.a
full-x86_64.a profile-x86_64.a asan-x86_64.a tsan-x86_64.a msan-x86_64.a \
ubsan-x86_64.a
# We need to build 32-bit ASan/UBsan libraries on 64-bit platform, and add them
# to the list of runtime libraries to make
# "clang -fsanitize=(address|undefined) -m32" work.