I want to check on behaviour of macOS Application which is built with Universal 2 setting and loading a library which is not a Universal 2 binary. Will this work?
Universal 2 Binaries
I'm assuming that the library in question is built for Intel CPUs. This means you will need to use Rosetta for everything on an M1 Mac. Within a single process, all code needs to be the same architecture.
Thank you for the details