Skip to content

Commit a030eb8

Browse files
committed
Windows: Update Mesa NIR builds to 25.3.1
1 parent 7dca209 commit a030eb8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,10 @@ if [ ! -d "deps/mesa" ]; then
199199
echo "Missing Mesa/NIR libraries, downloading them."
200200
mkdir -p deps/mesa
201201
pushd deps/mesa
202-
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
203-
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
204-
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
202+
base_url=https://github.com/godotengine/godot-nir-static/releases/download/25.3.1/godot-nir-static
203+
curl -L -o mesa_arm64.zip $base_url-arm64-llvm-release.zip
204+
curl -L -o mesa_x86_64.zip $base_url-x86_64-gcc-release.zip
205+
curl -L -o mesa_x86_32.zip $base_url-x86_32-gcc-release.zip
205206
unzip -o mesa_arm64.zip && rm -f mesa_arm64.zip
206207
unzip -o mesa_x86_64.zip && rm -f mesa_x86_64.zip
207208
unzip -o mesa_x86_32.zip && rm -f mesa_x86_32.zip

0 commit comments

Comments
 (0)