From 2c8488f07abe5a18cf8e7df2153169c78fdb9dc0 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 20 Mar 2023 18:04:29 +0300 Subject: [PATCH] scripts: gha: psvita: disable SINGLE_THREADED_GC for vitaGL as it was fixed in upstream (thanks, @fgsfds) --- scripts/gha/build_psvita.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha/build_psvita.sh b/scripts/gha/build_psvita.sh index 19a9cda7..0a67f55b 100644 --- a/scripts/gha/build_psvita.sh +++ b/scripts/gha/build_psvita.sh @@ -23,7 +23,7 @@ mkdir -p artifacts/ || die echo "Building vitaGL..." -make -C vitaGL NO_TEX_COMBINER=1 HAVE_UNFLIPPED_FBOS=1 HAVE_PTHREAD=1 SINGLE_THREADED_GC=1 MATH_SPEEDHACK=1 DRAW_SPEEDHACK=1 HAVE_CUSTOM_HEAP=1 -j2 install || die +make -C vitaGL NO_TEX_COMBINER=1 HAVE_UNFLIPPED_FBOS=1 HAVE_PTHREAD=1 MATH_SPEEDHACK=1 DRAW_SPEEDHACK=1 HAVE_CUSTOM_HEAP=1 -j2 install || die echo "Building vrtld..."