[cfe-commits] r146051 - /cfe/trunk/runtime/compiler-rt/Makefile

Daniel Dunbar daniel at zuster.org
Wed Dec 7 11:35:10 PST 2011


Author: ddunbar
Date: Wed Dec  7 13:35:10 2011
New Revision: 146051

URL: http://llvm.org/viewvc/llvm-project?rev=146051&view=rev
Log:
runtime/Linux: Include the profile and ASAN libs on x86.

Modified:
    cfe/trunk/runtime/compiler-rt/Makefile

Modified: cfe/trunk/runtime/compiler-rt/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/compiler-rt/Makefile?rev=146051&r1=146050&r2=146051&view=diff
==============================================================================
--- cfe/trunk/runtime/compiler-rt/Makefile (original)
+++ cfe/trunk/runtime/compiler-rt/Makefile Wed Dec  7 13:35:10 2011
@@ -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





More information about the cfe-commits mailing list