Rely on the compiler version, to behave "more correctly" in case CXX is
just c++.
-fstack-protector \
--param=ssp-buffer-size=4
-ifneq ($(CXX),clang++)
+COMPILER = $(shell $(CXX) -v 2>&1 | grep -q "clang version" && echo clang || echo gcc)
+
+ifeq ($(COMPILER), gcc)
CXXFLAGS += -Wunsafe-loop-optimizations \
-Wunused-but-set-variable
endif
-ifeq ($(CXX),clang++)
+ifeq ($(COMPILER), clang)
LDFLAGS += -Qunused-arguments
endif