From b83c39c8afd58c86af1c49a7c0e081b30c86d823 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Mon, 30 Mar 2026 21:41:10 -0700 Subject: [PATCH] services/pipewire: add -fno-strict-overflow to fix PCH with pipewire Unclear how this should be handled long term. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1226342..4ed8374 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,8 +87,9 @@ include(cmake/util.cmake) add_compile_options(-Wall -Wextra -Wno-vla-cxx-extension) -# pipewire defines this, breaking PCH +# pipewire defines these, breaking PCH add_compile_definitions(_REENTRANT) +add_compile_options(-fno-strict-overflow) if (FRAME_POINTERS) add_compile_options(-fno-omit-frame-pointer)