diff options
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 |