Updated min iOS version to 9.

This commit is contained in:
Бранимир Караџић
2020-06-25 11:49:29 -07:00
parent 892062b10b
commit 8d96af9873
2 changed files with 9 additions and 11 deletions

View File

@@ -77,11 +77,9 @@
# define BX_NO_VTABLE
# define BX_PRINTF_ARGS(_format, _args) __attribute__( (format(__printf__, _format, _args) ) )
# if BX_CLANG_HAS_FEATURE(cxx_thread_local)
# define BX_THREAD_LOCAL __thread
# endif // BX_COMPILER_CLANG
# if (!BX_PLATFORM_OSX && (BX_COMPILER_GCC >= 40200)) || (BX_COMPILER_GCC >= 40500)
# if BX_CLANG_HAS_FEATURE(cxx_thread_local) \
|| (!BX_PLATFORM_OSX && (BX_COMPILER_GCC >= 40200) ) \
|| (BX_COMPILER_GCC >= 40500)
# define BX_THREAD_LOCAL __thread
# endif // BX_COMPILER_GCC