Skip to content

Commit

Permalink
Merge pull request #17865 from hrydgard/upgrade-molten-vk
Browse files Browse the repository at this point in the history
Mac: Update MoltenVK to version from the latest SDK
  • Loading branch information
hrydgard committed Aug 8, 2023
2 parents 768b273 + 97a0acf commit bf2ec90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions SDL/macbundle.sh
@@ -1,10 +1,11 @@
#!/bin/bash

echo "Hello"
echo "Hello from macbundle.sh"

PPSSPP="${1}"
PPSSPP_SHORTNAME="${2}"
PPSSPPSDL="${PPSSPP}/Contents/MacOS/${PPSSPP_SHORTNAME}"
MOLTENVK="${PPSSPP}/Contents/Frameworks/libMoltenVK.dylib"

ls ${PPSSPPSDL}

Expand Down Expand Up @@ -50,5 +51,7 @@ fi

# AdHoc codesign is required for Apple Silicon.
echo "Signing..."
codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPPSDL}" || echo "Failed signing"
codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPP}" || echo "Failed signing"

codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${MOLTENVK}" || echo "Failed signing MoltenVK"
codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPPSDL}" || echo "Failed signing PPSSPPSDL"
codesign -fs - --entitlements ../macOS/Entitlements.plist --timestamp "${PPSSPP}" || echo "Failed signing PPSSPP"
Binary file modified ext/vulkan/macOS/Frameworks/libMoltenVK.dylib
Binary file not shown.

0 comments on commit bf2ec90

Please sign in to comment.