From a030eb84da4f30ae8adb0c030cc98e7997af33bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 12 Dec 2025 15:05:06 +0100 Subject: [PATCH] Windows: Update Mesa NIR builds to 25.3.1 --- build.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index a22be5b..c7edfa1 100755 --- a/build.sh +++ b/build.sh @@ -199,9 +199,10 @@ if [ ! -d "deps/mesa" ]; then echo "Missing Mesa/NIR libraries, downloading them." mkdir -p deps/mesa pushd deps/mesa - curl -L -o mesa_arm64.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-arm64-llvm-release.zip - curl -L -o mesa_x86_64.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-x86_64-gcc-release.zip - curl -L -o mesa_x86_32.zip https://github.com/godotengine/godot-nir-static/releases/download/23.1.9-2/godot-nir-static-x86_32-gcc-release.zip + base_url=https://github.com/godotengine/godot-nir-static/releases/download/25.3.1/godot-nir-static + curl -L -o mesa_arm64.zip $base_url-arm64-llvm-release.zip + curl -L -o mesa_x86_64.zip $base_url-x86_64-gcc-release.zip + curl -L -o mesa_x86_32.zip $base_url-x86_32-gcc-release.zip unzip -o mesa_arm64.zip && rm -f mesa_arm64.zip unzip -o mesa_x86_64.zip && rm -f mesa_x86_64.zip unzip -o mesa_x86_32.zip && rm -f mesa_x86_32.zip