Build ASan runtime on Linux for both x86_64 and i386, same as we do with full compiler_rt and libprofile

llvm-svn: 165096
This commit is contained in:
Alexey Samsonov 2012-10-03 07:16:31 +00:00
parent 7dfc8be995
commit c561ce0e01
1 changed files with 2 additions and 5 deletions

View File

@ -38,12 +38,9 @@ Arch.profile-x86_64 := x86_64
endif
# Configuration for ASAN runtime.
ifeq ($(CompilerTargetArch),i386)
Configs += asan-i386
ifeq ($(call contains,i386 x86_64,$(CompilerTargetArch)),true)
Configs += asan-i386 asan-x86_64
Arch.asan-i386 := i386
endif
ifeq ($(CompilerTargetArch),x86_64)
Configs += asan-x86_64
Arch.asan-x86_64 := x86_64
endif