ax_cxx_compile_stdcxx_11.m4 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. # ============================================================================
  2. # http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html
  3. # ============================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_CXX_COMPILE_STDCXX_11([ext|noext],[mandatory|optional])
  8. #
  9. # DESCRIPTION
  10. #
  11. # Check for baseline language coverage in the compiler for the C++11
  12. # standard; if necessary, add switches to CXXFLAGS to enable support.
  13. #
  14. # The first argument, if specified, indicates whether you insist on an
  15. # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
  16. # -std=c++11). If neither is specified, you get whatever works, with
  17. # preference for an extended mode.
  18. #
  19. # The second argument, if specified 'mandatory' or if left unspecified,
  20. # indicates that baseline C++11 support is required and that the macro
  21. # should error out if no mode with that support is found. If specified
  22. # 'optional', then configuration proceeds regardless, after defining
  23. # HAVE_CXX11 if and only if a supporting mode is found.
  24. #
  25. # LICENSE
  26. #
  27. # Copyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>
  28. # Copyright (c) 2012 Zack Weinberg <zackw@panix.com>
  29. # Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>
  30. # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov <sokolov@google.com>
  31. #
  32. # Copying and distribution of this file, with or without modification, are
  33. # permitted in any medium without royalty provided the copyright notice
  34. # and this notice are preserved. This file is offered as-is, without any
  35. # warranty.
  36. #serial 10
  37. m4_define([_AX_CXX_COMPILE_STDCXX_11_testbody], [[
  38. template <typename T>
  39. struct check
  40. {
  41. static_assert(sizeof(int) <= sizeof(T), "not big enough");
  42. };
  43. struct Base {
  44. virtual void f() {}
  45. };
  46. struct Child : public Base {
  47. virtual void f() override {}
  48. };
  49. typedef check<check<bool>> right_angle_brackets;
  50. int a;
  51. decltype(a) b;
  52. typedef check<int> check_type;
  53. check_type c;
  54. check_type&& cr = static_cast<check_type&&>(c);
  55. auto d = a;
  56. auto l = [](){};
  57. // Prevent Clang error: unused variable 'l' [-Werror,-Wunused-variable]
  58. struct use_l { use_l() { l(); } };
  59. // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
  60. // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function because of this
  61. namespace test_template_alias_sfinae {
  62. struct foo {};
  63. template<typename T>
  64. using member = typename T::member_type;
  65. template<typename T>
  66. void func(...) {}
  67. template<typename T>
  68. void func(member<T>*) {}
  69. void test();
  70. void test() {
  71. func<foo>(0);
  72. }
  73. }
  74. ]])
  75. AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [dnl
  76. m4_if([$1], [], [],
  77. [$1], [ext], [],
  78. [$1], [noext], [],
  79. [m4_fatal([invalid argument `$1' to AX_CXX_COMPILE_STDCXX_11])])dnl
  80. m4_if([$2], [], [ax_cxx_compile_cxx11_required=true],
  81. [$2], [mandatory], [ax_cxx_compile_cxx11_required=true],
  82. [$2], [optional], [ax_cxx_compile_cxx11_required=false],
  83. [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX_11])])
  84. AC_LANG_PUSH([C++])dnl
  85. ac_success=no
  86. AC_CACHE_CHECK(whether $CXX supports C++11 features by default,
  87. ax_cv_cxx_compile_cxx11,
  88. [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
  89. [ax_cv_cxx_compile_cxx11=yes],
  90. [ax_cv_cxx_compile_cxx11=no])])
  91. if test x$ax_cv_cxx_compile_cxx11 = xyes; then
  92. ac_success=yes
  93. fi
  94. m4_if([$1], [noext], [], [dnl
  95. if test x$ac_success = xno; then
  96. for switch in -std=gnu++11 -std=gnu++0x; do
  97. cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch])
  98. AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch,
  99. $cachevar,
  100. [ac_save_CXXFLAGS="$CXXFLAGS"
  101. CXXFLAGS="$CXXFLAGS $switch"
  102. AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
  103. [eval $cachevar=yes],
  104. [eval $cachevar=no])
  105. CXXFLAGS="$ac_save_CXXFLAGS"])
  106. if eval test x\$$cachevar = xyes; then
  107. CXXFLAGS="$CXXFLAGS $switch"
  108. ac_success=yes
  109. break
  110. fi
  111. done
  112. fi])
  113. m4_if([$1], [ext], [], [dnl
  114. if test x$ac_success = xno; then
  115. for switch in -std=c++11 -std=c++0x; do
  116. cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch])
  117. AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch,
  118. $cachevar,
  119. [ac_save_CXXFLAGS="$CXXFLAGS"
  120. CXXFLAGS="$CXXFLAGS $switch"
  121. AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_11_testbody])],
  122. [eval $cachevar=yes],
  123. [eval $cachevar=no])
  124. CXXFLAGS="$ac_save_CXXFLAGS"])
  125. if eval test x\$$cachevar = xyes; then
  126. CXXFLAGS="$CXXFLAGS $switch"
  127. ac_success=yes
  128. break
  129. fi
  130. done
  131. fi])
  132. AC_LANG_POP([C++])
  133. if test x$ax_cxx_compile_cxx11_required = xtrue; then
  134. if test x$ac_success = xno; then
  135. AC_MSG_ERROR([*** A compiler with support for C++11 language features is required.])
  136. fi
  137. else
  138. if test x$ac_success = xno; then
  139. HAVE_CXX11=0
  140. AC_MSG_NOTICE([No compiler with C++11 support was found])
  141. else
  142. HAVE_CXX11=1
  143. AC_DEFINE(HAVE_CXX11,1,
  144. [define if the compiler supports basic C++11 syntax])
  145. fi
  146. AC_SUBST(HAVE_CXX11)
  147. fi
  148. ])