aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-05-02 15:11:54 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-05-02 15:11:54 +0200
commit94a6cc3d6c70883e08fd7be16e9405d44bfb94e5 (patch)
treed0b7b0daa26108adbf2c5217b0898a5860a83422
parenta3dbc6aebbb609a2cd8c1ca308423ebaf3b420c6 (diff)
downloadairwindows-lv2-port-94a6cc3d6c70883e08fd7be16e9405d44bfb94e5.tar.gz
airwindows-lv2-port-94a6cc3d6c70883e08fd7be16e9405d44bfb94e5.tar.bz2
airwindows-lv2-port-94a6cc3d6c70883e08fd7be16e9405d44bfb94e5.zip
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.
-rwxr-xr-xplugins/LV2/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
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)