From 0c3cda79e8f93d79b57ce8651dcfa5600e320fea Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 23 Dec 2023 13:58:55 +0200 Subject: [PATCH] Update C++ version in the bootstrap script --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index bffa9e4..c8e8208 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -5,7 +5,7 @@ set -e SOURCEDIRS="source/lib source/bootstrap plugins/base plugins/gnu" INCLUDEDIR=temp/bootstrap/include REQUIRED="core datafile" -CFLAGS="-std=c++11 -iquote . -I$INCLUDEDIR `pkg-config --cflags sigc++-2.0`" +CFLAGS="-std=c++17 -iquote . -I$INCLUDEDIR `pkg-config --cflags sigc++-2.0`" LIBS="`pkg-config --libs sigc++-2.0` -lpthread" MACHINE="`uname -m`" SYSTEM="`uname -s`" -- 2.45.2