From: Mikko Rasa Date: Sat, 23 Dec 2023 11:58:55 +0000 (+0200) Subject: Update C++ version in the bootstrap script X-Git-Url: https://git.tdb.fi/?a=commitdiff_plain;h=0c3cda79e8f93d79b57ce8651dcfa5600e320fea;p=builder.git Update C++ version in the bootstrap script --- 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`"