1 AC_DEFUN([CC_CHECK_TLS], [
2 AC_CACHE_CHECK([whether $CC knows __thread for Thread-Local Storage],
6 [[static __thread int a = 6;]],
8 [cc_cv_tls___thread=yes],
9 [cc_cv_tls___thread=no])
12 AS_IF([test "x$cc_cv_tls___thread" = "xyes"],
13 [AC_DEFINE([SUPPORT_TLS___THREAD], 1,
14 [Define this if the compiler supports __thread for Thread-Local Storage])