From b9c6f3ed454c562707048988e6462d0389dd7852 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Wed, 9 Feb 2022 00:06:02 +0100 Subject: [PATCH] fix(makefile): add forgotten CXX_STANDARD again --- scripts/compile_parsers.makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/compile_parsers.makefile b/scripts/compile_parsers.makefile index 1ad3458ea..020b45285 100644 --- a/scripts/compile_parsers.makefile +++ b/scripts/compile_parsers.makefile @@ -1,5 +1,6 @@ CFLAGS ?= -Os -std=c99 -fPIC -CXXFLAGS ?= -Os -std=c++14 -fPIC +CXX_STANDARD ?= c++14 +CXXFLAGS ?= -Os -std=$(CXX_STANDARD) -fPIC LDFLAGS ?= SRC_DIR ?= ./src DEST_DIR ?= ./dest