From 5e47070a84d1fa18b9997639036efe456c1e9f49 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Wed, 1 Oct 2014 12:55:06 +0000 Subject: [sanitizer] Add i686 arch to compiler-rt. This is needed so we can produce -i686- named libraries for x86 Android (which is i686-linux-android). An alternative solution would be keeping the "i386" name internally and tweaking the OUTPUT_NAME of compiler-rt libraries. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@218761 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/asan/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'test/asan/CMakeLists.txt') diff --git a/test/asan/CMakeLists.txt b/test/asan/CMakeLists.txt index 5d40d9d88..32188f069 100644 --- a/test/asan/CMakeLists.txt +++ b/test/asan/CMakeLists.txt @@ -5,6 +5,7 @@ set(ASAN_TESTSUITES) macro(get_bits_for_arch arch bits) if (${arch} STREQUAL "arm" OR ${arch} STREQUAL "i386" OR + ${arch} STREQUAL "i686" OR ${arch} STREQUAL "mips") set(bits 32) elseif (${arch} STREQUAL "aarch64" OR -- cgit v1.2.3