From: Antonio Ospite <ao2@ao2.it>
Date: Tue, 5 Jan 2016 22:02:14 +0000 (+0100)
Subject: kinect_upload_fw: Makefile: don't enable unsupported options with clang
X-Git-Tag: v0.4~8
X-Git-Url: https://git.ao2.it/kinect-audio-setup.git/commitdiff_plain/2d1dcfc331551ec524eae80adb3d6a87657f5d21?ds=inline;hp=--cc

kinect_upload_fw: Makefile: don't enable unsupported options with clang
---

2d1dcfc331551ec524eae80adb3d6a87657f5d21
diff --git a/kinect_upload_fw/Makefile b/kinect_upload_fw/Makefile
index 15741d3..c8bbc86 100644
--- a/kinect_upload_fw/Makefile
+++ b/kinect_upload_fw/Makefile
@@ -30,9 +30,12 @@ CFLAGS += -fno-common \
   -Wswitch-enum \
   -Wundef \
   -Wunreachable-code \
-  -Wunsafe-loop-optimizations \
   -Wwrite-strings
 
+ifneq ($(CC),clang)
+  CFLAGS += -Wunsafe-loop-optimizations
+endif
+
 CFLAGS += $(shell pkg-config --cflags libusb-1.0)
 LDLIBS += $(shell pkg-config --libs libusb-1.0)