-
Without the appropriate code-sign entitlements, OSX will kill any go processes attempting to compile a Wasm file. Download a code-signed Golang app utilizing this driver, that attempts to compile the SQLite Wasm file (through |
Beta Was this translation helpful? Give feedback.
Answered by
ncruces
Jul 9, 2025
Replies: 1 comment 1 reply
-
The solution will be to document this as a requirement when developing any The entitlements appear to be as follows: <?xml version="1.0" encoding="UTF-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>
</plist> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ncruces
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The solution will be to document this as a requirement when developing any
wazero
application on macOS.The entitlements appear to be as follows: