Hi Seán
I've had a look at 'ssfunc.h' and there's this section:
#define MSBFIRST (1)
#define LSBFIRST (1)
/* RWD extended set of symbols ! Now works for Mac universal Binary build */
#if defined(__I86__) || defined(_X86_) || defined(__x86_64) || defined(__i386__) || defined(__i486__) || defined(_IBMR2)
#undef MSBFIRST
#elif defined(M68000) || defined(__sgi) || defined (__POWERPC__)
#undef LSBFIRST
#else
#error "Unknown byte order for this processor"
#endif
#if defined(MSBFIRST) && defined(LSBFIRST)
#error "Internal: can't be both MSB and LSB"
#endif
What would I need to change that to (if that's the correct bit...?)
There is a homebrew for portaudio here:
https://formulae.brew.sh/formula/portaudio
I've had a look at 'ssfunc.h' and there's this section:
#define MSBFIRST (1)
#define LSBFIRST (1)
/* RWD extended set of symbols ! Now works for Mac universal Binary build */
#if defined(__I86__) || defined(_X86_) || defined(__x86_64) || defined(__i386__) || defined(__i486__) || defined(_IBMR2)
#undef MSBFIRST
#elif defined(M68000) || defined(__sgi) || defined (__POWERPC__)
#undef LSBFIRST
#else
#error "Unknown byte order for this processor"
#endif
#if defined(MSBFIRST) && defined(LSBFIRST)
#error "Internal: can't be both MSB and LSB"
#endif
What would I need to change that to (if that's the correct bit...?)
There is a homebrew for portaudio here:
https://formulae.brew.sh/formula/portaudio