Skip to content

Commit

Permalink
Merge pull request godotengine#97981 from bruvzg/macos_vulkan_install
Browse files Browse the repository at this point in the history
[macOS] Update Vulkan SDK install script.
  • Loading branch information
Repiteo authored Oct 8, 2024
2 parents 71fe3d9 + 74df6f1 commit 4c4e673
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions misc/scripts/install_vulkan_sdk_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,13 @@ set -euo pipefail
IFS=$'\n\t'

# Download and install the Vulkan SDK.
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg
hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk
/Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip" -o /tmp/vulkan-sdk.zip
unzip /tmp/vulkan-sdk.zip -d /tmp
/tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan \
--accept-licenses --default-answer --confirm-command install

cnt=5
until hdiutil detach -force /Volumes/vulkan-sdk
do
[[ cnt -eq "0" ]] && break
sleep 1
((cnt--))
done

rm -f /tmp/vulkan-sdk.dmg
rm -rf /tmp/InstallVulkan.app
rm -f /tmp/vulkan-sdk.zip

echo 'Vulkan SDK installed successfully! You can now build Godot by running "scons".'

0 comments on commit 4c4e673

Please sign in to comment.