[compiler-rt] r202244 - Revert r201783 until all FreeBSD fixes are submitted.
Alexey Samsonov
samsonov at google.com
Tue Feb 25 23:50:28 PST 2014
Author: samsonov
Date: Wed Feb 26 01:50:28 2014
New Revision: 202244
URL: http://llvm.org/viewvc/llvm-project?rev=202244&view=rev
Log:
Revert r201783 until all FreeBSD fixes are submitted.
Modified:
compiler-rt/trunk/lib/CMakeLists.txt
Modified: compiler-rt/trunk/lib/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/CMakeLists.txt?rev=202244&r1=202243&r2=202244&view=diff
==============================================================================
--- compiler-rt/trunk/lib/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/CMakeLists.txt Wed Feb 26 01:50:28 2014
@@ -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)
More information about the llvm-commits
mailing list