I’ve been trying to build code developed by my team on MacOSM1 architecture using xCode 12.4.
Mac is running BigSur version 11.2.3. I’ve tried this with JUCE 6.0.6, 6.0.7, 6.0.8 and the develop branch. Each time I try to build for a Release target the following build error occurs:
In XCode file->project->build system is set to “New Build System Default”
Use of undeclared identifier 'objc_msgSend_fpret' juce_osx_ObCHelpers.h
The code snippet that this points to is:
typedef double (*MsgSendFPRetFn) (id, SEL op, ...);
static inline MsgSendFPRetFn getMsgSendFPRetFn() noexcept { return (MsgSendFPRetFn) (void*) objc_msgSend_fpret; }
#endif````