Hi folks, how can I build the compiler (and all the binaries/libraries) as a universal binary?
I tried forcefully overriding CMAKE_OSX_ARCHITECTURES to accept x86_64;arm64, but getting an error enable_language: multiple values for CMAKE_OSX_ARCHITECTURES not supported with Swift .
I considered compiling for x86 and cross-compiling for arm64 (or vice versa) and them merging things, but cannot see such options for the build-script. It also feels like a hack workaround, but that's a different story ![]()
Any hints are highly appreciated ![]()