From 00286161b3455dd52e6b5bb6c71835395a05aa84 Mon Sep 17 00:00:00 2001 From: Timothy Hofland Date: Wed, 11 Mar 2026 14:42:35 +0100 Subject: [PATCH] fix: ignore non-critical warnings treated as errors during compilation on modern systems --- scripts/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/setup.sh b/scripts/setup.sh index 35120ba..7aacfe0 100644 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -257,10 +257,10 @@ if [ -f src/Osc/OscControl.cpp ]; then fi fi -# Build Example (Clean call - let OF detect platform) +# Build Example (Clean call - let OF detect platform, but ignore Trixie compiler strictness) cd "$REAL_HOME/openFrameworks/addons/ofxPiMapper/example_basic" echo "Starting compilation..." -sudo -u "$REAL_USER" make -j1 +sudo -u "$REAL_USER" make -j1 USER_CFLAGS="-Wno-error -Wno-reorder -Wno-sign-compare -Wno-delete-non-virtual-dtor" cp bin/example_basic /usr/local/bin/ofxPiMapper chmod +x /usr/local/bin/ofxPiMapper