summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2014-02-26 07:50:28 +0000
committerAlexey Samsonov <samsonov@google.com>2014-02-26 07:50:28 +0000
commit10d0003a21de65a9c9c16542cbbc3f398b5c81f5 (patch)
treec556c5b2a6f613687a9a497555c6690a4b9c315a
parent9bb71b73d92331d1fb3d7561a44443252be813a7 (diff)
downloadbcm5719-llvm-10d0003a21de65a9c9c16542cbbc3f398b5c81f5.tar.gz
bcm5719-llvm-10d0003a21de65a9c9c16542cbbc3f398b5c81f5.zip
Revert r201783 until all FreeBSD fixes are submitted.
llvm-svn: 202244
-rw-r--r--compiler-rt/lib/CMakeLists.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler-rt/lib/CMakeLists.txt b/compiler-rt/lib/CMakeLists.txt
index 6faf88160ea..1c189c2bcd5 100644
--- a/compiler-rt/lib/CMakeLists.txt
+++ b/compiler-rt/lib/CMakeLists.txt
@@ -6,9 +6,8 @@ include(SanitizerUtils)
# Don't build sanitizers in the bootstrap build.
if(NOT LLVM_USE_SANITIZER)
# AddressSanitizer is supported on Linux and Mac OS X.
- # FreeBSD port is work-in-progress.
# 32-bit Windows support is experimental.
- if(CMAKE_SYSTEM_NAME MATCHES "Darwin|Linux|FreeBSD")
+ if(CMAKE_SYSTEM_NAME MATCHES "Darwin|Linux")
set(SUPPORTS_BUILDING_ASAN TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows"
AND MSVC AND CMAKE_SIZEOF_VOID_P EQUAL 4)
@@ -21,9 +20,8 @@ if(NOT LLVM_USE_SANITIZER)
add_subdirectory(interception)
add_subdirectory(sanitizer_common)
endif()
- if(CMAKE_SYSTEM_NAME MATCHES "Darwin|Linux|FreeBSD" AND NOT ANDROID)
+ if(CMAKE_SYSTEM_NAME MATCHES "Darwin|Linux" AND NOT ANDROID)
# LSan, UBsan and profile can be built on Mac OS and Linux.
- # FreeBSD port is work-in-progress.
add_subdirectory(lsan)
add_subdirectory(profile)
add_subdirectory(ubsan)
OpenPOWER on IntegriCloud