Post

Replies

Boosts

Views

Activity

Reply to Issues when trying to run amd64 binaries under Rosetta 2 on Linux
I'm experiencing a similar issue on macOS Sonoma using Parallels with Ubuntu 22.04. All dependencies of the X64 binary are available but the execution fails with the following error: 2976 Illegal instruction (core dumped) which creates a core file: /var/lib/apport/coredump/core._media_psf_RosettaLinux_rosetta.1000. suggesting that Rosetta is indeed used. Any suggestion how to progress from here? Thanks!
Oct ’23
Reply to App with camera access crashes when launched from Finder but runs from Terminal
Thanks for the detailed explanation, I read about it some years ago. The software in question is a graphical in-house development tool, the final products are signed and notarized of course. I still think the error explanation in the crash log is in contrast to the documentation and your explanation ("app's Info.plist must contain an com.apple.security.device.camera key"). I filed a radar for it: FB9910936. What I also don't understand why it runs when I start the App from Terminal and only crashes when launched from Finder ...
Mar ’22
Reply to SwiftUI NavigationLink pops out by itself
I was able to resolve all navigation issues and state side effects in my app (iOS & iPadOS) using an adaptation of the method referenced by "basememara" and originating from "Swift with Majid". I'm mostly using grid and list based item views with navigation links. SwiftUI is broken in so many areas currently, that the slowdown you get by finding many plan B's will eat all its proposed swiftness. I filed bug reports for all of them, please do the same.
May ’21
Reply to crash with simple simd code in Swift
After replacing every occurence of the double4x4 inverse function with my own function, the App works correctly. My bet is on the double4x4 inverse function to be incorrect.The most simple replacement that works for me is just an encapsulation of the inverse function call by another function:extension double4x4 { public var inverseReplacement: double4x4 { return self.inverse } }However, I would not ship an app with this bug.
Jan ’20