projects
/
experiments
/
opencv_trail_effect.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Makefile: fix warnings when linking with clang++
[experiments/opencv_trail_effect.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
a008ba9
..
6bb3c15
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-18,13
+18,20
@@
CXXFLAGS += -fno-common \
-Wswitch-enum \
-Wundef \
-Wunreachable-code \
-Wswitch-enum \
-Wundef \
-Wunreachable-code \
- -Wunsafe-loop-optimizations \
- -Wunused-but-set-variable \
-Wwrite-strings \
-Wp,-D_FORTIFY_SOURCE=2 \
-fstack-protector \
--param=ssp-buffer-size=4
-Wwrite-strings \
-Wp,-D_FORTIFY_SOURCE=2 \
-fstack-protector \
--param=ssp-buffer-size=4
+ifneq ($(CXX),clang++)
+ CXXFLAGS += -Wunsafe-loop-optimizations \
+ -Wunused-but-set-variable
+endif
+
+ifeq ($(CXX),clang++)
+ LDFLAGS += -Qunused-arguments
+endif
+
CXXFLAGS += $(shell pkg-config --cflags opencv)
LDLIBS += $(shell pkg-config --libs opencv)
CXXFLAGS += $(shell pkg-config --cflags opencv)
LDLIBS += $(shell pkg-config --libs opencv)