]> granicus.if.org Git - clang/commitdiff
runtime/Linux: Include the profile and ASAN libs on x86.
authorDaniel Dunbar <daniel@zuster.org>
Wed, 7 Dec 2011 19:35:10 +0000 (19:35 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 7 Dec 2011 19:35:10 +0000 (19:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146051 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/compiler-rt/Makefile

index 3e047fcf6f24f81157fd05338ea07216a296ff7b..a1a48a08c8946c222dd290ba3020713b4e390069 100644 (file)
@@ -93,10 +93,12 @@ RuntimeLibrary.linux.Configs :=
 
 # 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