From 707ee7c717f0195a56f7d7143b8c03b91fb74cb2 Mon Sep 17 00:00:00 2001 From: Mark Vitale Date: Wed, 6 Apr 2022 22:46:54 -0400 Subject: [PATCH] build: avoid -Wno-error=stringop-overread for clang In order to prevent a build error when building with clang (e.g. macOS), only specify -Wno-error=stringop-overread for gcc. --- oscar/oscar.pro | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/oscar/oscar.pro b/oscar/oscar.pro index ed8195e5..145a7ef6 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -534,10 +534,12 @@ gcc | clang { message("$$QMAKE_CXX major version $$COMPILER_MAJOR") - greaterThan(COMPILER_MAJOR, 10) : { - QMAKE_CFLAGS += -Wno-error=stringop-overread - QMAKE_CXXFLAGS += -Wno-error=stringop-overread - message("Removing stringop-overread error") + equals($$QMAKE_CXX, "gcc") : { + greaterThan(COMPILER_MAJOR, 10) : { + QMAKE_CFLAGS += -Wno-error=stringop-overread + QMAKE_CXXFLAGS += -Wno-error=stringop-overread + message("Removing stringop-overread error") + } } }