mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
Fix 64bit OSX/MacOS builds
This commit is contained in:
parent
642bfc4c9a
commit
386f69ae32
1 changed files with 5 additions and 2 deletions
|
|
@ -27,8 +27,11 @@
|
|||
|
||||
namespace ARDOUR {
|
||||
|
||||
#if defined ( __i386__) || defined (__PPC__)
|
||||
#define MINIMP3_NO_SIMD // for portability
|
||||
/* 64bit CPUs always have SSE2, armhf/aarch64 has NEON,
|
||||
* except apple/OSX does not provide immintrin.h
|
||||
*/
|
||||
#if defined ( __i386__) || defined (__PPC__) || defined (__APPLE__)
|
||||
#define MINIMP3_NO_SIMD // disable for portability
|
||||
#endif
|
||||
|
||||
#define MINIMP3_NONSTANDARD_BUT_LOGICAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue