Skip to content

Commit

Permalink
[macOS] Update Vulkan SDK install script.
Browse files Browse the repository at this point in the history
  • Loading branch information
avondersaar-uphold committed Oct 9, 2024
1 parent d7acc23 commit a2c29bd
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".'

1 comment on commit a2c29bd

@ElonGaties
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol, lmao even #97981

Please sign in to comment.