diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-21 13:59:14 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-02-21 13:59:14 +0000 |
commit | 3aada3c305a0f0ecfad2e4d0cf977ee9d2b2c71f (patch) | |
tree | e8a0cde73571ab4411f84b67d9e3f0be1bbd8126 | |
parent | ff04dd4effe82ee81dd55a13c9e29cef67e77484 (diff) |
Add MSan to the list of targets in Makefile-based builds.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175738 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | runtime/compiler-rt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/compiler-rt/Makefile b/runtime/compiler-rt/Makefile index cb38f96719..2a2cd7b905 100644 --- a/runtime/compiler-rt/Makefile +++ b/runtime/compiler-rt/Makefile @@ -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. |