kinect_upload_fw: Makefile: don't enable unsupported options with clang
authorAntonio Ospite <ao2@ao2.it>
Tue, 5 Jan 2016 22:02:14 +0000 (23:02 +0100)
committerAntonio Ospite <ao2@ao2.it>
Thu, 7 Jan 2016 16:28:56 +0000 (17:28 +0100)
kinect_upload_fw/Makefile

index 15741d3..c8bbc86 100644 (file)
@@ -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)