Skip to content

Commit 1bf0772

Browse files
committed
New ANGLE build, restores Windows 7 support
1 parent 7131e40 commit 1bf0772

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,12 @@ if [ ! -d "deps/angle" ]; then
148148
echo "Missing ANGLE libraries, downloading them."
149149
mkdir -p deps/angle
150150
pushd deps/angle
151-
curl -L -o windows_arm64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-arm64-llvm-release.zip
152-
curl -L -o windows_x86_64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_64-gcc-release.zip
153-
curl -L -o windows_x86_32.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_32-gcc-release.zip
154-
curl -L -o macos_arm64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-arm64-macos-release.zip
155-
curl -L -o macos_x86_64.zip https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601/godot-angle-static-x86_64-macos-release.zip
151+
base_url=https://github.com/godotengine/godot-angle-static/releases/download/chromium%2F6601.1/godot-angle-static
152+
curl -L -o windows_arm64.zip $base_url-arm64-llvm-release.zip
153+
curl -L -o windows_x86_64.zip $base_url-x86_64-gcc-release.zip
154+
curl -L -o windows_x86_32.zip $base_url-x86_32-gcc-release.zip
155+
curl -L -o macos_arm64.zip $base_url-arm64-macos-release.zip
156+
curl -L -o macos_x86_64.zip $base_url-x86_64-macos-release.zip
156157
unzip -o windows_arm64.zip && rm -f windows_arm64.zip
157158
unzip -o windows_x86_64.zip && rm -f windows_x86_64.zip
158159
unzip -o windows_x86_32.zip && rm -f windows_x86_32.zip

0 commit comments

Comments
 (0)