runtime/Linux: Include the profile and ASAN libs on x86.

llvm-svn: 146051
This commit is contained in:
Daniel Dunbar 2011-12-07 19:35:10 +00:00
parent 1669f67776
commit ba45b3faf4
1 changed files with 4 additions and 2 deletions

View File

@ -93,10 +93,12 @@ RuntimeLibrary.linux.Configs :=
# We currently only try to generate runtime libraries on x86. # We currently only try to generate runtime libraries on x86.
ifeq ($(ARCH),x86) ifeq ($(ARCH),x86)
RuntimeLibrary.linux.Configs += full-i386 RuntimeLibrary.linux.Configs += \
full-i386 profile-i386 asan-i386
endif endif
ifeq ($(ARCH),x86_64) ifeq ($(ARCH),x86_64)
RuntimeLibrary.linux.Configs += full-x86_64 RuntimeLibrary.linux.Configs += \
full-x86_64 profile-x86_64 asan-x86_64
endif endif
endif endif