Skip to content

Commit

Permalink
Merge pull request #626 from trashguy/macos_vulkan_install
Browse files Browse the repository at this point in the history
[macOS] Update Vulkan SDK install script.
  • Loading branch information
Bioblaze authored Oct 9, 2024
2 parents d7acc23 + a2c29bd commit b52811b
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 b52811b

Please sign in to comment.