From: Daniel Dunbar Date: Wed, 7 Dec 2011 19:35:10 +0000 (+0000) Subject: runtime/Linux: Include the profile and ASAN libs on x86. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7df67e6892d74a6653473089473166a30608f416;p=clang 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 3e047fcf6f..a1a48a08c8 100644 --- a/runtime/compiler-rt/Makefile +++ b/runtime/compiler-rt/Makefile @@ -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