CONFIG: update c++ standard to c++17.

This commit is contained in:
mattijs
2024-12-12 11:55:52 +00:00
parent 59c74e53ff
commit 44f7a7268a
12 changed files with 15 additions and 15 deletions

View File

@ -5,6 +5,6 @@
sinclude $(GENERAL_RULES)/common/c++Opt
cxx_compiler := $(shell which clang++)
CC := $(shell echo "$(cxx_compiler)" | sed -e 's@/bin/[^/]*@/libexec/c++-analyzer@') -std=c++14 -m64
CC := $(shell echo "$(cxx_compiler)" | sed -e 's@/bin/[^/]*@/libexec/c++-analyzer@') -std=c++17 -m64
#------------------------------------------------------------------------------