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

@ -23,98 +23,103 @@
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>@SLIC3R_BUILD_ID@</string> <string>@SLIC3R_BUILD_ID@</string>
<key>CFBundleDocumentTypes</key> <key>CFBundleDocumentTypes</key>
<array> <array>
<dict> <dict>
<key>CFBundleTypeExtensions</key> <key>CFBundleTypeExtensions</key>
<array> <array>
<string>stl</string> <string>stl</string>
<string>STL</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>stl.icns</string>
<key>CFBundleTypeName</key>
<string>STL</string> <string>STL</string>
<key>CFBundleTypeRole</key> </array>
<string>Viewer</string> <key>CFBundleTypeIconFile</key>
<key>LISsAppleDefaultForType</key> <string>stl.icns</string>
<true/> <key>CFBundleTypeName</key>
<key>LSHandlerRank</key> <string>STL</string>
<string>Alternate</string> <key>CFBundleTypeRole</key>
</dict> <string>Viewer</string>
<dict> <key>LISsAppleDefaultForType</key>
<key>CFBundleTypeExtensions</key> <true/>
<array> <key>LSHandlerRank</key>
<string>obj</string> <string>Alternate</string>
<string>OBJ</string> </dict>
</array> <dict>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeExtensions</key>
<string>PrusaSlicer.icns</string> <array>
<key>CFBundleTypeName</key> <string>obj</string>
<string>STL</string> <string>OBJ</string>
<key>CFBundleTypeRole</key> </array>
<string>Viewer</string> <key>CFBundleTypeIconFile</key>
<key>LISsAppleDefaultForType</key> <string>PrusaSlicer.icns</string>
<true/> <key>CFBundleTypeName</key>
<key>LSHandlerRank</key> <string>STL</string>
<string>Alternate</string> <key>CFBundleTypeRole</key>
</dict> <string>Viewer</string>
<dict> <key>LISsAppleDefaultForType</key>
<key>CFBundleTypeExtensions</key> <true/>
<array> <key>LSHandlerRank</key>
<string>amf</string> <string>Alternate</string>
<string>AMF</string> </dict>
</array> <dict>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeExtensions</key>
<string>PrusaSlicer.icns</string> <array>
<key>CFBundleTypeName</key> <string>amf</string>
<string>AMF</string> <string>AMF</string>
<key>CFBundleTypeRole</key> </array>
<string>Viewer</string> <key>CFBundleTypeIconFile</key>
<key>LISsAppleDefaultForType</key> <string>PrusaSlicer.icns</string>
<true/> <key>CFBundleTypeName</key>
<key>LSHandlerRank</key> <string>AMF</string>
<string>Alternate</string> <key>CFBundleTypeRole</key>
</dict> <string>Viewer</string>
<dict> <key>LISsAppleDefaultForType</key>
<key>CFBundleTypeExtensions</key> <true/>
<array> <key>LSHandlerRank</key>
<string>3mf</string> <string>Alternate</string>
<string>3MF</string> </dict>
</array> <dict>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeExtensions</key>
<string>PrusaSlicer.icns</string> <array>
<key>CFBundleTypeName</key> <string>3mf</string>
<string>3MF</string> <string>3MF</string>
<key>CFBundleTypeRole</key> </array>
<string>Viewer</string> <key>CFBundleTypeIconFile</key>
<key>LISsAppleDefaultForType</key> <string>PrusaSlicer.icns</string>
<true/> <key>CFBundleTypeName</key>
<key>LSHandlerRank</key> <string>3MF</string>
<string>Alternate</string> <key>CFBundleTypeRole</key>
</dict> <string>Viewer</string>
<dict> <key>LISsAppleDefaultForType</key>
<key>CFBundleTypeExtensions</key> <true/>
<array> <key>LSHandlerRank</key>
<string>gcode</string> <string>Alternate</string>
<string>GCODE</string> </dict>
</array> <dict>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeExtensions</key>
<string>gcode.icns</string> <array>
<key>CFBundleTypeName</key> <string>gcode</string>
<string>GCODE</string> <string>GCODE</string>
<key>CFBundleTypeRole</key> </array>
<string>Viewer</string> <key>CFBundleTypeIconFile</key>
<key>LISsAppleDefaultForType</key> <string>gcode.icns</string>
<true/> <key>CFBundleTypeName</key>
<key>LSHandlerRank</key> <string>GCODE</string>
<string>Alternate</string> <key>CFBundleTypeRole</key>
</dict> <string>Viewer</string>
</array> <key>LISsAppleDefaultForType</key>
<key>LSMinimumSystemVersion</key> <true/>
<string>10.10</string> <key>LSHandlerRank</key>
<key>NSPrincipalClass</key> <string>Alternate</string>
<string>NSApplication</string> </dict>
<key>NSHighResolutionCapable</key> </array>
<true/> <key>LSMinimumSystemVersion</key>
<string>10.10</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>LSEnvironment</key>
<dict>
<key>ASAN_OPTIONS</key>
<string>detect_container_overflow=0</string>
</dict> </dict>
</dict>
</plist> </plist>