1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Check if thread-local storage is supported on macOS

We need thread-local storage on Clang, since 319afed20f.
This commit is contained in:
Nobuyoshi Nakada 2022-05-22 15:26:42 +09:00
parent 009a514668
commit e79983a448
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -340,16 +340,16 @@ AS_CASE(["$host_os:$build_os"],
AS_CASE(["$target_os"],
[darwin*], [
AC_MSG_CHECKING(if minimum required OS X version is supported)
AC_PREPROC_IFELSE([AC_LANG_SOURCE([[@%:@include <AvailabilityMacros.h>
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[@%:@include <AvailabilityMacros.h>
@%:@if MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_5
@%:@error pre OS X 10.5
[!<===== pre OS X 10.5 =====>]
@%:@endif
int __thread conftest;
]])],
[macosx_min_required=yes],
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)
AC_MSG_ERROR([Unsupported OS X version is required])])
AC_MSG_RESULT(${macosx_min_required})
])
RUBY_MINGW32