On 4/19/22 13:11, IOhannes m zmoelnig wrote:
- i *think*, on macOS Pd should first try to load the arch-specific
extensions (
.d_i386
), and only then it should fall back to loading the fat binary (.d_fat
). obviously it doesn't do that [1] right now.
in the meantime, you could try to force the extension for the fat binary to ".pd_darwin" (which is searched for after the arch-specific extensions).
i'm not sure whether pd-lib-builder handles this correctly, but something like this might do the trick:
make extension="pd_darwin" arch="x86_64 arm64"
gmndas IOhannes