From 94a6cc3d6c70883e08fd7be16e9405d44bfb94e5 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 2 May 2021 15:11:54 +0200 Subject: Ignore strict-aliasing errors. A tester reported that one of the plugins (DustBunny) would not build, and caused this error on their system. Tried to replicate the setup, but was not able to reproduce it. Hoping this will fix the issue. --- plugins/LV2/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/LV2/CMakeLists.txt b/plugins/LV2/CMakeLists.txt index 0f7e489..72d14c6 100755 --- a/plugins/LV2/CMakeLists.txt +++ b/plugins/LV2/CMakeLists.txt @@ -5,6 +5,7 @@ set(CMAKE_CXX_STANDARD 14) add_compile_options(-Wall -Werror -Wno-unused-value) add_compile_options(-Wno-unused-but-set-variable) # AQuickVoiceClip add_compile_options(-Wno-misleading-indentation) # curve +add_compile_options(-Wno-strict-aliasing) # DustBunny configure_file(manifest.ttl.in airwindows.lv2/manifest.ttl @ONLY) -- cgit v1.2.3