b8d235ae4f
Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html Sponsored by: Netzkommune GmbH
25 lines
877 B
CMake
25 lines
877 B
CMake
--- cmake/os/FreeBSD.cmake.orig 2021-12-17 16:07:27 UTC
|
|
+++ cmake/os/FreeBSD.cmake
|
|
@@ -48,8 +48,20 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER)
|
|
IF(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.1)
|
|
MESSAGE(FATAL_ERROR "GCC 7.1 or newer is required")
|
|
ENDIF()
|
|
- ELSE()
|
|
- MESSAGE(FATAL_ERROR "Unsupported compiler!")
|
|
+ CHECK_C_SOURCE_RUNS("
|
|
+ int main()
|
|
+ {
|
|
+ return (__clang_major__ >= 4);
|
|
+ }" I386_ATOMIC_BUILTINS)
|
|
+ IF((CMAKE_SYSTEM_PROCESSOR MATCHES "i386") AND (NOT I386_ATOMIC_BUILTINS))
|
|
+ SET(HAVE_GCC_ATOMIC_BUILTINS CACHE INTERNAL "")
|
|
+ ENDIF()
|
|
+ ELSEIF(CMAKE_COMPILER_IS_GNUCC)
|
|
+ EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -dumpversion
|
|
+ OUTPUT_VARIABLE GCC_VERSION)
|
|
+ IF(GCC_VERSION VERSION_LESS 4.4)
|
|
+ MESSAGE(FATAL_ERROR "GCC 4.4 or newer is required!")
|
|
+ ENDIF()
|
|
ENDIF()
|
|
ENDIF()
|
|
|