diff --git a/build/mac/entitlements.plist b/build/mac/entitlements.plist new file mode 100644 index 0000000000..5e2fd85fc6 --- /dev/null +++ b/build/mac/entitlements.plist @@ -0,0 +1,12 @@ + + + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + + diff --git a/build/mac/sign_app.sh b/build/mac/sign_app.sh index f6a6ffc7eb..8abd8080f0 100755 --- a/build/mac/sign_app.sh +++ b/build/mac/sign_app.sh @@ -23,4 +23,4 @@ fi echo "Signing $APP_FILE with Apple Dev ID: $APPLE_DEV_ID" SIGN_MSG="Developer ID Application: $APPLE_DEV_ID" -codesign --deep --force --verbose --sign "$SIGN_MSG" --options runtime $APP_FILE +codesign --deep --force --verbose --sign "$SIGN_MSG" --entitlements ./build/mac/entitlements.plist --options runtime $APP_FILE