From fa3301fbdbc909942c2b0cb2e590414d71e959fe Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Mon, 23 Dec 2024 15:46:10 +0200 Subject: [PATCH] Add '-D_LIBCPP_DISABLE_AVAILABILITY' for OSX 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 9027e882edf0cd..9d2dcef4371c96 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}" make -j"${CPU_COUNT}" +CC="${CC}" CXX="${CXX}" CC_FLAGS="${CFLAGS} -D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR" make -j"${CPU_COUNT}" mkdir -p $PREFIX/bin install -m 755 ghostx $PREFIX/bin