From fb5f1b471ca52cbf0e157e13f2df1ad265be10ea Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Mon, 23 Dec 2024 18:21:19 +0200 Subject: [PATCH] Set C++ standard to 14 Signed-off-by: Martin Tzvetanov Grigorov --- recipes/ghostx/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/ghostx/build.sh b/recipes/ghostx/build.sh index 9d2dcef4371c96..e957433d399f48 100644 --- a/recipes/ghostx/build.sh +++ b/recipes/ghostx/build.sh @@ -4,7 +4,7 @@ set -xe cd ./src/ -CC="${CC}" CXX="${CXX}" CC_FLAGS="${CFLAGS} -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR" make -j"${CPU_COUNT}" +CC="${CC}" CXX="${CXX}" CC_FLAGS="${CFLAGS} -std=c++14" make -j"${CPU_COUNT}" mkdir -p $PREFIX/bin install -m 755 ghostx $PREFIX/bin