From 86055e11d06adf762fa8046cb44e682b10547e68 Mon Sep 17 00:00:00 2001 From: Greg Recco <127459177+gregrecco67@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:23:26 -0400 Subject: [PATCH] fix Mac build (MIPP) --- CMakeLists.txt | 1 + Source/SynthVoice.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index edc8b55..398a0fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,6 +50,7 @@ if (MSVC) target_compile_options(${PROJECT_NAME} PRIVATE /wd26495 ) + add_compile_definitions(MIPP_ALIGNED_LOADS) endif () # Binary Data diff --git a/Source/SynthVoice.cpp b/Source/SynthVoice.cpp index 3f7f6b0..7f7a7fa 100644 --- a/Source/SynthVoice.cpp +++ b/Source/SynthVoice.cpp @@ -12,7 +12,7 @@ * https://github.com/gregrecco67/AudiblePlanets */ -#define MIPP_ALIGNED_LOADS +//#define MIPP_ALIGNED_LOADS #include "SynthVoice.h" #include "PluginProcessor.h"