mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
Reported by Bruno Haible. http://lists.gnu.org/archive/html/bug-bison/2019-05/msg00033.html * m4/bison-cxx-std.m4 (_BISON_CXXSTD_11_snippet): Check it.
165 lines
3.6 KiB
Plaintext
165 lines
3.6 KiB
Plaintext
# bison-cxx-std.m4 serial 1
|
|
|
|
# Copyright (C) 2018 Free Software Foundation, # Inc.
|
|
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
m4_define([_BISON_CXXSTD_98_snippet],
|
|
[#include <vector>
|
|
|
|
typedef std::vector<int> ints;
|
|
])
|
|
|
|
m4_define([_BISON_CXXSTD_03_snippet],
|
|
[])
|
|
|
|
m4_define([_BISON_CXXSTD_11_snippet],
|
|
[#include <algorithm>
|
|
#include <memory>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
// C++11
|
|
template <typename T>
|
|
struct check
|
|
{
|
|
static_assert(sizeof(int) <= sizeof(T), "not big enough");
|
|
};
|
|
|
|
using right_angle_brackets = check<check<bool>>;
|
|
|
|
auto f = std::make_shared<std::string>("shared_ptr");
|
|
|
|
int a;
|
|
decltype(a) b;
|
|
|
|
typedef check<int> check_type;
|
|
check_type c;
|
|
check_type&& cr = static_cast<check_type&&>(c);
|
|
|
|
auto d = a;
|
|
|
|
// Some versions of libstdc++ do not support std::set::emplace.
|
|
void foo()
|
|
{
|
|
std::set<int> is;
|
|
is.emplace(42);
|
|
}
|
|
|
|
// Clang++ 3.5, for a while, was unable to process properly
|
|
// the for-loop because its variable, r, is a typedef...
|
|
// It failed as follows:
|
|
//
|
|
// error: unexpected ':' in nested name specifier; did you mean '::'?
|
|
// for (auto r: std::set<int>{1, 2})
|
|
// ^
|
|
// ::
|
|
using r = std::set<int>;
|
|
void bar()
|
|
{
|
|
for (int r: std::set<int>{1, 2})
|
|
continue;
|
|
}
|
|
|
|
// GCC 4.8.2 on Solaris 11.3 does not support to_string.
|
|
auto e = std::to_string(42);
|
|
])
|
|
|
|
m4_define([_BISON_CXXSTD_14_snippet],
|
|
[ // C++14
|
|
void mismatch()
|
|
{
|
|
using ints = std::vector<int>;
|
|
auto v1 = ints{1, 2, 3};
|
|
auto v2 = ints{1, 2};
|
|
std::mismatch(std::begin(v1), std::end(v1),
|
|
std::begin(v2), std::end(v2));
|
|
}
|
|
])
|
|
|
|
m4_define([_BISON_CXXSTD_17_snippet],
|
|
[ // C++17
|
|
namespace ns1::ns2::ns3 {}
|
|
|
|
#include <optional>
|
|
auto opt_string = std::optional<std::string>{};
|
|
auto out = std::ostringstream{};
|
|
])
|
|
|
|
m4_define([_BISON_CXXSTD_2A_snippet],
|
|
[ // C++2A
|
|
])
|
|
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(98)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
])])
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(03)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
_BISON_CXXSTD_03_snippet
|
|
])])
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(11)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
_BISON_CXXSTD_03_snippet
|
|
_BISON_CXXSTD_11_snippet
|
|
])])
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(14)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
_BISON_CXXSTD_03_snippet
|
|
_BISON_CXXSTD_11_snippet
|
|
_BISON_CXXSTD_14_snippet
|
|
])])
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(17)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
_BISON_CXXSTD_03_snippet
|
|
_BISON_CXXSTD_11_snippet
|
|
_BISON_CXXSTD_14_snippet
|
|
_BISON_CXXSTD_17_snippet
|
|
])])
|
|
|
|
m4_define([_BISON_CXXSTD_testbody(2a)],
|
|
[AC_LANG_PROGRAM([
|
|
_BISON_CXXSTD_98_snippet
|
|
_BISON_CXXSTD_03_snippet
|
|
_BISON_CXXSTD_11_snippet
|
|
_BISON_CXXSTD_14_snippet
|
|
_BISON_CXXSTD_17_snippet
|
|
_BISON_CXXSTD_2A_snippet
|
|
])])
|
|
|
|
|
|
m4_define([_BISON_CXXSTD_testbody],
|
|
[m4_ifdef([$0($1)],
|
|
[m4_indir([$0($1)], m4_shift2($@))],
|
|
[m4_fatal([$0: unknown C++ standard: $1])])])
|
|
|
|
|
|
# BISON_CXXSTD(STD)
|
|
# -----------------
|
|
# Check whether the C++ compiler support STD (11, 98, 2a, etc.).
|
|
# If it does, AC_SUBST 'CXX<STD>_CXXFLAGS' to the corresponding flags.
|
|
AC_DEFUN([BISON_CXXSTD],
|
|
[AC_REQUIRE([AC_PROG_CXX])
|
|
AC_LANG_PUSH([C++])
|
|
for f in '-std=c++$1' '-std=c++$1 -stdlib=libc++'
|
|
do
|
|
BISON_CHECK_COMPILER_FLAG([$f],
|
|
[AC_SUBST(m4_toupper([CXX$1_CXXFLAGS]), [$f]) break],
|
|
[], [],
|
|
[_BISON_CXXSTD_testbody($1)])
|
|
done
|
|
AC_LANG_POP([C++])
|
|
])
|