projects
/
experiments
/
opencv_trail_effect.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Segmentation.hpp: adapt the code to OpenCV 3
[experiments/opencv_trail_effect.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
6bb3c15
..
4e316b9
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-23,12
+23,14
@@
CXXFLAGS += -fno-common \
-fstack-protector \
--param=ssp-buffer-size=4
-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
CXXFLAGS += -Wunsafe-loop-optimizations \
-Wunused-but-set-variable
endif
-ifeq ($(C
XX),clang++
)
+ifeq ($(C
OMPILER), clang
)
LDFLAGS += -Qunused-arguments
endif
LDFLAGS += -Qunused-arguments
endif