From f5b8e8d624be67315eb5b4ee33783d6cc98b7256 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Thu, 11 Aug 2022 15:29:54 -0400 Subject: [PATCH] build: remove cnxk support from dpdk external deps - the cnxk code fails to link using the gcc-11 toolchain included in the ARM64 Ubuntu-22.04 distro. This is required for Ubuntu-22.04 CI jobs (both docker image building & CI job execution on ARM64) - Currently unable to replicate this failure on the dpdk repo. Type: fix Change-Id: Ice44aef9f0f721b4c88ac78f92a14bda87dc80a6 Signed-off-by: Dave Wallace --- build/external/packages/dpdk.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/external/packages/dpdk.mk b/build/external/packages/dpdk.mk index e2fbf04ea3e..e0558f3e474 100644 --- a/build/external/packages/dpdk.mk +++ b/build/external/packages/dpdk.mk @@ -43,10 +43,12 @@ endif DPDK_DRIVERS_DISABLED := baseband/\*, \ bus/dpaa, \ bus/ifpga, \ + common/cnxk, \ compress/isal, \ compress/octeontx, \ compress/zlib, \ crypto/ccp, \ + crypto/cnxk, \ crypto/dpaa_sec, \ crypto/openssl, \ crypto/aesni_mb, \ @@ -56,9 +58,11 @@ DPDK_DRIVERS_DISABLED := baseband/\*, \ crypto/zuc, \ event/\*, \ mempool/dpaa, \ + mempool/cnxk, \ net/af_packet, \ net/bnx2x, \ net/bonding, \ + net/cnxk, \ net/ipn3ke, \ net/liquidio, \ net/pcap, \ @@ -74,6 +78,7 @@ DPDK_LIBS_DISABLED := acl, \ bitratestats, \ bpf, \ cfgfile, \ + cnxk, \ distributor, \ efd, \ fib, \ -- 2.16.6