entitlements.plist 499 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <!-- For Python ctypes to work. -->
  6. <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
  7. <true/>
  8. <!-- For loading unsigned dylib plugins. -->
  9. <key>com.apple.security.cs.disable-library-validation</key>
  10. <true/>
  11. <!-- For LLVM. -->
  12. <key>com.apple.security.cs.allow-jit</key>
  13. <true/>
  14. </dict>
  15. </plist>