mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
22 lines
808 B
Plaintext
22 lines
808 B
Plaintext
|
|
<?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>
|
||
|
|
<!-- Allow JIT compilation (Required for Node.js/V8) -->
|
||
|
|
<key>com.apple.security.cs.allow-jit</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<!-- Allow executable memory modification (Required for Node.js/V8) -->
|
||
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<!-- Allow loading unsigned libraries (Helpful for native modules extracted to temp) -->
|
||
|
|
<key>com.apple.security.cs.disable-library-validation</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<!-- Allow access to environment variables (Standard for CLI tools) -->
|
||
|
|
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
||
|
|
<true/>
|
||
|
|
</dict>
|
||
|
|
</plist>
|