From 3f96ce41873c6c7d65f80eb23073bd500afcaeda Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 31 Dec 2017 02:14:46 +0100 Subject: [PATCH] BFM demod: set -fno-var-tracking-assignments for rdstmc.cpp as it makes compilation very busy and memory hungry for nothing. May fix compilation on RPi3 --- plugins/channelrx/demodbfm/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/channelrx/demodbfm/CMakeLists.txt b/plugins/channelrx/demodbfm/CMakeLists.txt index 096dce3bb..8eae42d0b 100644 --- a/plugins/channelrx/demodbfm/CMakeLists.txt +++ b/plugins/channelrx/demodbfm/CMakeLists.txt @@ -22,6 +22,8 @@ set(bfm_HEADERS rdstmc.h ) +set_source_files_properties(rdstmc.cpp PROPERTIES COMPILE_FLAGS -fno-var-tracking-assignments) + set(bfm_FORMS bfmdemodgui.ui )