From: Ouyang Changchun Date: Thu, 9 Oct 2014 07:27:59 +0000 (+0800) Subject: ixgbe/base: disable some gcc warnings X-Git-Tag: spdx-start~10308 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=03a35595d095f90e7a963fad035f2ac332794061;p=dpdk.git ixgbe/base: disable some gcc warnings This patch disables compilation complain from lower GCC version (less than 4.6). Note: Only supported versions of GCC are 4.x. Signed-off-by: Changchun Ouyang --- diff --git a/lib/librte_pmd_ixgbe/Makefile b/lib/librte_pmd_ixgbe/Makefile index 0b647bd06b..35880479e8 100644 --- a/lib/librte_pmd_ixgbe/Makefile +++ b/lib/librte_pmd_ixgbe/Makefile @@ -66,6 +66,11 @@ ifeq ($(shell test $(GCC_MAJOR_VERSION) -ge 4 -a $(GCC_MINOR_VERSION) -ge 6 && e CFLAGS_ixgbe_common.o += -Wno-unused-but-set-variable CFLAGS_ixgbe_x550.o += -Wno-unused-but-set-variable -Wno-maybe-uninitialized endif + +ifeq ($(shell test $(GCC_MAJOR_VERSION) -le 4 -a $(GCC_MINOR_VERSION) -le 6 && echo 1), 1) +CFLAGS_ixgbe_x550.o += -Wno-uninitialized +CFLAGS_ixgbe_phy.o += -Wno-uninitialized +endif endif #