X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=config%2Flyxinclude.m4;h=fb6525c7adb33ab0c56fae5ae0a63ebaea0467d8;hb=a42c5e38800d747be8db1b508e94043a78ac8719;hp=0e9b426061af5f7d8dc276f24ec8679117c08450;hpb=f6921d9161a03c6905c21d71d53f7499a4e7b6e2;p=lyx.git diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4 index 0e9b426061..fb6525c7ad 100644 --- a/config/lyxinclude.m4 +++ b/config/lyxinclude.m4 @@ -164,12 +164,16 @@ fi ]) -dnl Usage: LYX_CXX_CXX11_FLAGS: add to AM_CXXFLAGS the best flag that -selects C++11 mode; gives an error when C++11 mode is not found. +dnl Usage: LYX_CXX_CXX11_FLAGS(VERSION): add to AM_CXXFLAGS the best flag that +dnl selects C++11 mode; gives an error when C++11 mode is not found. +dnl VERSION is a list of years to try (e.g. 11 or {14,11}). AC_DEFUN([LYX_CXX_CXX11_FLAGS], -[AC_CACHE_CHECK([for at least C++11 mode], [lyx_cv_cxx11_flags], +[AC_CACHE_CHECK([for a good C++ mode], [lyx_cv_cxx11_flags], [lyx_cv_cxx11_flags=none - for flag in -std=c++14 -std=c++11 "" -std=gnu++14 -std=gnu++11 ; do + for flag in `eval echo -std=c++$1 default -std=gnu++$1` ; do + if test $flag = default ; then + flag= + fi save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$AM_CPPFLAGS $CPPFLAGS" save_CXXFLAGS=$CXXFLAGS @@ -202,8 +206,8 @@ AC_DEFUN([LYX_CXX_CXX11_FLAGS], CXXFLAGS=$save_CXXFLAGS CPPFLAGS=$save_CPPFLAGS done]) - if test $lyx_cv_cxx11_flags = none ; then - AC_MSG_ERROR([Cannot find suitable C++11 mode for compiler $CXX]) + if test x$lyx_cv_cxx11_flags = xnone ; then + AC_MSG_ERROR([Cannot find suitable mode for compiler $CXX]) fi AM_CXXFLAGS="$lyx_cv_cxx11_flags $AM_CXXFLAGS" ]) @@ -304,9 +308,15 @@ AC_DEFUN([LYX_PROG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([AC_PROG_CXXCPP]) +### We might want to force the C++ standard. +AC_ARG_ENABLE(cxx-mode, + AS_HELP_STRING([--enable-cxx-mode],[choose C++ standard (default: 14, then 11)]),, + [enable_cxx_mode={14,11}] +) + AC_LANG_PUSH(C++) LYX_PROG_CLANG -LYX_CXX_CXX11_FLAGS +LYX_CXX_CXX11_FLAGS($enable_cxx_mode) LYX_LIB_STDCXX LYX_LIB_STDCXX_CXX11_ABI LYX_CXX_USE_REGEX