2013-11-04 04:15:43 +04:00
|
|
|
|
2015-01-17 18:05:53 +03:00
|
|
|
set(_cmake_oldestSupported "(__GNUC__ * 100 + __GNUC_MINOR__) >= 404")
|
2013-11-04 04:15:43 +04:00
|
|
|
|
2015-01-11 18:20:03 +03:00
|
|
|
# GNU 4.7 correctly sets __STDC_VERSION__ to 201112L, but GNU 4.6 sets it
|
|
|
|
# to 201000L. As the former is strictly greater than the latter, test only
|
|
|
|
# for the latter. If in the future CMake learns about a C feature which was
|
|
|
|
# introduced with GNU 4.7, that should test for the correct version, similar
|
|
|
|
# to the distinction between __cplusplus and __GXX_EXPERIMENTAL_CXX0X__ tests.
|
2015-01-10 22:05:54 +03:00
|
|
|
set(GNU46_C11 "(__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L")
|
2013-11-04 04:15:43 +04:00
|
|
|
set(_cmake_feature_test_c_static_assert "${GNU46_C11}")
|
|
|
|
# Since 4.4 at least:
|
2015-01-17 18:05:53 +03:00
|
|
|
set(GNU44_C99 "(__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L")
|
2013-11-04 04:15:43 +04:00
|
|
|
set(_cmake_feature_test_c_restrict "${GNU44_C99}")
|
|
|
|
set(_cmake_feature_test_c_variadic_macros "${GNU44_C99}")
|
|
|
|
|
2015-02-03 23:47:45 +03:00
|
|
|
set(GNU_C90 "${_cmake_oldestSupported}")
|
2013-11-04 04:15:43 +04:00
|
|
|
set(_cmake_feature_test_c_function_prototypes "${GNU_C90}")
|