OSX specific, needed after update of Xcode to 12.2 with OSX SDK 11.1,

where we have issues with false positives of address sanitizer
https://github.com/google/sanitizers/wiki/AddressSanitizerContainerOverflow#false-positives
Setting ASAN_OPTIONS=detect_container_overflow=0 inside Info.plist
This commit is contained in:
Vojtech Bubnik 2021-01-20 09:21:16 +01:00
parent c506c15ed4
commit 979dfe50b8

View File

@ -116,5 +116,10 @@
<string>NSApplication</string> <string>NSApplication</string>
<key>NSHighResolutionCapable</key> <key>NSHighResolutionCapable</key>
<true/> <true/>
<key>LSEnvironment</key>
<dict>
<key>ASAN_OPTIONS</key>
<string>detect_container_overflow=0</string>
</dict>
</dict> </dict>
</plist> </plist>