Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
build --conlyopt='-std=gnu11' --cxxopt='-std=gnu++14'
build --conlyopt='-std=gnu11' --cxxopt='-std=gnu++17'
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ AC_PROG_CXX
# built if --with-proto=yes)
# if there is no C++ compiler available or if the C++ compiler doesn't support
# std=c++11, configure will not fail
AX_CXX_COMPILE_STDCXX_11([noext],[optional])
AX_CXX_COMPILE_STDCXX([17], [noext], [optional])

m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python3 python])
AM_CONDITIONAL([HAVE_python], [test "$PYTHON" != :])
Expand Down
2 changes: 1 addition & 1 deletion frontends_extra/cpp/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AC_CONFIG_MACRO_DIR([m4])
AC_LANG_PUSH(C)
AC_LANG_PUSH(C++)

AX_CXX_COMPILE_STDCXX_11([noext],[mandatory])
AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory])

want_bmv2=no
AC_ARG_WITH([bmv2],
Expand Down
Loading
Loading