mirror of
https://github.com/godotengine/godot-build-scripts.git
synced 2025-12-31 05:48:35 +03:00
Windows: Update Mesa NIR builds to 25.3.1
This commit is contained in:
7
build.sh
7
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
|
||||
|
||||
Reference in New Issue
Block a user