From e8a32dc127ff883b7ba27fe912570d5357d6763b Mon Sep 17 00:00:00 2001 From: George Karpenkov Date: Tue, 22 Aug 2017 18:34:28 +0000 Subject: [libFuzzer] Move check for thread_local back into libFuzzer's CMake, as it breaks builtin standalone build on some bots. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@311482 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/base-config-ix.cmake | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'cmake') diff --git a/cmake/base-config-ix.cmake b/cmake/base-config-ix.cmake index 953d9e530..f9904fbd1 100644 --- a/cmake/base-config-ix.cmake +++ b/cmake/base-config-ix.cmake @@ -89,16 +89,6 @@ if(APPLE) option(COMPILER_RT_ENABLE_WATCHOS "Enable building for watchOS - Experimental" Off) option(COMPILER_RT_ENABLE_TVOS "Enable building for tvOS - Experimental" Off) - CHECK_CXX_SOURCE_COMPILES(" - static thread_local int blah; - int main() { - return 0; - } - " HAS_THREAD_LOCAL) - - if( NOT HAS_THREAD_LOCAL ) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Dthread_local=__thread") - endif() else() option(COMPILER_RT_DEFAULT_TARGET_ONLY "Build builtins only for the default target" Off) endif() -- cgit v1.2.3