1 # ===========================================================================
2 # http://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>
37 # Copying and distribution of this file, with or without modification, are
38 # permitted in any medium without royalty provided the copyright notice
39 # and this notice are preserved. This file is offered as-is, without any
44 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro
45 dnl (serial version number 13).
47 AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl
50 [$1], [17], [m4_fatal([support for C++17 not yet implemented in AX_CXX_COMPILE_STDCXX])],
51 [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl
55 [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX])])dnl
56 m4_if([$3], [], [ax_cxx_compile_cxx$1_required=true],
57 [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true],
58 [$3], [optional], [ax_cxx_compile_cxx$1_required=false],
59 [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])])
60 AC_LANG_PUSH([C++])dnl
62 AC_CACHE_CHECK(whether $CXX supports C++$1 features by default,
63 ax_cv_cxx_compile_cxx$1,
64 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
65 [ax_cv_cxx_compile_cxx$1=yes],
66 [ax_cv_cxx_compile_cxx$1=no])])
67 if test x$ax_cv_cxx_compile_cxx$1 = xyes; then
71 m4_if([$2], [noext], [], [dnl
72 if test x$ac_success = xno; then
73 for switch in -std=gnu++$1 -std=gnu++0x; do
74 cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch])
75 AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch,
79 AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
83 if eval test x\$$cachevar = xyes; then
85 if test -n "$CXXCPP" ; then
86 CXXCPP="$CXXCPP $switch"
94 m4_if([$2], [ext], [], [dnl
95 if test x$ac_success = xno; then
96 dnl HP's aCC needs +std=c++11 according to:
97 dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf
98 dnl Cray's crayCC needs "-h std=c++11"
99 for switch in -std=c++$1 -std=c++0x +std=c++$1 "-h std=c++$1"; do
100 cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch])
101 AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch,
105 AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])],
106 [eval $cachevar=yes],
109 if eval test x\$$cachevar = xyes; then
111 if test -n "$CXXCPP" ; then
112 CXXCPP="$CXXCPP $switch"
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
152 dnl Tests for new features in C++11
154 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_11], [[
156 // If the compiler admits that it is not ready for C++11, why torture it?
157 // Hopefully, this will speed up the test.
161 #error "This is not a C++ compiler"
163 #elif __cplusplus < 201103L
165 #error "This is not a C++11 compiler"
172 namespace test_static_assert
175 template <typename T>
178 static_assert(sizeof(int) <= sizeof(T), "not big enough");
183 namespace test_final_override
191 struct Derived : public Base
193 virtual void f() override {}
198 namespace test_double_right_angle_brackets
201 template < typename T >
204 typedef check<void> single_type;
205 typedef check<check<void>> double_type;
206 typedef check<check<check<void>>> triple_type;
207 typedef check<check<check<check<void>>>> quadruple_type;
211 namespace test_decltype
224 namespace test_type_deduction
227 template < typename T1, typename T2 >
230 static const bool value = false;
233 template < typename T >
236 static const bool value = true;
239 template < typename T1, typename T2 >
241 add(T1 a1, T2 a2) -> decltype(a1 + a2)
247 test(const int c, volatile int v)
249 static_assert(is_same<int, decltype(0)>::value == true, "");
250 static_assert(is_same<int, decltype(c)>::value == false, "");
251 static_assert(is_same<int, decltype(v)>::value == false, "");
254 auto sumi = ac + av + 'x';
255 auto sumf = ac + av + 1.0;
256 static_assert(is_same<int, decltype(ac)>::value == true, "");
257 static_assert(is_same<int, decltype(av)>::value == true, "");
258 static_assert(is_same<int, decltype(sumi)>::value == true, "");
259 static_assert(is_same<int, decltype(sumf)>::value == false, "");
260 static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
261 return (sumf > 0.0) ? sumi : add(c, v);
266 namespace test_noexcept
269 int f() { return 0; }
270 int g() noexcept { return 0; }
272 static_assert(noexcept(f()) == false, "");
273 static_assert(noexcept(g()) == true, "");
277 namespace test_constexpr
280 template < typename CharT >
281 unsigned long constexpr
282 strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
284 return *s ? strlen_c_r(s + 1, acc + 1) : acc;
287 template < typename CharT >
288 unsigned long constexpr
289 strlen_c(const CharT *const s) noexcept
291 return strlen_c_r(s, 0UL);
294 static_assert(strlen_c("") == 0UL, "");
295 static_assert(strlen_c("1") == 1UL, "");
296 static_assert(strlen_c("example") == 7UL, "");
297 static_assert(strlen_c("another\0example") == 7UL, "");
301 namespace test_rvalue_references
307 static constexpr int value = N;
310 answer<1> f(int&) { return answer<1>(); }
311 answer<2> f(const int&) { return answer<2>(); }
312 answer<3> f(int&&) { return answer<3>(); }
319 static_assert(decltype(f(i))::value == 1, "");
320 static_assert(decltype(f(c))::value == 2, "");
321 static_assert(decltype(f(0))::value == 3, "");
326 namespace test_uniform_initialization
331 static const int zero {};
332 static const int one {1};
335 static_assert(test::zero == 0, "");
336 static_assert(test::one == 1, "");
340 namespace test_lambdas
346 auto lambda1 = [](){};
347 auto lambda2 = lambda1;
355 auto a = [](int i, int j){ return i + j; }(1, 2);
356 auto b = []() -> int { return '0'; }();
357 auto c = [=](){ return a + b; }();
358 auto d = [&](){ return c; }();
359 auto e = [a, &b](int x) mutable {
360 const auto identity = [](int y){ return y; };
361 for (auto i = 0; i < a; ++i)
363 return x + identity(a + b);
365 return a + b + c + d + e;
371 const auto nullary = [](){ return 0; };
372 const auto unary = [](int x){ return x; };
373 using nullary_t = decltype(nullary);
374 using unary_t = decltype(unary);
375 const auto higher1st = [](nullary_t f){ return f(); };
376 const auto higher2nd = [unary](nullary_t f1){
377 return [unary, f1](unary_t f2){ return f2(unary(f1())); };
379 return higher1st(nullary) + higher2nd(nullary)(unary);
384 namespace test_variadic_templates
390 template <int N0, int... N1toN>
391 struct sum<N0, N1toN...>
393 static constexpr auto value = N0 + sum<N1toN...>::value;
399 static constexpr auto value = 0;
402 static_assert(sum<>::value == 0, "");
403 static_assert(sum<1>::value == 1, "");
404 static_assert(sum<23>::value == 23, "");
405 static_assert(sum<1, 2>::value == 3, "");
406 static_assert(sum<5, 5, 11>::value == 21, "");
407 static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");
411 // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
412 // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
414 namespace test_template_alias_sfinae
420 using member = typename T::member_type;
426 void func(member<T>*) {}
430 void test() { func<foo>(0); }
436 #endif // __cplusplus >= 201103L
441 dnl Tests for new features in C++14
443 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_14], [[
445 // If the compiler admits that it is not ready for C++14, why torture it?
446 // Hopefully, this will speed up the test.
450 #error "This is not a C++ compiler"
452 #elif __cplusplus < 201402L
454 #error "This is not a C++14 compiler"
461 namespace test_polymorphic_lambdas
467 const auto lambda = [](auto&&... args){
468 const auto istiny = [](auto x){
469 return (sizeof(x) == 1UL) ? 1 : 0;
471 const int aretiny[] = { istiny(args)... };
474 return lambda(1, 1L, 1.0f, '1');
479 namespace test_binary_literals
482 constexpr auto ivii = 0b0000000000101010;
483 static_assert(ivii == 42, "wrong value");
487 namespace test_generalized_constexpr
490 template < typename CharT >
491 constexpr unsigned long
492 strlen_c(const CharT *const s) noexcept
495 for (auto p = s; *p; ++p)
500 static_assert(strlen_c("") == 0UL, "");
501 static_assert(strlen_c("x") == 1UL, "");
502 static_assert(strlen_c("test") == 4UL, "");
503 static_assert(strlen_c("another\0test") == 7UL, "");
507 namespace test_lambda_init_capture
514 const auto lambda1 = [a = x](int b){ return a + b; };
515 const auto lambda2 = [a = lambda1(x)](){ return a; };
521 namespace test_digit_seperators
524 constexpr auto ten_million = 100'000'000;
525 static_assert(ten_million == 100000000, "");
529 namespace test_return_type_deduction
532 auto f(int& x) { return x; }
533 decltype(auto) g(int& x) { return x; }
535 template < typename T1, typename T2 >
538 static constexpr auto value = false;
541 template < typename T >
544 static constexpr auto value = true;
551 static_assert(is_same<int, decltype(f(x))>::value, "");
552 static_assert(is_same<int&, decltype(g(x))>::value, "");
560 #endif // __cplusplus >= 201402L