@cryptotaxi247 / netdata-1 / commits / 992f188f3

Suppress ML and dlib ABI warnings (#13875)

* Suppress dlib ABI GCC warnings * Suppress ml ABI GCC warnings

Dim-P committed Oct 25, 2022 at 13:41 UTC 992f188f3b2266461d43b5989ed6384ecac16066
1 file changed +7 -1
Makefile.am
+7 -1
@@ -256,7 +256,13 @@ ML_FILES += \
256 $(NULL)
257
258 # Disable warnings from dlib library
259 -ml/dlib/dlib/all/source.$(OBJEXT) : CXXFLAGS += -Wno-sign-compare -Wno-type-limits -Wno-aggressive-loop-optimizations -Wno-stringop-overflow
259 +ml/dlib/dlib/all/source.$(OBJEXT) : CXXFLAGS += -Wno-sign-compare -Wno-type-limits -Wno-aggressive-loop-optimizations -Wno-stringop-overflow -Wno-psabi
260 +
261 +# Disable ml warnings
262 +ml/Dimension.$(OBJEXT) : CXXFLAGS += -Wno-psabi
263 +ml/Host.$(OBJEXT) : CXXFLAGS += -Wno-psabi
264 +ml/KMeans.$(OBJEXT) : CXXFLAGS += -Wno-psabi
265 +ml/ml.$(OBJEXT) : CXXFLAGS += -Wno-psabi
266
267 endif
268