runtime/Linux: Include the profile and ASAN libs on x86.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146051 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/runtime/compiler-rt/Makefile b/runtime/compiler-rt/Makefile
index 3e047fc..a1a48a0 100644
--- a/runtime/compiler-rt/Makefile
+++ b/runtime/compiler-rt/Makefile
@@ -93,10 +93,12 @@
# We currently only try to generate runtime libraries on x86.
ifeq ($(ARCH),x86)
-RuntimeLibrary.linux.Configs += full-i386
+RuntimeLibrary.linux.Configs += \
+ full-i386 profile-i386 asan-i386
endif
ifeq ($(ARCH),x86_64)
-RuntimeLibrary.linux.Configs += full-x86_64
+RuntimeLibrary.linux.Configs += \
+ full-x86_64 profile-x86_64 asan-x86_64
endif
endif