cxgbe: fix build with clang
authorThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 30 Jun 2015 22:14:25 +0000 (00:14 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 30 Jun 2015 22:18:43 +0000 (00:18 +0200)
GCC_VERSION is empty in case of clang:
/bin/sh: line 0: test: -ge: unary operator expected

It cannot be quoted because an integer is expected.
So the fix is to check empty value in a separate test.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
drivers/net/cxgbe/Makefile

index 4dfc6b0..ae12d75 100644 (file)
@@ -52,9 +52,9 @@ ifeq ($(CC), icc)
 CFLAGS_BASE_DRIVER = -wd174 -wd593 -wd869 -wd981 -wd2259
 else
 #
-# CFLAGS for gcc
+# CFLAGS for gcc/clang
 #
-ifeq ($(shell test $(GCC_VERSION) -ge 44 && echo 1), 1)
+ifeq ($(shell test $(CC) = gcc && test $(GCC_VERSION) -ge 44 && echo 1), 1)
 CFLAGS     += -Wno-deprecated
 endif
 CFLAGS_BASE_DRIVER = -Wno-unused-parameter -Wno-unused-value