-
One of our users on macOS 12.6 and M1 Pro reported this crash on app start:
Can this be related to cidre? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Yup, cidre only supports macOS 13 Ventura or above. |
Beta Was this translation helpful? Give feedback.
-
Yep, objc retain/release are optimized to reduce pointer moves/loads. I added |
Beta Was this translation helpful? Give feedback.
-
@yury This is another crash on Intel Macs, running Sonoma. Do you have any idea what might cause this?
|
Beta Was this translation helpful? Give feedback.
Yep, objc retain/release are optimized to reduce pointer moves/loads.
I added
classic-objc-retain-release
feature flag. Please try it. It disables that optimization.But I think, optimization on
objc_msgSend
will not work too :(