Fix VPP DPDK build failure with Mellanox NIC on aarch64

This compile issue was first reported by Sirshak Das in following thread:
https://lists.fd.io/g/vpp-dev/message/8384

The issue was caused by auto-config shell script auto-config-h.sh regard
quotation mark "" as $CROSS prefix for $CC when CROSS is empty.

Change-Id: Ied535c6d18c4dffacbddabc3ad2087dffe19438d
Signed-off-by: Bin Huang <huangbin.mails@gmail.com>
This commit is contained in:
Bin Huang
2018-05-24 16:43:19 +08:00
committed by Damjan Marion
parent 1cf9a165fc
commit 096e6be4bd

View File

@ -80,7 +80,8 @@ DPDK_TUNE ?= core-avx2
# ARM64
##############################################################################
else ifeq ($(MACHINE),aarch64)
export CROSS=""
CROSS :=
export CROSS
DPDK_TARGET ?= arm64-armv8a-linuxapp-$(DPDK_CC)
DPDK_MACHINE ?= armv8a
DPDK_TUNE ?= generic