diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-12-07 19:35:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-12-07 19:35:10 +0000 |
commit | 7df67e6892d74a6653473089473166a30608f416 (patch) | |
tree | 1ed4ff86bb2c5559f6107cfcdb01b420be22d04d /runtime | |
parent | b78229c10920f6df89601ea41f4a6f5be572f43d (diff) |
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
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/compiler-rt/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
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 |