Skip to content

Commit

Permalink
fix: com.apple.security.cs.allow-jit
Browse files Browse the repository at this point in the history
"[..] if a plug-in employs deep integration with the host executable via C
function pointer overrides, or uses a JavaScript engine for custom
workflows, the host executable must declare the Allow Unsigned
Executable Memory Entitlement or Allow Execution of JIT-compiled
Code Entitlement, respectively."

https://developer.apple.com/documentation/xcode/notarizing_macos_software_before_distribution

License: MIT
Signed-off-by: Marcin Rataj <lidel@lidel.org>
  • Loading branch information
lidel committed Feb 28, 2020
1 parent 69d4481 commit 55df677
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/macos/entitlements.mac.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
Expand Down

0 comments on commit 55df677

Please sign in to comment.