1 # ===========================================================================
2 # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html
3 # ===========================================================================
7 # AX_CXX_COMPILE_STDCXX(VERSION, [ext|noext], [mandatory|optional])
11 # Check for baseline language coverage in the compiler for the specified
12 # version of the C++ standard. If necessary, add switches to CXX and
13 # CXXCPP to enable support. VERSION may be '11' (for the C++11 standard)
14 # or '14' (for the C++14 standard).
16 # The second argument, if specified, indicates whether you insist on an
17 # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
18 # -std=c++11). If neither is specified, you get whatever works, with
19 # preference for an extended mode.
21 # The third argument, if specified 'mandatory' or if left unspecified,
22 # indicates that baseline support for the specified C++ standard is
23 # required and that the macro should error out if no mode with that
24 # support is found. If specified 'optional', then configuration proceeds
25 # regardless, after defining HAVE_CXX${VERSION} if and only if a
26 # supporting mode is found.
30 # Copyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>
31 # Copyright (c) 2012 Zack Weinberg <zackw@panix.com>
32 # Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>
33 # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov <sokolov@google.com>
34 # Copyright (c) 2015 Paul Norman <penorman@mac.com>
35 # Copyright (c) 2015 Moritz Klammler <moritz@klammler.eu>
36 # Copyright (c) 2016, 2018 Krzesimir Nowak <qdlacz@gmail.com>
37 # Copyright (c) 2019 Enji Cooper <yaneurabeya@gmail.com>
39 # Copying and distribution of this file, with or without modification, are
40 # permitted in any medium without royalty provided the copyright notice
41 # and this notice are preserved. This file is offered as-is, without any
46 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro
47 dnl (serial version number 13).
49 AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl
50 m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"],
51 [$1], [14], [ax_cxx_compile_alternatives="14 1y"],
52 [$1], [17], [ax_cxx_compile_alternatives="17 1z"],
53 [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl
57 [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX])])dnl
58 m4_if([$3], [], [ax_cxx_compile_cxx$1_required=true],
59 [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true],
60 [$3], [optional], [ax_cxx_compile_cxx$1_required=false],
61 [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])])
62 AC_LANG_PUSH([C++])dnl
65 m4_if([$2], [noext], [], [dnl
66 if test x$ac_success = xno; then
67 for alternative in ${ax_cxx_compile_alternatives}; do
68 switch="-std=gnu++${alternative}"
69 cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch])
70 AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch,
74 AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
78 if eval test x\$$cachevar = xyes; then
80 if test -n "$CXXCPP" ; then
81 CXXCPP="$CXXCPP $switch"
89 m4_if([$2], [ext], [], [dnl
90 if test x$ac_success = xno; then
91 dnl HP's aCC needs +std=c++11 according to:
92 dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf
93 dnl Cray's crayCC needs "-h std=c++11"
94 for alternative in ${ax_cxx_compile_alternatives}; do
95 for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do
96 cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch])
97 AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch,
101 AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
102 [eval $cachevar=yes],
105 if eval test x\$$cachevar = xyes; then
107 if test -n "$CXXCPP" ; then
108 CXXCPP="$CXXCPP $switch"
114 if test x$ac_success = xyes; then
120 if test x$ax_cxx_compile_cxx$1_required = xtrue; then
121 if test x$ac_success = xno; then
122 AC_MSG_ERROR([*** A compiler with support for C++$1 language features is required.])
125 if test x$ac_success = xno; then
127 AC_MSG_NOTICE([No compiler with C++$1 support was found])
130 AC_DEFINE(HAVE_CXX$1,1,
131 [define if the compiler supports basic C++$1 syntax])
137 dnl Test body for checking C++11 support
139 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_11],
140 _AX_CXX_COMPILE_STDCXX_testbody_new_in_11
144 dnl Test body for checking C++14 support
146 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_14],
147 _AX_CXX_COMPILE_STDCXX_testbody_new_in_11
148 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14
151 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_17],
152 _AX_CXX_COMPILE_STDCXX_testbody_new_in_11
153 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14
154 _AX_CXX_COMPILE_STDCXX_testbody_new_in_17
157 dnl Tests for new features in C++11
159 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_11], [[
161 // If the compiler admits that it is not ready for C++11, why torture it?
162 // Hopefully, this will speed up the test.
166 #error "This is not a C++ compiler"
168 #elif __cplusplus < 201103L
170 #error "This is not a C++11 compiler"
177 namespace test_static_assert
180 template <typename T>
183 static_assert(sizeof(int) <= sizeof(T), "not big enough");
188 namespace test_final_override
197 struct Derived : public Base
199 virtual ~Derived() override {}
200 virtual void f() override {}
205 namespace test_double_right_angle_brackets
208 template < typename T >
211 typedef check<void> single_type;
212 typedef check<check<void>> double_type;
213 typedef check<check<check<void>>> triple_type;
214 typedef check<check<check<check<void>>>> quadruple_type;
218 namespace test_decltype
231 namespace test_type_deduction
234 template < typename T1, typename T2 >
237 static const bool value = false;
240 template < typename T >
243 static const bool value = true;
246 template < typename T1, typename T2 >
248 add(T1 a1, T2 a2) -> decltype(a1 + a2)
254 test(const int c, volatile int v)
256 static_assert(is_same<int, decltype(0)>::value == true, "");
257 static_assert(is_same<int, decltype(c)>::value == false, "");
258 static_assert(is_same<int, decltype(v)>::value == false, "");
261 auto sumi = ac + av + 'x';
262 auto sumf = ac + av + 1.0;
263 static_assert(is_same<int, decltype(ac)>::value == true, "");
264 static_assert(is_same<int, decltype(av)>::value == true, "");
265 static_assert(is_same<int, decltype(sumi)>::value == true, "");
266 static_assert(is_same<int, decltype(sumf)>::value == false, "");
267 static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
268 return (sumf > 0.0) ? sumi : add(c, v);
273 namespace test_noexcept
276 int f() { return 0; }
277 int g() noexcept { return 0; }
279 static_assert(noexcept(f()) == false, "");
280 static_assert(noexcept(g()) == true, "");
284 namespace test_constexpr
287 template < typename CharT >
288 unsigned long constexpr
289 strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
291 return *s ? strlen_c_r(s + 1, acc + 1) : acc;
294 template < typename CharT >
295 unsigned long constexpr
296 strlen_c(const CharT *const s) noexcept
298 return strlen_c_r(s, 0UL);
301 static_assert(strlen_c("") == 0UL, "");
302 static_assert(strlen_c("1") == 1UL, "");
303 static_assert(strlen_c("example") == 7UL, "");
304 static_assert(strlen_c("another\0example") == 7UL, "");
308 namespace test_rvalue_references
314 static constexpr int value = N;
317 answer<1> f(int&) { return answer<1>(); }
318 answer<2> f(const int&) { return answer<2>(); }
319 answer<3> f(int&&) { return answer<3>(); }
326 static_assert(decltype(f(i))::value == 1, "");
327 static_assert(decltype(f(c))::value == 2, "");
328 static_assert(decltype(f(0))::value == 3, "");
333 namespace test_uniform_initialization
338 static const int zero {};
339 static const int one {1};
342 static_assert(test::zero == 0, "");
343 static_assert(test::one == 1, "");
347 namespace test_lambdas
353 auto lambda1 = [](){};
354 auto lambda2 = lambda1;
362 auto a = [](int i, int j){ return i + j; }(1, 2);
363 auto b = []() -> int { return '0'; }();
364 auto c = [=](){ return a + b; }();
365 auto d = [&](){ return c; }();
366 auto e = [a, &b](int x) mutable {
367 const auto identity = [](int y){ return y; };
368 for (auto i = 0; i < a; ++i)
370 return x + identity(a + b);
372 return a + b + c + d + e;
378 const auto nullary = [](){ return 0; };
379 const auto unary = [](int x){ return x; };
380 using nullary_t = decltype(nullary);
381 using unary_t = decltype(unary);
382 const auto higher1st = [](nullary_t f){ return f(); };
383 const auto higher2nd = [unary](nullary_t f1){
384 return [unary, f1](unary_t f2){ return f2(unary(f1())); };
386 return higher1st(nullary) + higher2nd(nullary)(unary);
391 namespace test_variadic_templates
397 template <int N0, int... N1toN>
398 struct sum<N0, N1toN...>
400 static constexpr auto value = N0 + sum<N1toN...>::value;
406 static constexpr auto value = 0;
409 static_assert(sum<>::value == 0, "");
410 static_assert(sum<1>::value == 1, "");
411 static_assert(sum<23>::value == 23, "");
412 static_assert(sum<1, 2>::value == 3, "");
413 static_assert(sum<5, 5, 11>::value == 21, "");
414 static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");
418 // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
419 // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
421 namespace test_template_alias_sfinae
427 using member = typename T::member_type;
433 void func(member<T>*) {}
437 void test() { func<foo>(0); }
443 #endif // __cplusplus >= 201103L
448 dnl Tests for new features in C++14
450 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_14], [[
452 // If the compiler admits that it is not ready for C++14, why torture it?
453 // Hopefully, this will speed up the test.
457 #error "This is not a C++ compiler"
459 #elif __cplusplus < 201402L
461 #error "This is not a C++14 compiler"
468 namespace test_polymorphic_lambdas
474 const auto lambda = [](auto&&... args){
475 const auto istiny = [](auto x){
476 return (sizeof(x) == 1UL) ? 1 : 0;
478 const int aretiny[] = { istiny(args)... };
481 return lambda(1, 1L, 1.0f, '1');
486 namespace test_binary_literals
489 constexpr auto ivii = 0b0000000000101010;
490 static_assert(ivii == 42, "wrong value");
494 namespace test_generalized_constexpr
497 template < typename CharT >
498 constexpr unsigned long
499 strlen_c(const CharT *const s) noexcept
502 for (auto p = s; *p; ++p)
507 static_assert(strlen_c("") == 0UL, "");
508 static_assert(strlen_c("x") == 1UL, "");
509 static_assert(strlen_c("test") == 4UL, "");
510 static_assert(strlen_c("another\0test") == 7UL, "");
514 namespace test_lambda_init_capture
521 const auto lambda1 = [a = x](int b){ return a + b; };
522 const auto lambda2 = [a = lambda1(x)](){ return a; };
528 namespace test_digit_separators
531 constexpr auto ten_million = 100'000'000;
532 static_assert(ten_million == 100000000, "");
536 namespace test_return_type_deduction
539 auto f(int& x) { return x; }
540 decltype(auto) g(int& x) { return x; }
542 template < typename T1, typename T2 >
545 static constexpr auto value = false;
548 template < typename T >
551 static constexpr auto value = true;
558 static_assert(is_same<int, decltype(f(x))>::value, "");
559 static_assert(is_same<int&, decltype(g(x))>::value, "");
567 #endif // __cplusplus >= 201402L
572 dnl Tests for new features in C++17
574 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_17], [[
576 // If the compiler admits that it is not ready for C++17, why torture it?
577 // Hopefully, this will speed up the test.
581 #error "This is not a C++ compiler"
583 #elif __cplusplus < 201703L
585 #error "This is not a C++17 compiler"
589 #include <initializer_list>
591 #include <type_traits>
596 namespace test_constexpr_lambdas
599 constexpr int foo = [](){return 42;}();
603 namespace test::nested_namespace::definitions
608 namespace test_fold_expression
611 template<typename... Args>
612 int multiply(Args... args)
614 return (args * ... * 1);
617 template<typename... Args>
618 bool all(Args... args)
620 return (args && ...);
625 namespace test_extended_static_assert
628 static_assert (true);
632 namespace test_auto_brace_init_list
638 static_assert(std::is_same<std::initializer_list<int>, decltype(foo)>::value);
639 static_assert(std::is_same<int, decltype(bar)>::value);
642 namespace test_typename_in_template_template_parameter
645 template<template<typename> typename X> struct D;
649 namespace test_fallthrough_nodiscard_maybe_unused_attributes
657 [[nodiscard]] int f2()
659 [[maybe_unused]] auto unused = f1();
674 namespace test_extended_aggregate_initialization
690 struct derived : base1, base2
695 derived d1 {{1, 2}, {}, 4}; // full initialization
696 derived d2 {{}, {}, 4}; // value-initialized bases
700 namespace test_general_range_based_for_loop
712 const int& operator* () const
729 bool operator== (const iter& i, const sentinel& s)
734 bool operator!= (const iter& i, const sentinel& s)
758 [[maybe_unused]] auto v = i;
764 namespace test_lambda_capture_asterisk_this_by_value
781 namespace test_enum_class_construction
784 enum class byte : unsigned char
791 namespace test_constexpr_if
809 namespace test_selection_statement_with_initializer
819 if (auto i = f(); i > 0)
824 switch (auto i = f(); i + 4)
836 namespace test_template_argument_deduction_for_class_templates
839 template <typename T1, typename T2>
853 [[maybe_unused]] auto p = pair{13, 42u};
858 namespace test_non_type_auto_template_parameters
870 namespace test_structured_bindings
873 int arr[2] = { 1, 2 };
874 std::pair<int, int> pr = { 1, 2 };
876 auto f1() -> int(&)[2]
881 auto f2() -> std::pair<int, int>&
897 auto [ x1, y1 ] = f1();
898 auto& [ xr1, yr1 ] = f1();
899 auto [ x2, y2 ] = f2();
900 auto& [ xr2, yr2 ] = f2();
901 const auto [ x3, y3 ] = f3();
905 namespace test_exception_spec_type_system
918 template<typename T1, typename T2>
922 static_assert (std::is_same_v<Good, decltype(f(g1, g2))>);
926 namespace test_inline_variables
929 template<class T> void f(T)
932 template<class T> inline T g(T)
937 template<> inline void f<>(int)
940 template<> int g<>(int)
949 #endif // __cplusplus < 201703L