test suite reviews and discussions
 help / color / mirror / Atom feed
* Re: [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp
  2020-12-18 11:36 [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp Ling Wei
@ 2020-12-18  3:42 ` Ling, WeiX
  2020-12-18  5:15   ` Zhao, HaiyangX
  2020-12-21  7:55 ` Tu, Lijuan
  1 sibling, 1 reply; 4+ messages in thread
From: Ling, WeiX @ 2020-12-18  3:42 UTC (permalink / raw)
  To: Ling, WeiX, dts

[-- Attachment #1: Type: text/plain, Size: 322 bytes --]

Tested-by: Wei Ling <weix.ling@intel.com>

Regards,
Ling Wei

> -----Original Message-----
> From: Ling Wei <weix.ling@intel.com>
> Sent: Friday, December 18, 2020 07:37 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1] tests/unit_tests_loopback:rm exists file before cp


[-- Attachment #2: TestUnitTestsLoopback.log --]
[-- Type: application/octet-stream, Size: 796997 bytes --]

18/12/2020 11:29:02                            dts: 
TEST SUITE : TestUnitTestsLoopback
18/12/2020 11:29:02                            dts: NIC :        fortville_spirit
18/12/2020 11:29:02              dut.10.240.183.70: 
18/12/2020 11:29:03                         tester: 
18/12/2020 11:29:03              dut.10.240.183.70: cat app/test/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: /* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2010-2014 Intel Corporation
 */


#include <stdio.h>
#include <inttypes.h>
#include <signal.h>
#include <unistd.h>
#include <rte_cycles.h>
#include <rte_ethdev.h>
#include <rte_byteorder.h>
#include <rte_atomic.h>
#include <rte_malloc.h>
#include "packet_burst_generator.h"
#include "test.h"

#define NB_ETHPORTS_USED                (1)
#define NB_SOCKETS                      (2)
#define MEMPOOL_CACHE_SIZE 250
#define MAX_PKT_BURST                   (32)
#define RTE_TEST_RX_DESC_DEFAULT        (1024)
#define RTE_TEST_TX_DESC_DEFAULT        (1024)
#define RTE_PORT_ALL            (~(uint16_t)0x0)

/* how long test would take at full line rate */
#define RTE_TEST_DURATION                (2)

/*
 * RX and TX Prefetch, Host, and Write-back threshold values should be
 * carefully set for optimal performance. Consult the network
 * controller's datasheet and supporting DPDK documentation for guidance
 * on how these parameters should be set.
 */
#define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
#define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
#define RX_WTHRESH 0 /**< Default values of RX write-back threshold reg. */

/*
 * These default values are optimized for use with the Intel(R) 82599 10 GbE
 * Controller and the DPDK ixgbe PMD. Consider using other values for other
 * network controllers and/or network drivers.
 */
#define TX_PTHRESH 32 /**< Default values of TX prefetch threshold reg. */
#define TX_HTHRESH 0  /**< Default values of TX host threshold reg. */
#define TX_WTHRESH 0  /**< Default values of TX write-back threshold reg. */

#define MAX_TRAFFIC_BURST              2048

#define NB_MBUF RTE_MAX(						\
		(unsigned)(nb_ports*nb_rx_queue*nb_rxd +		\
			   nb_ports*nb_lcores*MAX_PKT_BURST +		\
			   nb_ports*nb_tx_queue*nb_txd +		\
			   nb_lcores*MEMPOOL_CACHE_SIZE +		\
			   nb_ports*MAX_TRAFFIC_BURST),			\
			(unsigned)8192)


static struct rte_mempool *mbufpool[NB_SOCKETS];
/* ethernet addresses of ports */
static struct rte_ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];

static struct rte_eth_conf port_conf = {
	.rxmode = {
		.mq_mode = ETH_MQ_RX_NONE,
		.max_rx_pkt_len = RTE_ETHER_MAX_LEN,
		.split_hdr_size = 0,
	},
	.txmode = {
		.mq_mode = ETH_MQ_TX_NONE,
	},
	.lpbk_mode = 1,  /* enable loopback */
};

static struct rte_eth_rxconf rx_conf = {
	.rx_thresh = {
		.pthresh = RX_PTHRESH,
		.hthresh = RX_HTHRESH,
		.wthresh = RX_WTHRESH,
	},
	.rx_free_thresh = 32,
};

static struct rte_eth_txconf tx_conf = {
	.tx_thresh = {
		.pthresh = TX_PTHRESH,
		.hthresh = TX_HTHRESH,
		.wthresh = TX_WTHRESH,
	},
	.tx_free_thresh = 32, /* Use PMD default values */
	.tx_rs_thresh = 32, /* Use PMD default values */
};

enum {
	LCORE_INVALID = 0,
	LCORE_AVAIL,
	LCORE_USED,
};

struct lcore_conf {
	uint8_t status;
	uint8_t socketid;
	uint16_t nb_ports;
	uint16_t portlist[RTE_MAX_ETHPORTS];
} __rte_cache_aligned;

struct lcore_conf lcore_conf[RTE_MAX_LCORE];

static uint64_t link_mbps;

enum {
	SC_CONTINUOUS = 0,
	SC_BURST_POLL_FIRST,
	SC_BURST_XMIT_FIRST,
};

static uint32_t sc_flag;

/* Check the link status of all ports in up to 3s, and print them finally */
static void
check_all_ports_link_status(uint16_t port_num, uint32_t port_mask)
{
#define CHECK_INTERVAL 100 /* 100ms */
#define MAX_CHECK_TIME 30 /* 3s (30 * 100ms) in total */
	uint16_t portid;
	uint8_t count, all_ports_up, print_flag = 0;
	struct rte_eth_link link;
	int ret;
	char link_status[RTE_ETH_LINK_MAX_STR_LEN];

	printf("Checking link statuses...\n");
	fflush(stdout);
	for (count = 0; count <= MAX_CHECK_TIME; count++) {
		all_ports_up = 1;
		for (portid = 0; portid < port_num; portid++) {
			if ((port_mask & (1 << portid)) == 0)
				continue;
			memset(&link, 0, sizeof(link));
			ret = rte_eth_link_get_nowait(portid, &link);
			if (ret < 0) {
				all_ports_up = 0;
				if (print_flag == 1)
					printf("Port %u link get failed: %s\n",
						portid, rte_strerror(-ret));
				continue;
			}

			/* print link status if flag set */
			if (print_flag == 1) {
				if (link.link_status && link_mbps == 0)
					link_mbps = link.link_speed;

				rte_eth_link_to_str(link_status,
					sizeof(link_status), &link);
				printf("Port %d %s\n", portid, link_status);
				continue;
			}
			/* clear all_ports_up flag if any link down */
			if (link.link_status == ETH_LINK_DOWN) {
				all_ports_up = 0;
				break;
			}
		}
		/* after finally printing all link status, get out */
		if (print_flag == 1)
			break;

		if (all_ports_up == 0) {
			fflush(stdout);
			rte_delay_ms(CHECK_INTERVAL);
		}

		/* set the print_flag if all ports up or timeout */
		if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1))
			print_flag = 1;
	}
}

static void
print_ethaddr(const char *name, const struct rte_ether_addr *eth_addr)
{
	char buf[RTE_ETHER_ADDR_FMT_SIZE];
	rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, eth_addr);
	printf("%s%s", name, buf);
}

static int
init_traffic(struct rte_mempool *mp,
	     struct rte_mbuf **pkts_burst, uint32_t burst_size)
{
	struct rte_ether_hdr pkt_eth_hdr;
	struct rte_ipv4_hdr pkt_ipv4_hdr;
	struct rte_udp_hdr pkt_udp_hdr;
	uint32_t pktlen;
	static uint8_t src_mac[] = { 0x00, 0xFF, 0xAA, 0xFF, 0xAA, 0xFF };
	static uint8_t dst_mac[] = { 0x00, 0xAA, 0xFF, 0xAA, 0xFF, 0xAA };


	initialize_eth_header(&pkt_eth_hdr,
		(struct rte_ether_addr *)src_mac,
		(struct rte_ether_addr *)dst_mac, RTE_ETHER_TYPE_IPV4, 0, 0);

	pktlen = initialize_ipv4_header(&pkt_ipv4_hdr,
					IPV4_ADDR(10, 0, 0, 1),
					IPV4_ADDR(10, 0, 0, 2), 26);
	printf("IPv4 pktlen %u\n", pktlen);

	pktlen = initialize_udp_header(&pkt_udp_hdr, 0, 0, 18);

	printf("UDP pktlen %u\n", pktlen);

	return generate_packet_burst(mp, pkts_burst, &pkt_eth_hdr,
				     0, &pkt_ipv4_hdr, 1,
				     &pkt_udp_hdr, burst_size,
				     PACKET_BURST_GEN_PKT_LEN, 1);
}

static int
init_lcores(void)
{
	unsigned lcore_id;

	for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
		lcore_conf[lcore_id].socketid =
			rte_lcore_to_socket_id(lcore_id);
		if (rte_lcore_is_enabled(lcore_id) == 0) {
			lcore_conf[lcore_id].status = LCORE_INVALID;
			continue;
		} else
			lcore_conf[lcore_id].status = LCORE_AVAIL;
	}
	return 0;
}

static int
init_mbufpool(unsigned nb_mbuf)
{
	int socketid;
	unsigned lcore_id;
	char s[64];

	for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
		if (rte_lcore_is_enabled(lcore_id) == 0)
			continue;

		socketid = rte_lcore_to_socket_id(lcore_id);
		if (socketid >= NB_SOCKETS) {
			rte_exit(EXIT_FAILURE,
				"Socket %d of lcore %u is out of range %d\n",
				socketid, lcore_id, NB_SOCKETS);
		}
		if (mbufpool[socketid] == NULL) {
			snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
			mbufpool[socketid] =
				rte_pktmbuf_pool_create(s, nb_mbuf,
					MEMPOOL_CACHE_SIZE, 0,
					RTE_MBUF_DEFAULT_BUF_SIZE, socketid);
			if (mbufpool[socketid] == NULL)
				rte_exit(EXIT_FAILURE,
					"Cannot init mbuf pool on socket %d\n",
					socketid);
			else
				printf("Allocated mbuf pool on socket %d\n",
					socketid);
		}
	}
	return 0;
}

static uint16_t
alloc_lcore(uint16_t socketid)
{
	unsigned lcore_id;

	for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
		if (LCORE_AVAIL != lcore_conf[lcore_id].status ||
		    lcore_conf[lcore_id].socketid != socketid ||
		    lcore_id == rte_get_main_lcore())
			continue;
		lcore_conf[lcore_id].status = LCORE_USED;
		lcore_conf[lcore_id].nb_ports = 0;
		return lcore_id;
	}

	return (uint16_t)-1;
}

static volatile uint64_t stop;
static uint64_t count;
static uint64_t drop;
static uint64_t idle;

static void
reset_count(void)
{
	count = 0;
	drop = 0;
	idle = 0;
}

static void
stats_display(uint16_t port_id)
{
	struct rte_eth_stats stats;
	rte_eth_stats_get(port_id, &stats);

	printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
	       "%-"PRIu64"\n",
	       stats.ipackets, stats.imissed, stats.ibytes);
	printf("  RX-errors: %-10"PRIu64" RX-nombuf:  %-10"PRIu64"\n",
	       stats.ierrors, stats.rx_nombuf);
	printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
	       "%-"PRIu64"\n",
	       stats.opackets, stats.oerrors, stats.obytes);
}

static void
signal_handler(int signum)
{
	/*  USR1 signal, stop testing */
	if (signum == SIGUSR1) {
		printf("Force Stop!\n");
		stop = 1;
	}

	/*  USR2 signal, print stats */
	if (signum == SIGUSR2)
		stats_display(0);
}

struct rte_mbuf **tx_burst;

uint64_t (*do_measure)(struct lcore_conf *conf,
		       struct rte_mbuf *pkts_burst[],
		       uint64_t total_pkts);

static uint64_t
measure_rxtx(struct lcore_conf *conf,
	     struct rte_mbuf *pkts_burst[],
	     uint64_t total_pkts)
{
	unsigned i, portid, nb_rx, nb_tx;
	uint64_t prev_tsc, cur_tsc;

	prev_tsc = rte_rdtsc();

	while (likely(!stop)) {
		for (i = 0; i < conf->nb_ports; i++) {
			portid = conf->portlist[i];
			nb_rx = rte_eth_rx_burst(portid, 0,
						 pkts_burst, MAX_PKT_BURST);
			if (unlikely(nb_rx == 0)) {
				idle++;
				continue;
			}

			count += nb_rx;
			nb_tx = rte_eth_tx_burst(portid, 0, pkts_burst, nb_rx);
			if (unlikely(nb_tx < nb_rx)) {
				drop += (nb_rx - nb_tx);
				do {
					rte_pktmbuf_free(pkts_burst[nb_tx]);
				} while (++nb_tx < nb_rx);
			}
		}
		if (unlikely(count >= total_pkts))
			break;
	}

	cur_tsc = rte_rdtsc();

	return cur_tsc - prev_tsc;
}

static uint64_t
measure_rxonly(struct lcore_conf *conf,
	       struct rte_mbuf *pkts_burst[],
	       uint64_t total_pkts)
{
	unsigned i, portid, nb_rx, nb_tx;
	uint64_t diff_tsc, cur_tsc;

	diff_tsc = 0;
	while (likely(!stop)) {
		for (i = 0; i < conf->nb_ports; i++) {
			portid = conf->portlist[i];

			cur_tsc = rte_rdtsc();
			nb_rx = rte_eth_rx_burst(portid, 0,
						 pkts_burst, MAX_PKT_BURST);
			if (unlikely(nb_rx == 0)) {
				idle++;
				continue;
			}
			diff_tsc += rte_rdtsc() - cur_tsc;

			count += nb_rx;
			nb_tx = rte_eth_tx_burst(portid, 0, pkts_burst, nb_rx);
			if (unlikely(nb_tx < nb_rx)) {
				drop += (nb_rx - nb_tx);
				do {
					rte_pktmbuf_free(pkts_burst[nb_tx]);
				} while (++nb_tx < nb_rx);
			}
		}
		if (unlikely(count >= total_pkts))
			break;
	}

	return diff_tsc;
}

static uint64_t
measure_txonly(struct lcore_conf *conf,
	       struct rte_mbuf *pkts_burst[],
	       uint64_t total_pkts)
{
	unsigned i, portid, nb_rx, nb_tx;
	uint64_t diff_tsc, cur_tsc;

	printf("do tx measure\n");
	diff_tsc = 0;
	while (likely(!stop)) {
		for (i = 0; i < conf->nb_ports; i++) {
			portid = conf->portlist[i];
			nb_rx = rte_eth_rx_burst(portid, 0,
						 pkts_burst, MAX_PKT_BURST);
			if (unlikely(nb_rx == 0)) {
				idle++;
				continue;
			}

			count += nb_rx;

			cur_tsc = rte_rdtsc();
			nb_tx = rte_eth_tx_burst(portid, 0, pkts_burst, nb_rx);
			if (unlikely(nb_tx < nb_rx)) {
				drop += (nb_rx - nb_tx);
				do {
					rte_pktmbuf_free(pkts_burst[nb_tx]);
				} while (++nb_tx < nb_rx);
			}
			diff_tsc += rte_rdtsc() - cur_tsc;
		}
		if (unlikely(count >= total_pkts))
			break;
	}

	return diff_tsc;
}

/* main processing loop */
static int
main_loop(__rte_unused void *args)
{
#define PACKET_SIZE 64
#define FRAME_GAP 12
#define MAC_PREAMBLE 8
	struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
	unsigned lcore_id;
	unsigned i, portid, nb_rx = 0, nb_tx = 0;
	struct lcore_conf *conf;
	int pkt_per_port;
	uint64_t diff_tsc;
	uint64_t packets_per_second, total_packets;

	lcore_id = rte_lcore_id();
	conf = &lcore_conf[lcore_id];
	if (conf->status != LCORE_USED)
		return 0;

	pkt_per_port = MAX_TRAFFIC_BURST;

	int idx = 0;
	for (i = 0; i < conf->nb_ports; i++) {
		int num = pkt_per_port;
		portid = conf->portlist[i];
		printf("inject %d packet to port %d\n", num, portid);
		while (num) {
			nb_tx = RTE_MIN(MAX_PKT_BURST, num);
			nb_tx = rte_eth_tx_burst(portid, 0,
						&tx_burst[idx], nb_tx);
			num -= nb_tx;
			idx += nb_tx;
		}
	}
	printf("Total packets inject to prime ports = %u\n", idx);

	packets_per_second = (link_mbps * 1000 * 1000) /
		((PACKET_SIZE + FRAME_GAP + MAC_PREAMBLE) * CHAR_BIT);
	printf("Each port will do %"PRIu64" packets per second\n",
	       packets_per_second);

	total_packets = RTE_TEST_DURATION * conf->nb_ports * packets_per_second;
	printf("Test will stop after at least %"PRIu64" packets received\n",
		+ total_packets);

	diff_tsc = do_measure(conf, pkts_burst, total_packets);

	for (i = 0; i < conf->nb_ports; i++) {
		portid = conf->portlist[i];
		int nb_free = 0;
		uint64_t timeout = 10000;
		do { /* dry out */
			nb_rx = rte_eth_rx_burst(portid, 0,
						 pkts_burst, MAX_PKT_BURST);
			nb_tx = 0;
			while (nb_tx < nb_rx)
				rte_pktmbuf_free(pkts_burst[nb_tx++]);
			nb_free += nb_rx;

			if (unlikely(nb_rx == 0))
				timeout--;
		} while (nb_free != pkt_per_port && timeout != 0);
		printf("free %d (expected %d) mbuf left in port %u\n", nb_free,
		       pkt_per_port, portid);
	}

	if (count == 0)
		return -1;

	printf("%"PRIu64" packet, %"PRIu64" drop, %"PRIu64" idle\n",
	       count, drop, idle);
	printf("Result: %"PRIu64" cycles per packet\n", diff_tsc / count);

	return 0;
}

static rte_atomic64_t start;

static inline int
poll_burst(void *args)
{
#define MAX_IDLE           (10000)
	unsigned lcore_id;
	struct rte_mbuf **pkts_burst;
	uint64_t diff_tsc, cur_tsc;
	uint16_t next[RTE_MAX_ETHPORTS];
	struct lcore_conf *conf;
	uint32_t pkt_per_port = *((uint32_t *)args);
	unsigned i, portid, nb_rx = 0;
	uint64_t total;
	uint64_t timeout = MAX_IDLE;
	int num[RTE_MAX_ETHPORTS];

	lcore_id = rte_lcore_id();
	conf = &lcore_conf[lcore_id];
	if (conf->status != LCORE_USED)
		return 0;

	total = pkt_per_port * conf->nb_ports;
	printf("start to receive total expect %"PRIu64"\n", total);

	pkts_burst = (struct rte_mbuf **)
		rte_calloc_socket("poll_burst",
				  total, sizeof(void *),
				  RTE_CACHE_LINE_SIZE, conf->socketid);
	if (!pkts_burst)
		return -1;

	for (i = 0; i < conf->nb_ports; i++) {
		portid = conf->portlist[i];
		next[portid] = i * pkt_per_port;
		num[portid] = pkt_per_port;
	}

	while (!rte_atomic64_read(&start))
		;

	cur_tsc = rte_rdtsc();
	while (total) {
		for (i = 0; i < conf->nb_ports; i++) {
			portid = conf->portlist[i];
			nb_rx = rte_eth_rx_burst(portid, 0,
					&pkts_burst[next[portid]],
					RTE_MIN(MAX_PKT_BURST, num[portid]));
			if (unlikely(nb_rx == 0)) {
				timeout--;
				if (unlikely(timeout == 0))
					goto timeout;
				continue;
			}
			next[portid] += nb_rx;
			num[portid] -= nb_rx;
			total -= nb_rx;
		}
	}
timeout:
	diff_tsc = rte_rdtsc() - cur_tsc;

	printf("%"PRIu64" packets lost, IDLE %"PRIu64" times\n",
	       total, MAX_IDLE - timeout);
	/* clean up */
	total = pkt_per_port * conf->nb_ports - total;
	for (i = 0; i < total; i++)
		rte_pktmbuf_free(pkts_burst[i]);

	rte_free(pkts_burst);

	if (total > 0)
		return diff_tsc / total;
	else
		return -1;
}

static int
exec_burst(uint32_t flags, int lcore)
{
	unsigned i, portid, nb_tx = 0;
	struct lcore_conf *conf;
	uint32_t pkt_per_port;
	int num, idx = 0;
	int diff_tsc;

	conf = &lcore_conf[lcore];

	pkt_per_port = MAX_TRAFFIC_BURST;
	num = pkt_per_port * conf->nb_ports;

	rte_atomic64_init(&start);

	/* start polling thread, but not actually poll yet */
	rte_eal_remote_launch(poll_burst,
			      (void *)&pkt_per_port, lcore);

	/* Only when polling first */
	if (flags == SC_BURST_POLL_FIRST)
		rte_atomic64_set(&start, 1);

	/* start xmit */
	while (num) {
		nb_tx = RTE_MIN(MAX_PKT_BURST, num);
		for (i = 0; i < conf->nb_ports; i++) {
			portid = conf->portlist[i];
			nb_tx = rte_eth_tx_burst(portid, 0,
					 &tx_burst[idx], nb_tx);
			idx += nb_tx;
			num -= nb_tx;
		}

	}

	sleep(5);

	/* only when polling second  */
	if (flags == SC_BURST_XMIT_FIRST)
		rte_atomic64_set(&start, 1);

	/* wait for polling finished */
	diff_tsc = rte_eal_wait_lcore(lcore);
	if (diff_tsc < 0) {
		printf("exec_burst: Failed to measure cycles per packet\n");
		return -1;
	}

	printf("Result: %d cycles per packet\n", diff_tsc);

	return 0;
}

static int
test_pmd_perf(void)
{
	uint16_t nb_ports, num, nb_lcores, worker_id = (uint16_t)-1;
	uint16_t nb_rxd = MAX_TRAFFIC_BURST;
	uint16_t nb_txd = MAX_TRAFFIC_BURST;
	uint16_t portid;
	uint16_t nb_rx_queue = 1, nb_tx_queue = 1;
	int socketid = -1;
	int ret;

	printf("Start PMD RXTX cycles cost test.\n");

	signal(SIGUSR1, signal_handler);
	signal(SIGUSR2, signal_handler);

	nb_ports = rte_eth_dev_count_avail();
	if (nb_ports < NB_ETHPORTS_USED) {
		printf("At least %u port(s) used for perf. test\n",
		       NB_ETHPORTS_USED);
		return -1;
	}

	nb_lcores = rte_lcore_count();

	memset(lcore_conf, 0, sizeof(lcore_conf));
	init_lcores();

	init_mbufpool(NB_MBUF);

	if (sc_flag == SC_CONTINUOUS) {
		nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
		nb_txd = RTE_TEST_TX_DESC_DEFAULT;
	}
	printf("CONFIG RXD=%d TXD=%d\n", nb_rxd, nb_txd);

	reset_count();
	num = 0;
	RTE_ETH_FOREACH_DEV(portid) {
		if (socketid == -1) {
			socketid = rte_eth_dev_socket_id(portid);
			worker_id = alloc_lcore(socketid);
			if (worker_id == (uint16_t)-1) {
				printf("No avail lcore to run test\n");
				return -1;
			}
			printf("Performance test runs on lcore %u socket %u\n",
			       worker_id, socketid);
		}

		if (socketid != rte_eth_dev_socket_id(portid)) {
			printf("Skip port %d\n", portid);
			continue;
		}

		/* port configure */
		ret = rte_eth_dev_configure(portid, nb_rx_queue,
					    nb_tx_queue, &port_conf);
		if (ret < 0)
			rte_exit(EXIT_FAILURE,
				"Cannot configure device: err=%d, port=%d\n",
				 ret, portid);

		ret = rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
		if (ret < 0)
			rte_exit(EXIT_FAILURE,
				"Cannot get mac address: err=%d, port=%d\n",
				 ret, portid);

		printf("Port %u ", portid);
		print_ethaddr("Address:", &ports_eth_addr[portid]);
		printf("\n");

		/* tx queue setup */
		ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
					     socketid, &tx_conf);
		if (ret < 0)
			rte_exit(EXIT_FAILURE,
				"rte_eth_tx_queue_setup: err=%d, "
				"port=%d\n", ret, portid);

		/* rx queue steup */
		ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
						socketid, &rx_conf,
						mbufpool[socketid]);
		if (ret < 0)
			rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup: err=%d,"
				 "port=%d\n", ret, portid);

		/* Start device */
		stop = 0;
		ret = rte_eth_dev_start(portid);
		if (ret < 0)
			rte_exit(EXIT_FAILURE,
				"rte_eth_dev_start: err=%d, port=%d\n",
				ret, portid);

		/* always eanble promiscuous */
		ret = rte_eth_promiscuous_enable(portid);
		if (ret != 0)
			rte_exit(EXIT_FAILURE,
				 "rte_eth_promiscuous_enable: err=%s, port=%d\n",
				 rte_strerror(-ret), portid);

		lcore_conf[worker_id].portlist[num++] = portid;
		lcore_conf[worker_id].nb_ports++;
	}
	check_all_ports_link_status(nb_ports, RTE_PORT_ALL);

	if (tx_burst == NULL) {
		tx_burst = (struct rte_mbuf **)
			rte_calloc_socket("tx_buff",
					  MAX_TRAFFIC_BURST * nb_ports,
					  sizeof(void *),
					  RTE_CACHE_LINE_SIZE, socketid);
		if (!tx_burst)
			return -1;
	}

	init_traffic(mbufpool[socketid],
		     tx_burst, MAX_TRAFFIC_BURST * nb_ports);

	printf("Generate %d packets @socket %d\n",
	       MAX_TRAFFIC_BURST * nb_ports, socketid);

	if (sc_flag == SC_CONTINUOUS) {
		/* do both rxtx by default */
		if (NULL == do_measure)
			do_measure = measure_rxtx;

		rte_eal_remote_launch(main_loop, NULL, worker_id);

		if (rte_eal_wait_lcore(worker_id) < 0)
			return -1;
	} else if (sc_flag == SC_BURST_POLL_FIRST ||
		   sc_flag == SC_BURST_XMIT_FIRST)
		if (exec_burst(sc_flag, worker_id) < 0)
			return -1;

	/* port tear down */
	RTE_ETH_FOREACH_DEV(portid) {
		if (socketid != rte_eth_dev_socket_id(portid))
			continue;

		ret = rte_eth_dev_stop(portid);
		if (ret != 0)
			printf("rte_eth_dev_stop: err=%s, port=%u\n",
			       rte_strerror(-ret), portid);
	}

	return 0;
}

int
test_set_rxtx_conf(cmdline_fixed_string_t mode)
{
	printf("mode switch to %s\n", mode);

	if (!strcmp(mode, "vector")) {
		/* vector rx, tx */
		tx_conf.tx_rs_thresh = 32;
		tx_conf.tx_free_thresh = 32;
		return 0;
	} else if (!strcmp(mode, "scalar")) {
		/* bulk alloc rx, full-featured tx */
		tx_conf.tx_rs_thresh = 32;
		tx_conf.tx_free_thresh = 32;
		port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CHECKSUM;
		return 0;
	} else if (!strcmp(mode, "hybrid")) {
		/* bulk alloc rx, vector tx
		 * when vec macro not define,
		 * using the same rx/tx as scalar
		 */
		tx_conf.tx_rs_thresh = 32;
		tx_conf.tx_free_thresh = 32;
		port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CHECKSUM;
		return 0;
	} else if (!strcmp(mode, "full")) {
		/* full feature rx,tx pair */
		tx_conf.tx_rs_thresh = 32;
		tx_conf.tx_free_thresh = 32;
		port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
		return 0;
	}

	return -1;
}

int
test_set_rxtx_anchor(cmdline_fixed_string_t type)
{
	printf("type switch to %s\n", type);

	if (!strcmp(type, "rxtx")) {
		do_measure = measure_rxtx;
		return 0;
	} else if (!strcmp(type, "rxonly")) {
		do_measure = measure_rxonly;
		return 0;
	} else if (!strcmp(type, "txonly")) {
		do_measure = measure_txonly;
		return 0;
	}

	return -1;
}

int
test_set_rxtx_sc(cmdline_fixed_string_t type)
{
	printf("stream control switch to %s\n", type);

	if (!strcmp(type, "continuous")) {
		sc_flag = SC_CONTINUOUS;
		return 0;
	} else if (!strcmp(type, "poll_before_xmit")) {
		sc_flag = SC_BURST_POLL_FIRST;
		return 0;
	} else if (!strcmp(type, "poll_after_xmit")) {
		sc_flag = SC_BURST_XMIT_FIRST;
		return 0;
	}

	return -1;
}

REGISTER_TEST_COMMAND(pmd_perf_autotest, test_pmd_perf);
18/12/2020 11:29:03              dut.10.240.183.70: sed -i -e 's/#define MAX_TRAFFIC_BURST              2048/#define MAX_TRAFFIC_BURST              32/' app/test/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: rm -fr /tmp/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: cp app/test/test_pmd_perf.c /tmp/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03          TestUnitTestsLoopback: Test Case test_link_mode Begin
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03                         tester: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i -e 's/lpbk_mode = 1/lpbk_mode = 0/' app/test/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i -e '/check_all_ports_link_status(nb_ports, RTE_PORT_ALL);/a\        sleep(6);' app/test/test_pmd_perf.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i '/RTE_BUILD_SHARED_LIB/d' config/rte_config.h
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i '$a\#define RTE_BUILD_SHARED_LIB 1' config/rte_config.h
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i '/{ RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF) },/a { RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_VF) },' drivers/net/iavf/iavf_ethdev.c
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: sed -i -e '/I40E_DEV_ID_VF/s/0x154C/0x164C/g'  drivers/net/i40e/base/i40e_devids.h
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc
18/12/2020 11:29:03              dut.10.240.183.70: 
18/12/2020 11:29:03              dut.10.240.183.70: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=shared x86_64-native-linuxapp-gcc
18/12/2020 11:29:08              dut.10.240.183.70: The Meson build system
Version: 0.56.0
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.02.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 8.3.1 "gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.30-79
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
Program gen-pmdinfo-cfile.sh found: YES (/root/dpdk/buildtools/gen-pmdinfo-cfile.sh)
Program list-dir-globs.py found: YES (/root/dpdk/buildtools/list-dir-globs.py)
Program check-symbols.sh found: YES (/root/dpdk/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/root/dpdk/buildtools/options-ibverbs-static.sh)
Program binutils-avx512-check.sh found: YES (/root/dpdk/buildtools/binutils-avx512-check.sh)
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES (/usr/bin/cat)
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Run-time dependency libpcap found: NO (tried pkgconfig)
Library pcap found: NO
Compiler for C supports arguments -Wextra: YES 
config/meson.build:231: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: NO 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" : 1 
Fetching value of define "__AVX512BW__" : 1 
Fetching value of define "__AVX512CD__" : 1 
Fetching value of define "__AVX512DQ__" : 1 
Fetching value of define "__AVX512F__" : 1 
Fetching value of define "__AVX512VL__" : 1 
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: YES 0.180
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/common/qat: Defining dependency "common_qat"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pfe, qede, ring, sfc, softnic, tap, thunderx, txgbe, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/pcap:	missing dependency, "libpcap"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "libAArch64crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 992

Option default_library is: shared [default: static]
Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
18/12/2020 11:29:08              dut.10.240.183.70: ninja -C x86_64-native-linuxapp-gcc -j 110
18/12/2020 11:29:52              dut.10.240.183.70: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2476] Compiling C object buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
[2/2476] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[3/2476] Generating rte_kvargs_def with a custom command
[4/2476] Generating rte_kvargs_mingw with a custom command
[5/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[6/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[7/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[8/2476] Generating rte_telemetry_def with a custom command
[9/2476] Generating rte_telemetry_mingw with a custom command
[10/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[11/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[12/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[13/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[14/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[15/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[16/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[17/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[18/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[19/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[20/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[21/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[22/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[23/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[24/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[25/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[26/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[27/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[28/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[29/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[30/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[31/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[32/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[33/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[34/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[35/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[36/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[37/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[38/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[39/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[40/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[41/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[42/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[43/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[44/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[45/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[46/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[47/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[48/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[49/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[50/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[51/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[52/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[53/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[54/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[55/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[56/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[57/2476] Generating rte_eal_mingw with a custom command
[58/2476] Generating rte_ring_mingw with a custom command
[59/2476] Generating rte_rcu_def with a custom command
[60/2476] Generating rte_eal_def with a custom command
[61/2476] Generating rte_ring_def with a custom command
[62/2476] Generating rte_rcu_mingw with a custom command
[63/2476] Generating rte_mempool_def with a custom command
[64/2476] Generating rte_mempool_mingw with a custom command
[65/2476] Generating rte_mbuf_def with a custom command
[66/2476] Generating rte_mbuf_mingw with a custom command
[67/2476] Generating rte_net_def with a custom command
[68/2476] Generating rte_net_mingw with a custom command
[69/2476] Generating rte_meter_def with a custom command
[70/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[71/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[72/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[73/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[74/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[75/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[76/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[77/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[78/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[79/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[80/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[81/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[82/2476] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[83/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[84/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[85/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[86/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[87/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[88/2476] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[89/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[90/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[91/2476] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[92/2476] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[93/2476] Generating rte_meter_mingw with a custom command
[94/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[95/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[96/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[97/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[98/2476] Linking target buildtools/pmdinfogen/pmdinfogen
[99/2476] Linking static target lib/librte_kvargs.a
[100/2476] Generating rte_ethdev_def with a custom command
[101/2476] Generating rte_ethdev_mingw with a custom command
[102/2476] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[103/2476] Generating rte_pci_def with a custom command
[104/2476] Linking static target lib/librte_telemetry.a
[105/2476] Generating rte_pci_mingw with a custom command
[106/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[107/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[108/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[109/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[110/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[111/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[112/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[113/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[114/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[115/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[116/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[117/2476] Generating rte_cmdline_def with a custom command
[118/2476] Generating rte_cmdline_mingw with a custom command
[119/2476] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[120/2476] Generating rte_metrics_def with a custom command
[121/2476] Generating rte_metrics_mingw with a custom command
[122/2476] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[123/2476] Generating rte_hash_def with a custom command
[124/2476] Generating rte_hash_mingw with a custom command
[125/2476] Generating rte_timer_def with a custom command
[126/2476] Generating rte_timer_mingw with a custom command
[127/2476] Generating rte_acl_def with a custom command
[128/2476] Generating rte_acl_mingw with a custom command
[129/2476] Generating rte_bbdev_def with a custom command
[130/2476] Generating rte_bbdev_mingw with a custom command
[131/2476] Generating rte_bitratestats_def with a custom command
[132/2476] Generating rte_bitratestats_mingw with a custom command
[133/2476] Generating rte_cfgfile_def with a custom command
[134/2476] Generating rte_cfgfile_mingw with a custom command
[135/2476] Generating rte_compressdev_mingw with a custom command
[136/2476] Generating rte_compressdev_def with a custom command
[137/2476] Generating rte_table_mingw with a custom command
[138/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[139/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[140/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[141/2476] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[142/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[143/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[144/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[145/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[146/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[147/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[148/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[149/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[150/2476] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[151/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[152/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[153/2476] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[154/2476] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[155/2476] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[156/2476] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[157/2476] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[158/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[159/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[160/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[161/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[162/2476] Generating rte_cryptodev_def with a custom command
[163/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[164/2476] Generating rte_cryptodev_mingw with a custom command
[165/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[166/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[167/2476] Generating rte_distributor_mingw with a custom command
[168/2476] Generating rte_distributor_def with a custom command
[169/2476] Generating rte_flow_classify_def with a custom command
[170/2476] Generating rte_efd_def with a custom command
[171/2476] Generating rte_efd_mingw with a custom command
[172/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[173/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[174/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[175/2476] Generating rte_eventdev_def with a custom command
[176/2476] Linking static target lib/librte_ring.a
[177/2476] Generating rte_eventdev_mingw with a custom command
[178/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[179/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[180/2476] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[181/2476] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[182/2476] Generating rte_gro_def with a custom command
[183/2476] Generating rte_gro_mingw with a custom command
[184/2476] Linking static target lib/librte_meter.a
[185/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[186/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[187/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[188/2476] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[189/2476] Generating rte_gso_def with a custom command
[190/2476] Generating rte_gso_mingw with a custom command
[191/2476] Linking static target lib/librte_pci.a
[192/2476] Generating rte_ip_frag_def with a custom command
[193/2476] Generating rte_ip_frag_mingw with a custom command
[194/2476] Generating rte_jobstats_def with a custom command
[195/2476] Generating rte_jobstats_mingw with a custom command
[196/2476] Generating rte_kni_def with a custom command
[197/2476] Generating rte_kni_mingw with a custom command
[198/2476] Generating rte_latencystats_def with a custom command
[199/2476] Generating rte_latencystats_mingw with a custom command
[200/2476] Linking static target lib/librte_metrics.a
[201/2476] Generating rte_lpm_def with a custom command
[202/2476] Generating rte_lpm_mingw with a custom command
[203/2476] Generating rte_member_def with a custom command
[204/2476] Generating rte_member_mingw with a custom command
[205/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[206/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[207/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[208/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[209/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[210/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[211/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[212/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[213/2476] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[214/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[215/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[216/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[217/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[218/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[219/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[220/2476] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[221/2476] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[222/2476] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[223/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[224/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[225/2476] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[226/2476] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[227/2476] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[228/2476] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[229/2476] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[230/2476] Generating rte_power_def with a custom command
[231/2476] Generating rte_power_mingw with a custom command
[232/2476] Generating rte_pdump_def with a custom command
[233/2476] Linking static target lib/librte_eal.a
[234/2476] Linking static target lib/librte_rcu.a
[235/2476] Linking static target lib/librte_mempool.a
[236/2476] Linking static target lib/librte_mbuf.a
[237/2476] Generating rte_pdump_mingw with a custom command
[238/2476] Linking static target lib/librte_net.a
[239/2476] Generating rte_rawdev_def with a custom command
[240/2476] Generating rte_rawdev_mingw with a custom command
[241/2476] Linking static target lib/librte_cmdline.a
[242/2476] Linking static target lib/librte_timer.a
[243/2476] Generating rte_regexdev_def with a custom command
[244/2476] Generating rte_regexdev_mingw with a custom command
[245/2476] Linking static target lib/librte_bbdev.a
[246/2476] Linking static target lib/librte_bitratestats.a
[247/2476] Linking static target lib/librte_cfgfile.a
[248/2476] Generating rte_rib_def with a custom command
[249/2476] Linking static target lib/librte_compressdev.a
[250/2476] Generating rte_rib_mingw with a custom command
[251/2476] Generating rte_reorder_def with a custom command
[252/2476] Generating rte_reorder_mingw with a custom command
[253/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[254/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[255/2476] Generating rte_sched_def with a custom command
[256/2476] Generating rte_sched_mingw with a custom command
[257/2476] Generating rte_security_def with a custom command
[258/2476] Generating rte_security_mingw with a custom command
[259/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[260/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[261/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[262/2476] Generating rte_stack_def with a custom command
[263/2476] Generating rte_stack_mingw with a custom command
[264/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[265/2476] Generating rte_vhost_def with a custom command
[266/2476] Generating rte_vhost_mingw with a custom command
[267/2476] Generating rte_ipsec_def with a custom command
[268/2476] Generating rte_ipsec_mingw with a custom command
[269/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[270/2476] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[271/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[272/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[273/2476] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[274/2476] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[275/2476] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[276/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[277/2476] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[278/2476] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[279/2476] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[280/2476] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[281/2476] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[282/2476] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[283/2476] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[284/2476] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[285/2476] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[286/2476] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[287/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[288/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[289/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[290/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[291/2476] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[292/2476] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[293/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[294/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[295/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[296/2476] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[297/2476] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[298/2476] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[299/2476] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[300/2476] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8_avx512.c.o
[301/2476] Compiling C object lib/librte_fib.a.p/librte_fib_trie_avx512.c.o
[302/2476] Linking static target lib/librte_cryptodev.a
[303/2476] Generating rte_fib_def with a custom command
[304/2476] Generating rte_fib_mingw with a custom command
[305/2476] Linking static target lib/librte_distributor.a
[306/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[307/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[308/2476] Linking static target lib/librte_gro.a
[309/2476] Linking static target lib/librte_gso.a
[310/2476] Linking target lib/librte_kvargs.so.21.1
[311/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[312/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[313/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[314/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[315/2476] Linking static target lib/librte_ip_frag.a
[316/2476] Linking static target lib/librte_jobstats.a
[317/2476] Linking static target lib/librte_latencystats.a
[318/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[319/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[320/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[321/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[322/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[323/2476] Generating rte_port_def with a custom command
[324/2476] Generating rte_port_mingw with a custom command
[325/2476] Generating rte_table_def with a custom command
[326/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[327/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[328/2476] Linking static target lib/librte_stack.a
[329/2476] Generating rte_pipeline_def with a custom command
[330/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[331/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx2.c.o
[332/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx512.c.o
[333/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[334/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[335/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[336/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[337/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[338/2476] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[339/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[340/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[341/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[342/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[343/2476] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[344/2476] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[345/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[346/2476] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[347/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[348/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[349/2476] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[350/2476] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[351/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[352/2476] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[353/2476] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[354/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[355/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[356/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[357/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[358/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[359/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[360/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[361/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[362/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[363/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[364/2476] Generating rte_pipeline_mingw with a custom command
[365/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[366/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[367/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[368/2476] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[369/2476] Linking static target lib/librte_efd.a
[370/2476] Generating rte_flow_classify_mingw with a custom command
[371/2476] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[372/2476] Linking target lib/librte_telemetry.so.21.1
[373/2476] Linking static target lib/librte_kni.a
[374/2476] Linking static target lib/librte_lpm.a
[375/2476] Linking static target lib/librte_member.a
[376/2476] Linking static target lib/librte_power.a
[377/2476] Linking static target lib/librte_pdump.a
[378/2476] Linking static target lib/librte_rawdev.a
[379/2476] Linking static target lib/librte_regexdev.a
[380/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[381/2476] Linking static target lib/librte_rib.a
[382/2476] Linking static target lib/librte_reorder.a
[383/2476] Linking static target lib/librte_security.a
[384/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[385/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load_elf.c.o
[386/2476] Generating rte_bpf_def with a custom command
[387/2476] Generating rte_bpf_mingw with a custom command
[388/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[389/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[390/2476] Generating rte_graph_def with a custom command
[391/2476] Generating rte_graph_mingw with a custom command
[392/2476] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[393/2476] Generating rte_node_def with a custom command
[394/2476] Generating rte_node_mingw with a custom command
[395/2476] Generating rte_common_cpt_mingw with a custom command
[396/2476] Generating rte_common_cpt_def with a custom command
[397/2476] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[398/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[399/2476] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[400/2476] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[401/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[402/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[403/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[404/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[405/2476] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[406/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[407/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[408/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[409/2476] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[410/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[411/2476] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[412/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[413/2476] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[414/2476] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[415/2476] Generating symbol file lib/librte_kvargs.so.21.1.p/librte_kvargs.so.21.1.symbols
[416/2476] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[417/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[418/2476] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[419/2476] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[420/2476] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[421/2476] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[422/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[423/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[424/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[425/2476] Generating rte_common_dpaax_mingw with a custom command
[426/2476] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[427/2476] Generating rte_common_dpaax_def with a custom command
[428/2476] Linking static target lib/librte_ethdev.a
[429/2476] Linking static target lib/librte_acl.a
[430/2476] Linking static target lib/librte_eventdev.a
[431/2476] Linking static target lib/librte_sched.a
[432/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[433/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[434/2476] Linking static target lib/librte_ipsec.a
[435/2476] Linking static target lib/librte_fib.a
[436/2476] Generating rte_common_iavf_def with a custom command
[437/2476] Generating rte_common_iavf_mingw with a custom command
[438/2476] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[439/2476] Generating rte_common_octeontx_def with a custom command
[440/2476] Generating rte_common_octeontx_mingw with a custom command
[441/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[442/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[443/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[444/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[445/2476] Generating rte_common_octeontx2_mingw with a custom command
[446/2476] Generating rte_common_octeontx2_def with a custom command
[447/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[448/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[449/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[450/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[451/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[452/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[453/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[454/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[455/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[456/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[457/2476] Linking static target lib/librte_flow_classify.a
[458/2476] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[459/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[460/2476] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[461/2476] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[462/2476] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[463/2476] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[464/2476] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[465/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[466/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[467/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[468/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[469/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[470/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[471/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[472/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[473/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[474/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[475/2476] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[476/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[477/2476] Generating symbol file lib/librte_telemetry.so.21.1.p/librte_telemetry.so.21.1.symbols
[478/2476] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[479/2476] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[480/2476] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[481/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[482/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[483/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[484/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[485/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[486/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[487/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[488/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[489/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[490/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[491/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[492/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[493/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[494/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[495/2476] Linking static target lib/librte_table.a
[496/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[497/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[498/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[499/2476] Linking static target lib/librte_bpf.a
[500/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[501/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[502/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[503/2476] Linking static target lib/librte_graph.a
[504/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[505/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[506/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[507/2476] Linking static target drivers/libtmp_rte_common_cpt.a
[508/2476] Linking static target drivers/libtmp_rte_common_dpaax.a
[509/2476] Generating rte_common_sfc_efx_mingw with a custom command
[510/2476] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[511/2476] Generating rte_common_sfc_efx_def with a custom command
[512/2476] Linking static target drivers/libtmp_rte_common_octeontx.a
[513/2476] Generating rte_bus_dpaa_mingw with a custom command
[514/2476] Generating rte_bus_dpaa_def with a custom command
[515/2476] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[516/2476] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[517/2476] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[518/2476] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[519/2476] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[520/2476] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[521/2476] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[522/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[523/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[524/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[525/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[526/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[527/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[528/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[529/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[530/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[531/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[532/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[533/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[534/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[535/2476] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[536/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[537/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[538/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[539/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[540/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[541/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[542/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[543/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[544/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[545/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[546/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[547/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[548/2476] Linking static target lib/librte_hash.a
[549/2476] Linking static target lib/librte_port.a
[550/2476] Linking static target lib/librte_node.a
[551/2476] Linking static target drivers/libtmp_rte_common_iavf.a
[552/2476] Linking static target drivers/libtmp_rte_common_octeontx2.a
[553/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[554/2476] Generating rte_bus_fslmc_mingw with a custom command
[555/2476] Generating rte_bus_fslmc_def with a custom command
[556/2476] Generating rte_bus_ifpga_def with a custom command
[557/2476] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[558/2476] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[559/2476] Generating rte_bus_ifpga_mingw with a custom command
[560/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[561/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[562/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[563/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[564/2476] Generating rte_bus_pci_def with a custom command
[565/2476] Generating rte_bus_pci_mingw with a custom command
[566/2476] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[567/2476] Generating rte_bus_vdev_def with a custom command
[568/2476] Generating rte_bus_vdev_mingw with a custom command
[569/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[570/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[571/2476] Generating rte_bus_vmbus_def with a custom command
[572/2476] Generating rte_bus_vmbus_mingw with a custom command
[573/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[574/2476] Generating rte_common_qat_def with a custom command
[575/2476] Generating rte_common_qat_mingw with a custom command
[576/2476] Generating rte_mempool_bucket_def with a custom command
[577/2476] Generating rte_common_cpt.pmd.c with a custom command
[578/2476] Generating rte_common_dpaax.pmd.c with a custom command
[579/2476] Generating rte_common_octeontx.pmd.c with a custom command
[580/2476] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[581/2476] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[582/2476] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[583/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[584/2476] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[585/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[586/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[587/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[588/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[589/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[590/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[591/2476] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[592/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[593/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[594/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[595/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[596/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[597/2476] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[598/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[599/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[600/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[601/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[602/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[603/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[604/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[605/2476] Generating rte_mempool_bucket_mingw with a custom command
[606/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[607/2476] Generating rte_mempool_dpaa_def with a custom command
[608/2476] Generating rte_mempool_dpaa_mingw with a custom command
[609/2476] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[610/2476] Generating rte_mempool_dpaa2_def with a custom command
[611/2476] Generating rte_mempool_dpaa2_mingw with a custom command
[612/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[613/2476] Generating rte_mempool_octeontx_def with a custom command
[614/2476] Generating rte_mempool_octeontx_mingw with a custom command
[615/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[616/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[617/2476] Generating rte_mempool_octeontx2_def with a custom command
[618/2476] Generating rte_mempool_octeontx2_mingw with a custom command
[619/2476] Generating rte_mempool_ring_def with a custom command
[620/2476] Generating rte_mempool_ring_mingw with a custom command
[621/2476] Generating rte_mempool_stack_def with a custom command
[622/2476] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[623/2476] Generating rte_mempool_stack_mingw with a custom command
[624/2476] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[625/2476] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[626/2476] Generating rte_net_af_packet_def with a custom command
[627/2476] Generating rte_net_af_packet_mingw with a custom command
[628/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[629/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[630/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[631/2476] Generating rte_common_iavf.pmd.c with a custom command
[632/2476] Generating rte_common_octeontx2.pmd.c with a custom command
[633/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[634/2476] Generating rte_net_ark_def with a custom command
[635/2476] Generating rte_net_ark_mingw with a custom command
[636/2476] Linking static target drivers/libtmp_rte_bus_ifpga.a
[637/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[638/2476] Generating rte_net_atlantic_mingw with a custom command
[639/2476] Generating rte_net_atlantic_def with a custom command
[640/2476] Generating rte_net_avp_def with a custom command
[641/2476] Generating rte_net_avp_mingw with a custom command
[642/2476] Generating rte_net_axgbe_def with a custom command
[643/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[644/2476] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[645/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[646/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[647/2476] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[648/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[649/2476] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[650/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[651/2476] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[652/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[653/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[654/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[655/2476] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[656/2476] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[657/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[658/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[659/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[660/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[661/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[662/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[663/2476] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[664/2476] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[665/2476] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[666/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[667/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[668/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[669/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[670/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[671/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[672/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[673/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[674/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[675/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[676/2476] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[677/2476] Compiling C object drivers/librte_common_cpt.so.21.1.p/meson-generated_.._rte_common_cpt.pmd.c.o
[678/2476] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[679/2476] Compiling C object drivers/librte_common_dpaax.so.21.1.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[680/2476] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[681/2476] Compiling C object drivers/librte_common_octeontx.so.21.1.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[682/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[683/2476] Generating rte_net_axgbe_mingw with a custom command
[684/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[685/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[686/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[687/2476] Generating rte_net_bond_mingw with a custom command
[688/2476] Generating rte_net_bond_def with a custom command
[689/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[690/2476] Linking static target drivers/libtmp_rte_bus_pci.a
[691/2476] Linking static target drivers/libtmp_rte_bus_vdev.a
[692/2476] Linking static target drivers/libtmp_rte_bus_vmbus.a
[693/2476] Generating rte_net_bnx2x_def with a custom command
[694/2476] Generating rte_net_bnx2x_mingw with a custom command
[695/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[696/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[697/2476] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[698/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[699/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[700/2476] Linking static target drivers/libtmp_rte_mempool_stack.a
[701/2476] Generating rte_common_sfc_efx.pmd.c with a custom command
[702/2476] Generating rte_crypto_virtio_mingw with a custom command
[703/2476] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[704/2476] Compiling C object drivers/librte_common_iavf.so.21.1.p/meson-generated_.._rte_common_iavf.pmd.c.o
[705/2476] Compiling C object drivers/librte_common_octeontx2.so.21.1.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[706/2476] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[707/2476] Generating rte_crypto_virtio_def with a custom command
[708/2476] Generating rte_bus_ifpga.pmd.c with a custom command
[709/2476] Generating rte_compress_zlib_mingw with a custom command
[710/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[711/2476] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[712/2476] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[713/2476] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[714/2476] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[715/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[716/2476] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[717/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[718/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[719/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[720/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[721/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[722/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[723/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[724/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[725/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[726/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[727/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[728/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[729/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[730/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[731/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[732/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[733/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[734/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[735/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[736/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[737/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[738/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[739/2476] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[740/2476] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[741/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[742/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[743/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[744/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[745/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[746/2476] Linking static target drivers/libtmp_rte_bus_dpaa.a
[747/2476] Linking static target drivers/libtmp_rte_bus_fslmc.a
[748/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[749/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[750/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[751/2476] Linking static target drivers/libtmp_rte_common_qat.a
[752/2476] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[753/2476] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[754/2476] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[755/2476] Linking static target drivers/libtmp_rte_mempool_ring.a
[756/2476] Linking static target drivers/libtmp_rte_net_af_packet.a
[757/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[758/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[759/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[760/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[761/2476] Linking static target drivers/libtmp_rte_net_ark.a
[762/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[763/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[764/2476] Linking static target drivers/librte_common_cpt.a
[765/2476] Linking static target drivers/librte_common_dpaax.a
[766/2476] Linking static target drivers/librte_common_octeontx.a
[767/2476] Generating rte_net_bnxt_mingw with a custom command
[768/2476] Generating rte_bus_pci.pmd.c with a custom command
[769/2476] Generating rte_bus_vdev.pmd.c with a custom command
[770/2476] Generating rte_bus_vmbus.pmd.c with a custom command
[771/2476] Generating rte_net_bnxt_def with a custom command
[772/2476] Generating rte_mempool_dpaa2.pmd.c with a custom command
[773/2476] Generating rte_mempool_stack.pmd.c with a custom command
[774/2476] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[775/2476] Compiling C object drivers/librte_common_sfc_efx.so.21.1.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[776/2476] Linking static target drivers/librte_common_iavf.a
[777/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[778/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[779/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[780/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[781/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[782/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[783/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[784/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[785/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[786/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[787/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[788/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[789/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[790/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[791/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[792/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[793/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[794/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[795/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[796/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[797/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[798/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[799/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[800/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[801/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[802/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[803/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[804/2476] Linking static target drivers/librte_common_octeontx2.a
[805/2476] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[806/2476] Compiling C object drivers/librte_bus_ifpga.so.21.1.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[807/2476] Linking target lib/librte_eal.so.21.1
[808/2476] Generating rte_net_cxgbe_def with a custom command
[809/2476] Linking static target drivers/libtmp_rte_mempool_bucket.a
[810/2476] Linking static target drivers/libtmp_rte_net_atlantic.a
[811/2476] Linking static target drivers/libtmp_rte_net_avp.a
[812/2476] Generating rte_net_cxgbe_mingw with a custom command
[813/2476] Linking static target drivers/libtmp_rte_net_axgbe.a
[814/2476] Generating rte_net_dpaa_def with a custom command
[815/2476] Generating rte_net_dpaa_mingw with a custom command
[816/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[817/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[818/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[819/2476] Linking static target drivers/libtmp_rte_crypto_virtio.a
[820/2476] Generating rte_net_dpaa2_def with a custom command
[821/2476] Linking static target drivers/libtmp_rte_compress_zlib.a
[822/2476] Generating rte_net_dpaa2_mingw with a custom command
[823/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[824/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[825/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[826/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[827/2476] Generating rte_bus_dpaa.pmd.c with a custom command
[828/2476] Generating rte_bus_fslmc.pmd.c with a custom command
[829/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[830/2476] Generating rte_common_qat.pmd.c with a custom command
[831/2476] Generating rte_mempool_dpaa.pmd.c with a custom command
[832/2476] Generating rte_mempool_octeontx.pmd.c with a custom command
[833/2476] Generating rte_mempool_octeontx2.pmd.c with a custom command
[834/2476] Generating rte_mempool_ring.pmd.c with a custom command
[835/2476] Generating rte_net_af_packet.pmd.c with a custom command
[836/2476] Generating rte_net_ark.pmd.c with a custom command
[837/2476] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[838/2476] Compiling C object drivers/librte_bus_pci.so.21.1.p/meson-generated_.._rte_bus_pci.pmd.c.o
[839/2476] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[840/2476] Compiling C object drivers/librte_bus_vdev.so.21.1.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[841/2476] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[842/2476] Compiling C object drivers/librte_bus_vmbus.so.21.1.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[843/2476] Linking static target drivers/librte_common_sfc_efx.a
[844/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[845/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[846/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[847/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[848/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[849/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[850/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[851/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[852/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[853/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[854/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[855/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[856/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[857/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[858/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[859/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[860/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[861/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[862/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[863/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[864/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[865/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[866/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[867/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[868/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[869/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[870/2476] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[871/2476] Compiling C object drivers/librte_mempool_dpaa2.so.21.1.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[872/2476] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[873/2476] Compiling C object drivers/librte_mempool_stack.so.21.1.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[874/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[875/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[876/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[877/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[878/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[879/2476] Generating rte_net_e1000_def with a custom command
[880/2476] Generating rte_net_e1000_mingw with a custom command
[881/2476] Generating rte_net_ena_def with a custom command
[882/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[883/2476] Generating rte_net_ena_mingw with a custom command
[884/2476] Generating rte_net_enetc_def with a custom command
[885/2476] Generating rte_net_enetc_mingw with a custom command
[886/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[887/2476] Linking static target drivers/librte_bus_ifpga.a
[888/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[889/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[890/2476] Generating rte_mempool_bucket.pmd.c with a custom command
[891/2476] Generating rte_net_atlantic.pmd.c with a custom command
[892/2476] Generating rte_net_avp.pmd.c with a custom command
[893/2476] Generating rte_net_axgbe.pmd.c with a custom command
[894/2476] Generating rte_crypto_virtio.pmd.c with a custom command
[895/2476] Generating rte_net_enic_mingw with a custom command
[896/2476] Generating rte_net_enic_def with a custom command
[897/2476] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[898/2476] Compiling C object drivers/librte_bus_dpaa.so.21.1.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[899/2476] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[900/2476] Compiling C object drivers/librte_bus_fslmc.so.21.1.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[901/2476] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[902/2476] Compiling C object drivers/librte_common_qat.so.21.1.p/meson-generated_.._rte_common_qat.pmd.c.o
[903/2476] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[904/2476] Compiling C object drivers/librte_mempool_dpaa.so.21.1.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[905/2476] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[906/2476] Compiling C object drivers/librte_mempool_octeontx.so.21.1.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[907/2476] Linking static target drivers/librte_bus_pci.a
[908/2476] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[909/2476] Linking static target drivers/librte_bus_vdev.a
[910/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[911/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[912/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[913/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[914/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[915/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[916/2476] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[917/2476] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[918/2476] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[919/2476] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[920/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[921/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[922/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[923/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[924/2476] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[925/2476] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[926/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[927/2476] Generating symbol file lib/librte_eal.so.21.1.p/librte_eal.so.21.1.symbols
[928/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[929/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_clsf.c.o
[930/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[931/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[932/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[933/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[934/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[935/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[936/2476] Compiling C object drivers/librte_mempool_octeontx2.so.21.1.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[937/2476] Linking static target drivers/librte_bus_vmbus.a
[938/2476] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[939/2476] Compiling C object drivers/librte_mempool_ring.so.21.1.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[940/2476] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[941/2476] Compiling C object drivers/librte_net_af_packet.so.21.1.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[942/2476] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[943/2476] Compiling C object drivers/librte_net_ark.so.21.1.p/meson-generated_.._rte_net_ark.pmd.c.o
[944/2476] Linking static target drivers/libtmp_rte_net_bond.a
[945/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[946/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[947/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[948/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[949/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[950/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[951/2476] Generating rte_net_failsafe_def with a custom command
[952/2476] Generating rte_net_failsafe_mingw with a custom command
[953/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[954/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[955/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[956/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[957/2476] Generating rte_net_fm10k_def with a custom command
[958/2476] Generating rte_net_fm10k_mingw with a custom command
[959/2476] Linking static target drivers/librte_mempool_dpaa2.a
[960/2476] Linking static target drivers/librte_mempool_stack.a
[961/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[962/2476] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[963/2476] Compiling C object drivers/librte_mempool_bucket.so.21.1.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[964/2476] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[965/2476] Compiling C object drivers/librte_net_atlantic.so.21.1.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[966/2476] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[967/2476] Compiling C object drivers/librte_net_avp.so.21.1.p/meson-generated_.._rte_net_avp.pmd.c.o
[968/2476] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[969/2476] Linking static target drivers/librte_bus_dpaa.a
[970/2476] Compiling C object drivers/librte_net_axgbe.so.21.1.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[971/2476] Linking static target drivers/librte_bus_fslmc.a
[972/2476] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[973/2476] Linking static target drivers/librte_common_qat.a
[974/2476] Compiling C object drivers/librte_crypto_virtio.so.21.1.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[975/2476] Linking static target drivers/librte_mempool_dpaa.a
[976/2476] Linking static target drivers/librte_mempool_octeontx2.a
[977/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[978/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[979/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[980/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[981/2476] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[982/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[983/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[984/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[985/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[986/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[987/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[988/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[989/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[990/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[991/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[992/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[993/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[994/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[995/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[996/2476] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[997/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[998/2476] Linking static target drivers/librte_mempool_octeontx.a
[999/2476] Generating rte_net_i40e_def with a custom command
[1000/2476] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[1001/2476] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[1002/2476] Linking static target drivers/libtmp_rte_net_bnxt.a
[1003/2476] Generating rte_net_i40e_mingw with a custom command
[1004/2476] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1005/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1006/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1007/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1008/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1009/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1010/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1011/2476] Linking static target drivers/net/e1000/base/libe1000_base.a
[1012/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1013/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1014/2476] Linking static target drivers/libtmp_rte_net_enetc.a
[1015/2476] Linking target lib/librte_ring.so.21.1
[1016/2476] Linking target lib/librte_meter.so.21.1
[1017/2476] Linking target lib/librte_pci.so.21.1
[1018/2476] Linking target lib/librte_metrics.so.21.1
[1019/2476] Linking target lib/librte_timer.so.21.1
[1020/2476] Linking target lib/librte_acl.so.21.1
[1021/2476] Linking target lib/librte_cfgfile.so.21.1
[1022/2476] Linking target lib/librte_jobstats.so.21.1
[1023/2476] Linking target lib/librte_rawdev.so.21.1
[1024/2476] Linking target lib/librte_stack.so.21.1
[1025/2476] Linking target lib/librte_graph.so.21.1
[1026/2476] Linking target drivers/librte_common_dpaax.so.21.1
[1027/2476] Linking target drivers/librte_common_iavf.so.21.1
[1028/2476] Linking target drivers/librte_common_octeontx.so.21.1
[1029/2476] Linking static target drivers/librte_mempool_ring.a
[1030/2476] Linking static target drivers/librte_net_af_packet.a
[1031/2476] Linking static target drivers/librte_net_ark.a
[1032/2476] Generating rte_net_bond.pmd.c with a custom command
[1033/2476] Generating rte_net_hinic_def with a custom command
[1034/2476] Generating rte_net_hinic_mingw with a custom command
[1035/2476] Linking static target drivers/librte_mempool_bucket.a
[1036/2476] Linking static target drivers/librte_net_atlantic.a
[1037/2476] Linking static target drivers/librte_net_avp.a
[1038/2476] Linking static target drivers/librte_net_axgbe.a
[1039/2476] Linking static target drivers/librte_crypto_virtio.a
[1040/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1041/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1042/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1043/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1044/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1045/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1046/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1047/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1048/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1049/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1050/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1051/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1052/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1053/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1054/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1055/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1056/2476] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[1057/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1058/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1059/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1060/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1061/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1062/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1063/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1064/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1065/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1066/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1067/2476] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1068/2476] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[1069/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1070/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1071/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1072/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1073/2476] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[1074/2476] Generating rte_net_hns3_def with a custom command
[1075/2476] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1076/2476] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[1077/2476] Generating rte_net_hns3_mingw with a custom command
[1078/2476] Linking static target drivers/libtmp_rte_net_e1000.a
[1079/2476] Linking static target drivers/libtmp_rte_net_ena.a
[1080/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1081/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1082/2476] Linking static target drivers/libtmp_rte_net_enic.a
[1083/2476] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1084/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1085/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1086/2476] Generating rte_net_iavf_def with a custom command
[1087/2476] Generating rte_net_iavf_mingw with a custom command
[1088/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1089/2476] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1090/2476] Linking target drivers/librte_bus_vdev.so.21.1
[1091/2476] Generating rte_net_cxgbe.pmd.c with a custom command
[1092/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1093/2476] Generating rte_net_enetc.pmd.c with a custom command
[1094/2476] Compiling C object drivers/librte_net_bond.so.21.1.p/meson-generated_.._rte_net_bond.pmd.c.o
[1095/2476] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1096/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1097/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1098/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1099/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1100/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1101/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1102/2476] Generating rte_net_bnxt.pmd.c with a custom command
[1103/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1104/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1105/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1106/2476] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1107/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1108/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1109/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1110/2476] Generating symbol file lib/librte_ring.so.21.1.p/librte_ring.so.21.1.symbols
[1111/2476] Generating symbol file lib/librte_meter.so.21.1.p/librte_meter.so.21.1.symbols
[1112/2476] Generating symbol file lib/librte_pci.so.21.1.p/librte_pci.so.21.1.symbols
[1113/2476] Generating symbol file lib/librte_metrics.so.21.1.p/librte_metrics.so.21.1.symbols
[1114/2476] Generating symbol file lib/librte_timer.so.21.1.p/librte_timer.so.21.1.symbols
[1115/2476] Generating symbol file lib/librte_acl.so.21.1.p/librte_acl.so.21.1.symbols
[1116/2476] Generating symbol file lib/librte_cfgfile.so.21.1.p/librte_cfgfile.so.21.1.symbols
[1117/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1118/2476] Generating symbol file lib/librte_rawdev.so.21.1.p/librte_rawdev.so.21.1.symbols
[1119/2476] Generating symbol file lib/librte_stack.so.21.1.p/librte_stack.so.21.1.symbols
[1120/2476] Generating symbol file lib/librte_graph.so.21.1.p/librte_graph.so.21.1.symbols
[1121/2476] Generating symbol file drivers/librte_common_dpaax.so.21.1.p/librte_common_dpaax.so.21.1.symbols
[1122/2476] Generating symbol file drivers/librte_common_iavf.so.21.1.p/librte_common_iavf.so.21.1.symbols
[1123/2476] Generating symbol file drivers/librte_common_octeontx.so.21.1.p/librte_common_octeontx.so.21.1.symbols
[1124/2476] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1125/2476] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[1126/2476] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[1127/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1128/2476] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[1129/2476] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1130/2476] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1131/2476] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1132/2476] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1133/2476] Linking static target drivers/libtmp_rte_net_dpaa.a
[1134/2476] Linking static target drivers/libtmp_rte_net_failsafe.a
[1135/2476] Linking static target drivers/libtmp_rte_net_fm10k.a
[1136/2476] Linking static target drivers/net/i40e/base/libi40e_base.a
[1137/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1138/2476] Generating rte_net_ice_def with a custom command
[1139/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1140/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1141/2476] Generating rte_net_ice_mingw with a custom command
[1142/2476] Linking static target drivers/net/hinic/base/libhinic_base.a
[1143/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1144/2476] Linking target drivers/librte_bus_vmbus.so.21.1
[1145/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1146/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1147/2476] Linking static target drivers/libtmp_rte_net_hinic.a
[1148/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1149/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1150/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1151/2476] Generating rte_net_igc_def with a custom command
[1152/2476] Generating rte_net_igc_mingw with a custom command
[1153/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1154/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1155/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1156/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1157/2476] Generating rte_net_e1000.pmd.c with a custom command
[1158/2476] Generating rte_net_ena.pmd.c with a custom command
[1159/2476] Generating rte_net_enic.pmd.c with a custom command
[1160/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1161/2476] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1162/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1163/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1164/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1165/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1166/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1167/2476] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[1168/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[1169/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1170/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1171/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1172/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1173/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1174/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1175/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1176/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1177/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1178/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1179/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1180/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1181/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1182/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1183/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1184/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1185/2476] Generating symbol file drivers/librte_bus_vdev.so.21.1.p/librte_bus_vdev.so.21.1.symbols
[1186/2476] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1187/2476] Compiling C object drivers/librte_net_cxgbe.so.21.1.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1188/2476] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1189/2476] Compiling C object drivers/librte_net_enetc.so.21.1.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1190/2476] Linking static target drivers/librte_net_bond.a
[1191/2476] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1192/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1193/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1194/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1195/2476] Compiling C object drivers/librte_net_bnxt.so.21.1.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1196/2476] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1197/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1198/2476] Linking static target drivers/net/ice/libice_avx512_lib.a
[1199/2476] Generating rte_net_ixgbe_mingw with a custom command
[1200/2476] Generating rte_net_ixgbe_def with a custom command
[1201/2476] Linking target lib/librte_mempool.so.21.1
[1202/2476] Linking target lib/librte_rcu.so.21.1
[1203/2476] Linking target drivers/librte_bus_pci.so.21.1
[1204/2476] Generating rte_net_kni_mingw with a custom command
[1205/2476] Linking target lib/librte_power.so.21.1
[1206/2476] Generating rte_net_kni_def with a custom command
[1207/2476] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1208/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1209/2476] Linking target drivers/librte_bus_ifpga.so.21.1
[1210/2476] Generating rte_net_liquidio_mingw with a custom command
[1211/2476] Generating rte_net_liquidio_def with a custom command
[1212/2476] Generating rte_net_memif_def with a custom command
[1213/2476] Generating rte_net_memif_mingw with a custom command
[1214/2476] Generating rte_net_bnx2x.pmd.c with a custom command
[1215/2476] Generating rte_net_dpaa.pmd.c with a custom command
[1216/2476] Generating rte_net_failsafe.pmd.c with a custom command
[1217/2476] Generating rte_net_fm10k.pmd.c with a custom command
[1218/2476] Generating rte_net_netvsc_def with a custom command
[1219/2476] Generating rte_net_netvsc_mingw with a custom command
[1220/2476] Generating rte_net_hinic.pmd.c with a custom command
[1221/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1222/2476] Generating rte_net_nfp_def with a custom command
[1223/2476] Generating rte_net_nfp_mingw with a custom command
[1224/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1225/2476] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1226/2476] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[1227/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1228/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1229/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1230/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1231/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1232/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1233/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1234/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1235/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1236/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1237/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1238/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1239/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1240/2476] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1241/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1242/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1243/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1244/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1245/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1246/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1247/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1248/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1249/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1250/2476] Generating symbol file drivers/librte_bus_vmbus.so.21.1.p/librte_bus_vmbus.so.21.1.symbols
[1251/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1252/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1253/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1254/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1255/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1256/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1257/2476] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1258/2476] Compiling C object drivers/librte_net_e1000.so.21.1.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1259/2476] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1260/2476] Compiling C object drivers/librte_net_ena.so.21.1.p/meson-generated_.._rte_net_ena.pmd.c.o
[1261/2476] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1262/2476] Compiling C object drivers/librte_net_enic.so.21.1.p/meson-generated_.._rte_net_enic.pmd.c.o
[1263/2476] Linking static target drivers/libtmp_rte_net_hns3.a
[1264/2476] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1265/2476] Linking static target drivers/libtmp_rte_net_iavf.a
[1266/2476] Generating rte_net_null_def with a custom command
[1267/2476] Generating rte_net_null_mingw with a custom command
[1268/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1269/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1270/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1271/2476] Linking static target drivers/net/igc/base/libigc_base.a
[1272/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1273/2476] Generating rte_net_octeontx_def with a custom command
[1274/2476] Generating rte_net_octeontx_mingw with a custom command
[1275/2476] Linking static target drivers/librte_net_cxgbe.a
[1276/2476] Linking static target drivers/librte_net_enetc.a
[1277/2476] Generating rte_net_dpaa2.pmd.c with a custom command
[1278/2476] Linking static target drivers/librte_net_bnxt.a
[1279/2476] Linking static target drivers/libtmp_rte_net_kni.a
[1280/2476] Generating rte_net_octeontx2_mingw with a custom command
[1281/2476] Generating rte_net_octeontx2_def with a custom command
[1282/2476] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1283/2476] Compiling C object drivers/librte_net_bnx2x.so.21.1.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1284/2476] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1285/2476] Compiling C object drivers/librte_net_dpaa.so.21.1.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1286/2476] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1287/2476] Compiling C object drivers/librte_net_failsafe.so.21.1.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1288/2476] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1289/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1290/2476] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1291/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1292/2476] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1293/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1294/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1295/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1296/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1297/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1298/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1299/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1300/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1301/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1302/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1303/2476] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1304/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1305/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1306/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1307/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1308/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1309/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1310/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1311/2476] Generating symbol file lib/librte_mempool.so.21.1.p/librte_mempool.so.21.1.symbols
[1312/2476] Generating symbol file lib/librte_rcu.so.21.1.p/librte_rcu.so.21.1.symbols
[1313/2476] Generating symbol file drivers/librte_bus_pci.so.21.1.p/librte_bus_pci.so.21.1.symbols
[1314/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1315/2476] Generating symbol file lib/librte_power.so.21.1.p/librte_power.so.21.1.symbols
[1316/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1317/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1318/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1319/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1320/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1321/2476] Compiling C object drivers/librte_net_fm10k.so.21.1.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1322/2476] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1323/2476] Compiling C object drivers/librte_net_hinic.so.21.1.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1324/2476] Linking static target drivers/libtmp_rte_net_i40e.a
[1325/2476] Generating rte_net_pfe_def with a custom command
[1326/2476] Generating rte_net_pfe_mingw with a custom command
[1327/2476] Linking static target drivers/net/ice/base/libice_base.a
[1328/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1329/2476] Linking static target drivers/libtmp_rte_net_ice.a
[1330/2476] Linking static target drivers/libtmp_rte_net_igc.a
[1331/2476] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1332/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1333/2476] Linking static target drivers/libtmp_rte_net_liquidio.a
[1334/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1335/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1336/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1337/2476] Generating rte_net_qede_def with a custom command
[1338/2476] Generating rte_net_qede_mingw with a custom command
[1339/2476] Generating rte_net_ring_def with a custom command
[1340/2476] Linking static target drivers/librte_net_e1000.a
[1341/2476] Generating rte_net_ring_mingw with a custom command
[1342/2476] Linking static target drivers/librte_net_ena.a
[1343/2476] Linking static target drivers/librte_net_enic.a
[1344/2476] Generating rte_net_hns3.pmd.c with a custom command
[1345/2476] Generating rte_net_iavf.pmd.c with a custom command
[1346/2476] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1347/2476] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1348/2476] Compiling C object drivers/librte_net_dpaa2.so.21.1.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1349/2476] Generating rte_net_kni.pmd.c with a custom command
[1350/2476] Linking static target drivers/librte_net_bnx2x.a
[1351/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1352/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1353/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1354/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1355/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1356/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1357/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1358/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1359/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1360/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1361/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1362/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1363/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1364/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1365/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1366/2476] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1367/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1368/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1369/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1370/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1371/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1372/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1373/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1374/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1375/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1376/2476] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1377/2476] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1378/2476] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1379/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1380/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1381/2476] Linking static target drivers/librte_net_dpaa.a
[1382/2476] Linking static target drivers/librte_net_failsafe.a
[1383/2476] Linking static target drivers/librte_net_fm10k.a
[1384/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1385/2476] Linking static target drivers/libtmp_rte_net_memif.a
[1386/2476] Linking static target drivers/libtmp_rte_net_netvsc.a
[1387/2476] Linking static target drivers/libtmp_rte_net_null.a
[1388/2476] Linking static target drivers/libtmp_rte_net_octeontx.a
[1389/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1390/2476] Generating rte_net_sfc_def with a custom command
[1391/2476] Generating rte_net_sfc_mingw with a custom command
[1392/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1393/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1394/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1395/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1396/2476] Linking target lib/librte_mbuf.so.21.1
[1397/2476] Linking target lib/librte_hash.so.21.1
[1398/2476] Linking target lib/librte_rib.so.21.1
[1399/2476] Linking target drivers/librte_mempool_bucket.so.21.1
[1400/2476] Linking target drivers/librte_mempool_ring.so.21.1
[1401/2476] Linking target drivers/librte_mempool_stack.so.21.1
[1402/2476] Linking static target drivers/libtmp_rte_net_pfe.a
[1403/2476] Linking static target drivers/librte_net_hinic.a
[1404/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1405/2476] Generating rte_net_i40e.pmd.c with a custom command
[1406/2476] Generating rte_net_softnic_mingw with a custom command
[1407/2476] Generating rte_net_softnic_def with a custom command
[1408/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1409/2476] Generating rte_net_ice.pmd.c with a custom command
[1410/2476] Generating rte_net_igc.pmd.c with a custom command
[1411/2476] Generating rte_net_liquidio.pmd.c with a custom command
[1412/2476] Generating rte_net_tap_def with a custom command
[1413/2476] Generating rte_net_tap_mingw with a custom command
[1414/2476] Compiling C object drivers/librte_net_hns3.so.21.1.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1415/2476] Linking static target drivers/librte_net_dpaa2.a
[1416/2476] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1417/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1418/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1419/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1420/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1421/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1422/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1423/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1424/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1425/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1426/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1427/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1428/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1429/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1430/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1431/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1432/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1433/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1434/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1435/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1436/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1437/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1438/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1439/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1440/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1441/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1442/2476] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1443/2476] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1444/2476] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1445/2476] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1446/2476] Compiling C object drivers/librte_net_iavf.so.21.1.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1447/2476] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1448/2476] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1449/2476] Compiling C object drivers/librte_net_kni.so.21.1.p/meson-generated_.._rte_net_kni.pmd.c.o
[1450/2476] Linking static target drivers/libtmp_rte_net_nfp.a
[1451/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1452/2476] Generating rte_net_thunderx_def with a custom command
[1453/2476] Generating rte_net_thunderx_mingw with a custom command
[1454/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1455/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1456/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1457/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1458/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1459/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1460/2476] Linking static target drivers/libtmp_rte_net_ring.a
[1461/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1462/2476] Generating rte_net_txgbe_def with a custom command
[1463/2476] Generating rte_net_txgbe_mingw with a custom command
[1464/2476] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1465/2476] Generating rte_net_vdev_netvsc_def with a custom command
[1466/2476] Generating rte_net_vdev_netvsc_mingw with a custom command
[1467/2476] Generating rte_net_vhost_def with a custom command
[1468/2476] Generating rte_net_vhost_mingw with a custom command
[1469/2476] Generating rte_net_memif.pmd.c with a custom command
[1470/2476] Generating rte_net_netvsc.pmd.c with a custom command
[1471/2476] Generating rte_net_null.pmd.c with a custom command
[1472/2476] Generating rte_net_octeontx.pmd.c with a custom command
[1473/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1474/2476] Generating rte_net_pfe.pmd.c with a custom command
[1475/2476] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1476/2476] Compiling C object drivers/librte_net_i40e.so.21.1.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1477/2476] Generating rte_net_virtio_mingw with a custom command
[1478/2476] Generating rte_net_virtio_def with a custom command
[1479/2476] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1480/2476] Compiling C object drivers/librte_net_ice.so.21.1.p/meson-generated_.._rte_net_ice.pmd.c.o
[1481/2476] Compiling C object drivers/librte_net_igc.so.21.1.p/meson-generated_.._rte_net_igc.pmd.c.o
[1482/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[1483/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1484/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1485/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1486/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1487/2476] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1488/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1489/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1490/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1491/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1492/2476] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1493/2476] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1494/2476] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1495/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1496/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1497/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1498/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1499/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1500/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1501/2476] Generating symbol file lib/librte_mbuf.so.21.1.p/librte_mbuf.so.21.1.symbols
[1502/2476] Generating symbol file lib/librte_hash.so.21.1.p/librte_hash.so.21.1.symbols
[1503/2476] Generating symbol file lib/librte_rib.so.21.1.p/librte_rib.so.21.1.symbols
[1504/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1505/2476] Generating symbol file drivers/librte_mempool_ring.so.21.1.p/librte_mempool_ring.so.21.1.symbols
[1506/2476] Generating symbol file drivers/librte_mempool_stack.so.21.1.p/librte_mempool_stack.so.21.1.symbols
[1507/2476] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1508/2476] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1509/2476] Compiling C object drivers/librte_net_liquidio.so.21.1.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1510/2476] Linking target drivers/librte_common_sfc_efx.so.21.1
[1511/2476] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1512/2476] Generating rte_net_vmxnet3_mingw with a custom command
[1513/2476] Generating rte_net_vmxnet3_def with a custom command
[1514/2476] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1515/2476] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1516/2476] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1517/2476] Generating rte_raw_dpaa2_qdma_def with a custom command
[1518/2476] Linking static target drivers/libtmp_rte_net_sfc.a
[1519/2476] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1520/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1521/2476] Generating rte_raw_ioat_def with a custom command
[1522/2476] Generating rte_raw_ioat_mingw with a custom command
[1523/2476] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1524/2476] Generating rte_raw_ntb_def with a custom command
[1525/2476] Generating rte_raw_ntb_mingw with a custom command
[1526/2476] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1527/2476] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1528/2476] Linking static target drivers/librte_net_hns3.a
[1529/2476] Linking static target drivers/librte_net_iavf.a
[1530/2476] Linking static target drivers/librte_net_kni.a
[1531/2476] Generating rte_raw_octeontx2_dma_def with a custom command
[1532/2476] Generating rte_net_nfp.pmd.c with a custom command
[1533/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1534/2476] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1535/2476] Generating rte_raw_octeontx2_ep_def with a custom command
[1536/2476] Generating rte_raw_skeleton_mingw with a custom command
[1537/2476] Generating rte_raw_skeleton_def with a custom command
[1538/2476] Generating rte_net_ring.pmd.c with a custom command
[1539/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1540/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1541/2476] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1542/2476] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1543/2476] Compiling C object drivers/librte_net_memif.so.21.1.p/meson-generated_.._rte_net_memif.pmd.c.o
[1544/2476] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1545/2476] Compiling C object drivers/librte_net_netvsc.so.21.1.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1546/2476] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1547/2476] Compiling C object drivers/librte_net_null.so.21.1.p/meson-generated_.._rte_net_null.pmd.c.o
[1548/2476] Linking static target drivers/librte_net_i40e.a
[1549/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1550/2476] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1551/2476] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed_avx.c.o
[1552/2476] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1553/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1554/2476] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1555/2476] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1556/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1557/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1558/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1559/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1560/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1561/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1562/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1563/2476] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1564/2476] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1565/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1566/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1567/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1568/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1569/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1570/2476] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1571/2476] Compiling C object drivers/librte_net_octeontx.so.21.1.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1572/2476] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1573/2476] Linking static target drivers/librte_net_ice.a
[1574/2476] Compiling C object drivers/librte_net_pfe.so.21.1.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1575/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1576/2476] Linking static target lib/librte_vhost.a
[1577/2476] Linking static target drivers/net/qede/base/libqede_base.a
[1578/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1579/2476] Generating rte_crypto_bcmfs_mingw with a custom command
[1580/2476] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1581/2476] Generating rte_crypto_bcmfs_def with a custom command
[1582/2476] Generating rte_crypto_caam_jr_mingw with a custom command
[1583/2476] Generating rte_crypto_caam_jr_def with a custom command
[1584/2476] Generating rte_crypto_dpaa_sec_def with a custom command
[1585/2476] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1586/2476] Linking target lib/librte_compressdev.so.21.1
[1587/2476] Linking target lib/librte_net.so.21.1
[1588/2476] Linking target lib/librte_bbdev.so.21.1
[1589/2476] Linking target lib/librte_cryptodev.so.21.1
[1590/2476] Linking target lib/librte_distributor.so.21.1
[1591/2476] Linking target lib/librte_efd.so.21.1
[1592/2476] Linking target lib/librte_lpm.so.21.1
[1593/2476] Linking target lib/librte_member.so.21.1
[1594/2476] Linking target lib/librte_regexdev.so.21.1
[1595/2476] Linking target lib/librte_reorder.so.21.1
[1596/2476] Linking target lib/librte_sched.so.21.1
[1597/2476] Linking target lib/librte_fib.so.21.1
[1598/2476] Linking target drivers/librte_mempool_octeontx.so.21.1
[1599/2476] Linking static target drivers/librte_net_igc.a
[1600/2476] Generating rte_net_ixgbe.pmd.c with a custom command
[1601/2476] Linking static target drivers/librte_net_liquidio.a
[1602/2476] Generating rte_net_sfc.pmd.c with a custom command
[1603/2476] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1604/2476] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1605/2476] Generating rte_crypto_dpaa2_sec_def with a custom command
[1606/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1607/2476] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1608/2476] Compiling C object drivers/librte_net_nfp.so.21.1.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1609/2476] Generating rte_crypto_nitrox_mingw with a custom command
[1610/2476] Generating rte_crypto_nitrox_def with a custom command
[1611/2476] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1612/2476] Compiling C object drivers/librte_net_ring.so.21.1.p/meson-generated_.._rte_net_ring.pmd.c.o
[1613/2476] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1614/2476] Linking static target drivers/librte_net_memif.a
[1615/2476] Linking static target drivers/librte_net_netvsc.a
[1616/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1617/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1618/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1619/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1620/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1621/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1622/2476] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[1623/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1624/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1625/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1626/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1627/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1628/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1629/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1630/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1631/2476] Generating symbol file drivers/librte_common_sfc_efx.so.21.1.p/librte_common_sfc_efx.so.21.1.symbols
[1632/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1633/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1634/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1635/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[1636/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[1637/2476] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1638/2476] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1639/2476] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1640/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[1641/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1642/2476] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1643/2476] Generating rte_crypto_null_mingw with a custom command
[1644/2476] Generating rte_crypto_null_def with a custom command
[1645/2476] Linking static target drivers/librte_net_null.a
[1646/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[1647/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[1648/2476] Linking static target drivers/libtmp_rte_net_vhost.a
[1649/2476] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1650/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[1651/2476] Generating rte_crypto_octeontx_mingw with a custom command
[1652/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1653/2476] Generating rte_crypto_octeontx_def with a custom command
[1654/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1655/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1656/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1657/2476] Generating rte_crypto_octeontx2_mingw with a custom command
[1658/2476] Generating rte_crypto_octeontx2_def with a custom command
[1659/2476] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1660/2476] Linking static target drivers/librte_net_octeontx.a
[1661/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1662/2476] Linking static target drivers/librte_net_pfe.a
[1663/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1664/2476] Generating rte_crypto_scheduler_mingw with a custom command
[1665/2476] Generating rte_crypto_scheduler_def with a custom command
[1666/2476] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1667/2476] Generating rte_compress_octeontx_mingw with a custom command
[1668/2476] Generating rte_compress_octeontx_def with a custom command
[1669/2476] Generating rte_compress_zlib.pmd.c with a custom command
[1670/2476] Generating rte_compress_zlib_def with a custom command
[1671/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1672/2476] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1673/2476] Compiling C object drivers/librte_net_ixgbe.so.21.1.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1674/2476] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1675/2476] Compiling C object drivers/librte_net_sfc.so.21.1.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1676/2476] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1677/2476] Linking static target drivers/librte_net_nfp.a
[1678/2476] Generating rte_regex_octeontx2_def with a custom command
[1679/2476] Linking static target drivers/librte_net_ring.a
[1680/2476] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1681/2476] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1682/2476] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1683/2476] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1684/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1685/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1686/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1687/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1688/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1689/2476] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1690/2476] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1691/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1692/2476] Generating symbol file lib/librte_compressdev.so.21.1.p/librte_compressdev.so.21.1.symbols
[1693/2476] Generating symbol file lib/librte_net.so.21.1.p/librte_net.so.21.1.symbols
[1694/2476] Generating symbol file lib/librte_bbdev.so.21.1.p/librte_bbdev.so.21.1.symbols
[1695/2476] Generating symbol file lib/librte_cryptodev.so.21.1.p/librte_cryptodev.so.21.1.symbols
[1696/2476] Generating symbol file lib/librte_distributor.so.21.1.p/librte_distributor.so.21.1.symbols
[1697/2476] Generating symbol file lib/librte_efd.so.21.1.p/librte_efd.so.21.1.symbols
[1698/2476] Generating symbol file lib/librte_lpm.so.21.1.p/librte_lpm.so.21.1.symbols
[1699/2476] Generating symbol file lib/librte_member.so.21.1.p/librte_member.so.21.1.symbols
[1700/2476] Generating symbol file lib/librte_regexdev.so.21.1.p/librte_regexdev.so.21.1.symbols
[1701/2476] Generating symbol file lib/librte_reorder.so.21.1.p/librte_reorder.so.21.1.symbols
[1702/2476] Generating symbol file lib/librte_sched.so.21.1.p/librte_sched.so.21.1.symbols
[1703/2476] Generating symbol file lib/librte_fib.so.21.1.p/librte_fib.so.21.1.symbols
[1704/2476] Generating symbol file drivers/librte_mempool_octeontx.so.21.1.p/librte_mempool_octeontx.so.21.1.symbols
[1705/2476] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1706/2476] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1707/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1708/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1709/2476] Generating rte_regex_octeontx2_mingw with a custom command
[1710/2476] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1711/2476] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1712/2476] Linking static target drivers/libtmp_rte_net_qede.a
[1713/2476] Linking static target drivers/libtmp_rte_net_softnic.a
[1714/2476] Linking static target drivers/libtmp_rte_net_tap.a
[1715/2476] Linking static target drivers/libtmp_rte_net_thunderx.a
[1716/2476] Compiling C object drivers/librte_net_vdev_netvsc.so.21.1.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1717/2476] Linking static target drivers/libtmp_rte_raw_ioat.a
[1718/2476] Linking static target drivers/libtmp_rte_raw_ntb.a
[1719/2476] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1720/2476] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1721/2476] Generating rte_vdpa_ifc_def with a custom command
[1722/2476] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1723/2476] Generating rte_vdpa_ifc_mingw with a custom command
[1724/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1725/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1726/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1727/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1728/2476] Generating rte_event_dlb_def with a custom command
[1729/2476] Generating rte_event_dlb_mingw with a custom command
[1730/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1731/2476] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1732/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1733/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1734/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1735/2476] Generating rte_net_vhost.pmd.c with a custom command
[1736/2476] Generating rte_event_dlb2_def with a custom command
[1737/2476] Generating rte_event_dlb2_mingw with a custom command
[1738/2476] Generating rte_event_dpaa_def with a custom command
[1739/2476] Generating rte_event_dpaa_mingw with a custom command
[1740/2476] Generating rte_event_dpaa2_mingw with a custom command
[1741/2476] Generating rte_raw_skeleton.pmd.c with a custom command
[1742/2476] Generating rte_event_dpaa2_def with a custom command
[1743/2476] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1744/2476] Compiling C object drivers/librte_compress_zlib.so.21.1.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1745/2476] Linking static target drivers/librte_net_ixgbe.a
[1746/2476] Linking static target drivers/librte_net_sfc.a
[1747/2476] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1748/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[1749/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1750/2476] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1751/2476] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1752/2476] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1753/2476] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1754/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1755/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[1756/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1757/2476] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1758/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[1759/2476] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[1760/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[1761/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[1762/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1763/2476] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1764/2476] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1765/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[1766/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[1767/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[1768/2476] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.1.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1769/2476] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1770/2476] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1771/2476] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1772/2476] Linking static target drivers/libtmp_rte_crypto_null.a
[1773/2476] Generating rte_event_octeontx2_def with a custom command
[1774/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[1775/2476] Generating rte_event_octeontx2_mingw with a custom command
[1776/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[1777/2476] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1778/2476] Generating rte_event_opdl_mingw with a custom command
[1779/2476] Generating rte_event_opdl_def with a custom command
[1780/2476] Linking target lib/librte_ethdev.so.21.1
[1781/2476] Linking target lib/librte_cmdline.so.21.1
[1782/2476] Linking target lib/librte_security.so.21.1
[1783/2476] Linking target drivers/librte_common_cpt.so.21.1
[1784/2476] Linking target drivers/librte_common_qat.so.21.1
[1785/2476] Linking target drivers/librte_crypto_virtio.so.21.1
[1786/2476] Generating rte_event_skeleton_def with a custom command
[1787/2476] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[1788/2476] Generating rte_event_skeleton_mingw with a custom command
[1789/2476] Generating rte_event_sw_def with a custom command
[1790/2476] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1791/2476] Generating rte_event_sw_mingw with a custom command
[1792/2476] Linking static target drivers/librte_net_vdev_netvsc.a
[1793/2476] Generating rte_net_qede.pmd.c with a custom command
[1794/2476] Generating rte_net_softnic.pmd.c with a custom command
[1795/2476] Generating rte_net_tap.pmd.c with a custom command
[1796/2476] Generating rte_net_thunderx.pmd.c with a custom command
[1797/2476] Generating rte_raw_ioat.pmd.c with a custom command
[1798/2476] Generating rte_raw_ntb.pmd.c with a custom command
[1799/2476] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1800/2476] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1801/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[1802/2476] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1803/2476] Generating rte_event_dsw_def with a custom command
[1804/2476] Generating rte_event_dsw_mingw with a custom command
[1805/2476] Generating rte_crypto_nitrox.pmd.c with a custom command
[1806/2476] Generating rte_event_octeontx_mingw with a custom command
[1807/2476] Generating rte_event_octeontx_def with a custom command
[1808/2476] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1809/2476] Compiling C object drivers/librte_net_vhost.so.21.1.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1810/2476] Generating rte_baseband_null_def with a custom command
[1811/2476] Generating rte_baseband_null_mingw with a custom command
[1812/2476] Compiling C object drivers/librte_raw_skeleton.so.21.1.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1813/2476] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1814/2476] Linking static target drivers/librte_compress_zlib.a
[1815/2476] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1816/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[1817/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[1818/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[1819/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[1820/2476] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1821/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[1822/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[1823/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[1824/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[1825/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[1826/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[1827/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[1828/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[1829/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[1830/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[1831/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[1832/2476] Generating rte_baseband_turbo_sw_def with a custom command
[1833/2476] Linking static target drivers/libtmp_rte_net_txgbe.a
[1834/2476] Linking static target drivers/libtmp_rte_net_virtio.a
[1835/2476] Generating rte_baseband_turbo_sw_mingw with a custom command
[1836/2476] Generating rte_baseband_fpga_lte_fec_def with a custom command
[1837/2476] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1838/2476] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[1839/2476] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[1840/2476] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[1841/2476] Linking static target drivers/libtmp_rte_event_dpaa.a
[1842/2476] Generating rte_baseband_acc100_def with a custom command
[1843/2476] Generating rte_baseband_acc100_mingw with a custom command
[1844/2476] Linking static target drivers/libtmp_rte_event_dpaa2.a
[1845/2476] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[1846/2476] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[1847/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[1848/2476] Generating rte_net_vmxnet3.pmd.c with a custom command
[1849/2476] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1850/2476] Generating rte_crypto_null.pmd.c with a custom command
[1851/2476] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[1852/2476] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[1853/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[1854/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[1855/2476] Generating rte_compress_octeontx.pmd.c with a custom command
[1856/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[1857/2476] Linking static target drivers/libtmp_rte_event_skeleton.a
[1858/2476] Generating rte_regex_octeontx2.pmd.c with a custom command
[1859/2476] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1860/2476] Compiling C object drivers/librte_net_qede.so.21.1.p/meson-generated_.._rte_net_qede.pmd.c.o
[1861/2476] Compiling C object drivers/librte_net_softnic.so.21.1.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1862/2476] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1863/2476] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1864/2476] Compiling C object drivers/librte_net_tap.so.21.1.p/meson-generated_.._rte_net_tap.pmd.c.o
[1865/2476] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1866/2476] Compiling C object drivers/librte_net_thunderx.so.21.1.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1867/2476] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1868/2476] Compiling C object drivers/librte_raw_ioat.so.21.1.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1869/2476] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1870/2476] Compiling C object drivers/librte_raw_ntb.so.21.1.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1871/2476] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.1.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1872/2476] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1873/2476] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.1.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1874/2476] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1875/2476] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1876/2476] Linking static target drivers/librte_raw_skeleton.a
[1877/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[1878/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[1879/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[1880/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[1881/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[1882/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[1883/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[1884/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[1885/2476] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[1886/2476] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1887/2476] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1888/2476] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[1889/2476] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[1890/2476] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[1891/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[1892/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[1893/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[1894/2476] Generating symbol file lib/librte_ethdev.so.21.1.p/librte_ethdev.so.21.1.symbols
[1895/2476] Generating symbol file lib/librte_cmdline.so.21.1.p/librte_cmdline.so.21.1.symbols
[1896/2476] Generating symbol file lib/librte_security.so.21.1.p/librte_security.so.21.1.symbols
[1897/2476] Generating symbol file drivers/librte_common_cpt.so.21.1.p/librte_common_cpt.so.21.1.symbols
[1898/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[1899/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[1900/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[1901/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[1902/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[1903/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[1904/2476] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1905/2476] Linking static target drivers/librte_net_vhost.a
[1906/2476] Compiling C object drivers/librte_crypto_bcmfs.so.21.1.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1907/2476] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1908/2476] Compiling C object drivers/librte_crypto_nitrox.so.21.1.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1909/2476] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1910/2476] Linking static target lib/librte_pipeline.a
[1911/2476] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[1912/2476] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[1913/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[1914/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[1915/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[1916/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[1917/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[1918/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[1919/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[1920/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[1921/2476] Generating rte_net_txgbe.pmd.c with a custom command
[1922/2476] Generating rte_net_virtio.pmd.c with a custom command
[1923/2476] Generating rte_vdpa_ifc.pmd.c with a custom command
[1924/2476] Generating rte_event_dpaa.pmd.c with a custom command
[1925/2476] Generating rte_event_dpaa2.pmd.c with a custom command
[1926/2476] Linking target app/dpdk-test-acl
[1927/2476] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1928/2476] Compiling C object drivers/librte_net_vmxnet3.so.21.1.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1929/2476] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1930/2476] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.1.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1931/2476] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1932/2476] Compiling C object drivers/librte_crypto_null.so.21.1.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1933/2476] Compiling C object drivers/librte_compress_octeontx.so.21.1.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[1934/2476] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[1935/2476] Generating rte_event_skeleton.pmd.c with a custom command
[1936/2476] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1937/2476] Linking static target drivers/librte_net_qede.a
[1938/2476] Compiling C object drivers/librte_regex_octeontx2.so.21.1.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1939/2476] Linking static target drivers/librte_net_softnic.a
[1940/2476] Linking static target drivers/librte_net_tap.a
[1941/2476] Linking static target drivers/librte_net_thunderx.a
[1942/2476] Linking static target drivers/librte_raw_ioat.a
[1943/2476] Linking static target drivers/librte_raw_ntb.a
[1944/2476] Linking static target drivers/librte_raw_octeontx2_dma.a
[1945/2476] Linking static target drivers/librte_raw_octeontx2_ep.a
[1946/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[1947/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[1948/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[1949/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[1950/2476] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[1951/2476] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[1952/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[1953/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[1954/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[1955/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[1956/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[1957/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[1958/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[1959/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[1960/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[1961/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[1962/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[1963/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[1964/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[1965/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[1966/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[1967/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[1968/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[1969/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[1970/2476] Linking static target drivers/librte_crypto_bcmfs.a
[1971/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[1972/2476] Linking static target drivers/libtmp_rte_event_dlb.a
[1973/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[1974/2476] Linking static target drivers/libtmp_rte_event_opdl.a
[1975/2476] Linking static target drivers/libtmp_rte_baseband_null.a
[1976/2476] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[1977/2476] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[1978/2476] Linking target lib/librte_bitratestats.so.21.1
[1979/2476] Linking target lib/librte_eventdev.so.21.1
[1980/2476] Linking target lib/librte_gro.so.21.1
[1981/2476] Linking target lib/librte_gso.so.21.1
[1982/2476] Linking target lib/librte_ip_frag.so.21.1
[1983/2476] Linking target lib/librte_kni.so.21.1
[1984/2476] Linking target lib/librte_latencystats.so.21.1
[1985/2476] Linking target lib/librte_pdump.so.21.1
[1986/2476] Linking target lib/librte_vhost.so.21.1
[1987/2476] Linking target lib/librte_ipsec.so.21.1
[1988/2476] Linking target lib/librte_bpf.so.21.1
[1989/2476] Linking target lib/librte_node.so.21.1
[1990/2476] Linking target drivers/librte_common_octeontx2.so.21.1
[1991/2476] Linking target drivers/librte_net_af_packet.so.21.1
[1992/2476] Linking target drivers/librte_net_ark.so.21.1
[1993/2476] Linking target drivers/librte_net_atlantic.so.21.1
[1994/2476] Linking target drivers/librte_net_avp.so.21.1
[1995/2476] Linking target drivers/librte_net_axgbe.so.21.1
[1996/2476] Linking target drivers/librte_net_bnx2x.so.21.1
[1997/2476] Linking target drivers/librte_net_bnxt.so.21.1
[1998/2476] Linking target drivers/librte_net_cxgbe.so.21.1
[1999/2476] Linking target drivers/librte_net_e1000.so.21.1
[2000/2476] Linking target drivers/librte_net_ena.so.21.1
[2001/2476] Linking target drivers/librte_net_enetc.so.21.1
[2002/2476] Linking target drivers/librte_net_enic.so.21.1
[2003/2476] Linking target drivers/librte_net_failsafe.so.21.1
[2004/2476] Linking target drivers/librte_net_fm10k.so.21.1
[2005/2476] Linking target drivers/librte_net_i40e.so.21.1
[2006/2476] Linking target drivers/librte_net_hinic.so.21.1
[2007/2476] Linking target drivers/librte_net_hns3.so.21.1
[2008/2476] Linking target drivers/librte_net_iavf.so.21.1
[2009/2476] Linking target drivers/librte_net_liquidio.so.21.1
[2010/2476] Linking target drivers/librte_net_memif.so.21.1
[2011/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2012/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2013/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2014/2476] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2015/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2016/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2017/2476] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2018/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2019/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2020/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2021/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2022/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2023/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2024/2476] Linking target drivers/librte_net_ice.so.21.1
[2025/2476] Linking target drivers/librte_net_igc.so.21.1
[2026/2476] Linking target drivers/librte_net_ixgbe.so.21.1
[2027/2476] Linking target drivers/librte_net_netvsc.so.21.1
[2028/2476] Linking target drivers/librte_net_nfp.so.21.1
[2029/2476] Linking target drivers/librte_net_null.so.21.1
[2030/2476] Linking target drivers/librte_net_pfe.so.21.1
[2031/2476] Linking target drivers/librte_net_ring.so.21.1
[2032/2476] Linking target drivers/librte_net_sfc.so.21.1
[2033/2476] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2034/2476] Compiling C object drivers/librte_net_txgbe.so.21.1.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2035/2476] Linking target drivers/librte_net_vdev_netvsc.so.21.1
[2036/2476] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2037/2476] Compiling C object drivers/librte_net_virtio.so.21.1.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2038/2476] Linking static target drivers/librte_net_vmxnet3.a
[2039/2476] Linking static target drivers/librte_raw_dpaa2_qdma.a
[2040/2476] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2041/2476] Linking static target drivers/librte_crypto_nitrox.a
[2042/2476] Linking static target drivers/librte_crypto_null.a
[2043/2476] Generating rte_crypto_scheduler.pmd.c with a custom command
[2044/2476] Linking static target drivers/librte_compress_octeontx.a
[2045/2476] Linking target drivers/librte_compress_zlib.so.21.1
[2046/2476] Linking static target drivers/librte_regex_octeontx2.a
[2047/2476] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2048/2476] Compiling C object drivers/librte_vdpa_ifc.so.21.1.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2049/2476] Linking static target drivers/libtmp_rte_event_dlb2.a
[2050/2476] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2051/2476] Compiling C object drivers/librte_event_dpaa.so.21.1.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2052/2476] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2053/2476] Compiling C object drivers/librte_event_dpaa2.so.21.1.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2054/2476] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2055/2476] Compiling C object drivers/librte_event_skeleton.so.21.1.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2056/2476] Linking static target drivers/libtmp_rte_event_sw.a
[2057/2476] Linking static target drivers/libtmp_rte_event_dsw.a
[2058/2476] Generating rte_event_dlb.pmd.c with a custom command
[2059/2476] Linking static target drivers/libtmp_rte_event_octeontx.a
[2060/2476] Generating rte_event_opdl.pmd.c with a custom command
[2061/2476] Generating rte_baseband_null.pmd.c with a custom command
[2062/2476] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2063/2476] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2064/2476] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2065/2476] Linking target app/dpdk-proc-info
[2066/2476] Linking target app/dpdk-test-cmdline
[2067/2476] Linking target app/dpdk-test-compress-perf
[2068/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2069/2476] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[2070/2476] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[2071/2476] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[2072/2476] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[2073/2476] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2074/2476] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[2075/2476] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2076/2476] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[2077/2476] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[2078/2476] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[2079/2476] Generating symbol file lib/librte_bitratestats.so.21.1.p/librte_bitratestats.so.21.1.symbols
[2080/2476] Generating symbol file lib/librte_eventdev.so.21.1.p/librte_eventdev.so.21.1.symbols
[2081/2476] Generating symbol file lib/librte_gro.so.21.1.p/librte_gro.so.21.1.symbols
[2082/2476] Generating symbol file lib/librte_gso.so.21.1.p/librte_gso.so.21.1.symbols
[2083/2476] Generating symbol file lib/librte_ip_frag.so.21.1.p/librte_ip_frag.so.21.1.symbols
[2084/2476] Generating symbol file lib/librte_kni.so.21.1.p/librte_kni.so.21.1.symbols
[2085/2476] Generating symbol file lib/librte_latencystats.so.21.1.p/librte_latencystats.so.21.1.symbols
[2086/2476] Generating symbol file lib/librte_pdump.so.21.1.p/librte_pdump.so.21.1.symbols
[2087/2476] Generating symbol file lib/librte_vhost.so.21.1.p/librte_vhost.so.21.1.symbols
[2088/2476] Generating symbol file lib/librte_ipsec.so.21.1.p/librte_ipsec.so.21.1.symbols
[2089/2476] Generating symbol file lib/librte_bpf.so.21.1.p/librte_bpf.so.21.1.symbols
[2090/2476] Generating symbol file lib/librte_node.so.21.1.p/librte_node.so.21.1.symbols
[2091/2476] Generating symbol file drivers/librte_common_octeontx2.so.21.1.p/librte_common_octeontx2.so.21.1.symbols
[2092/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2093/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2094/2476] Generating symbol file drivers/librte_net_bnxt.so.21.1.p/librte_net_bnxt.so.21.1.symbols
[2095/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2096/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2097/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2098/2476] Generating symbol file drivers/librte_net_i40e.so.21.1.p/librte_net_i40e.so.21.1.symbols
[2099/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2100/2476] Compiling C object app/test/dpdk-test.p/commands.c.o
[2101/2476] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2102/2476] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2103/2476] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2104/2476] Linking target app/dpdk-test-fib
[2105/2476] Linking target app/dpdk-test-flow-perf
[2106/2476] Compiling C object app/test/dpdk-test.p/test.c.o
[2107/2476] Linking target drivers/librte_raw_skeleton.so.21.1
[2108/2476] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2109/2476] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2110/2476] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2111/2476] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2112/2476] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2113/2476] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2114/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2115/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2116/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2117/2476] Linking static target drivers/librte_net_txgbe.a
[2118/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2119/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2120/2476] Linking static target drivers/librte_net_virtio.a
[2121/2476] Compiling C object drivers/librte_crypto_caam_jr.so.21.1.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2122/2476] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2123/2476] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2124/2476] Compiling C object drivers/librte_crypto_scheduler.so.21.1.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2125/2476] Linking static target drivers/librte_vdpa_ifc.a
[2126/2476] Generating rte_event_dlb2.pmd.c with a custom command
[2127/2476] Linking static target drivers/librte_event_dpaa.a
[2128/2476] Linking static target drivers/librte_event_dpaa2.a
[2129/2476] Linking static target drivers/librte_event_skeleton.a
[2130/2476] Generating rte_event_sw.pmd.c with a custom command
[2131/2476] Generating rte_event_dsw.pmd.c with a custom command
[2132/2476] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2133/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2134/2476] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2135/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2136/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2137/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2138/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2139/2476] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2140/2476] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2141/2476] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2142/2476] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2143/2476] Generating symbol file drivers/librte_net_ixgbe.so.21.1.p/librte_net_ixgbe.so.21.1.symbols
[2144/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2145/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2146/2476] Generating symbol file drivers/librte_net_ring.so.21.1.p/librte_net_ring.so.21.1.symbols
[2147/2476] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2148/2476] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[2149/2476] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[2150/2476] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[2151/2476] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[2152/2476] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2153/2476] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2154/2476] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2155/2476] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2156/2476] Compiling C object drivers/librte_event_dlb.so.21.1.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2157/2476] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2158/2476] Compiling C object drivers/librte_event_opdl.so.21.1.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2159/2476] Generating rte_event_octeontx.pmd.c with a custom command
[2160/2476] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2161/2476] Compiling C object drivers/librte_baseband_null.so.21.1.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2162/2476] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2163/2476] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2164/2476] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.1.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2165/2476] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2166/2476] Linking target drivers/librte_net_qede.so.21.1
[2167/2476] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.1.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2168/2476] Linking target drivers/librte_net_thunderx.so.21.1
[2169/2476] Linking target drivers/librte_raw_ioat.so.21.1
[2170/2476] Linking target drivers/librte_raw_ntb.so.21.1
[2171/2476] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2172/2476] Linking target drivers/librte_crypto_bcmfs.so.21.1
[2173/2476] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2174/2476] Linking target drivers/librte_bus_dpaa.so.21.1
[2175/2476] Linking target drivers/librte_bus_fslmc.so.21.1
[2176/2476] Linking target drivers/librte_net_octeontx.so.21.1
[2177/2476] Linking target drivers/librte_net_bond.so.21.1
[2178/2476] Linking target lib/librte_port.so.21.1
[2179/2476] Linking target drivers/librte_net_kni.so.21.1
[2180/2476] Linking target drivers/librte_net_tap.so.21.1
[2181/2476] Linking target drivers/librte_net_vhost.so.21.1
[2182/2476] Linking target app/dpdk-pdump
[2183/2476] Linking target app/dpdk-test-eventdev
[2184/2476] Linking target drivers/librte_mempool_octeontx2.so.21.1
[2185/2476] Linking target drivers/librte_raw_octeontx2_dma.so.21.1
[2186/2476] Linking target drivers/librte_raw_octeontx2_ep.so.21.1
[2187/2476] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2188/2476] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2189/2476] Linking target app/dpdk-test-sad
[2190/2476] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2191/2476] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2192/2476] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2193/2476] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2194/2476] Linking static target drivers/librte_crypto_caam_jr.a
[2195/2476] Linking static target drivers/librte_crypto_scheduler.a
[2196/2476] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2197/2476] Compiling C object drivers/librte_event_dlb2.so.21.1.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2198/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2199/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2200/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2201/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2202/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2203/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2204/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2205/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2206/2476] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2207/2476] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2208/2476] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2209/2476] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2210/2476] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2211/2476] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2212/2476] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2213/2476] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2214/2476] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2215/2476] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2216/2476] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2217/2476] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2218/2476] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2219/2476] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2220/2476] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2221/2476] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2222/2476] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2223/2476] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2224/2476] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2225/2476] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2226/2476] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2227/2476] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2228/2476] Linking static target drivers/librte_event_dlb.a
[2229/2476] Compiling C object drivers/librte_event_sw.so.21.1.p/meson-generated_.._rte_event_sw.pmd.c.o
[2230/2476] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2231/2476] Compiling C object drivers/librte_event_dsw.so.21.1.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2232/2476] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2233/2476] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2234/2476] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2235/2476] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2236/2476] Linking target app/dpdk-test-regex
[2237/2476] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2238/2476] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2239/2476] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2240/2476] Linking target drivers/librte_net_vmxnet3.so.21.1
[2241/2476] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2242/2476] Linking target drivers/librte_crypto_nitrox.so.21.1
[2243/2476] Linking target drivers/librte_crypto_null.so.21.1
[2244/2476] Linking target drivers/librte_compress_octeontx.so.21.1
[2245/2476] Linking target drivers/librte_regex_octeontx2.so.21.1
[2246/2476] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2247/2476] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2248/2476] Linking static target drivers/librte_event_opdl.a
[2249/2476] Compiling C object drivers/librte_event_octeontx.so.21.1.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2250/2476] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2251/2476] Linking static target drivers/librte_baseband_null.a
[2252/2476] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2253/2476] Compiling C object drivers/librte_baseband_turbo_sw.so.21.1.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2254/2476] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2255/2476] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2256/2476] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2257/2476] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2258/2476] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2259/2476] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2260/2476] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2261/2476] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.1.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2262/2476] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2263/2476] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.1.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2264/2476] Linking static target drivers/librte_event_dlb2.a
[2265/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2266/2476] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2267/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2268/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2269/2476] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2270/2476] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2271/2476] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2272/2476] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2273/2476] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2274/2476] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2275/2476] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2276/2476] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2277/2476] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2278/2476] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2279/2476] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2280/2476] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2281/2476] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2282/2476] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2283/2476] Generating symbol file drivers/librte_bus_dpaa.so.21.1.p/librte_bus_dpaa.so.21.1.symbols
[2284/2476] Generating symbol file drivers/librte_bus_fslmc.so.21.1.p/librte_bus_fslmc.so.21.1.symbols
[2285/2476] Generating symbol file drivers/librte_net_octeontx.so.21.1.p/librte_net_octeontx.so.21.1.symbols
[2286/2476] Generating symbol file drivers/librte_net_bond.so.21.1.p/librte_net_bond.so.21.1.symbols
[2287/2476] Generating symbol file lib/librte_port.so.21.1.p/librte_port.so.21.1.symbols
[2288/2476] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2289/2476] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2290/2476] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2291/2476] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2292/2476] Generating symbol file drivers/librte_mempool_octeontx2.so.21.1.p/librte_mempool_octeontx2.so.21.1.symbols
[2293/2476] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2294/2476] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2295/2476] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2296/2476] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2297/2476] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2298/2476] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2299/2476] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2300/2476] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2301/2476] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2302/2476] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2303/2476] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2304/2476] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2305/2476] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2306/2476] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2307/2476] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2308/2476] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2309/2476] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2310/2476] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2311/2476] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2312/2476] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2313/2476] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2314/2476] Linking target drivers/librte_net_txgbe.so.21.1
[2315/2476] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2316/2476] Linking target drivers/librte_net_virtio.so.21.1
[2317/2476] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2318/2476] Linking target drivers/librte_vdpa_ifc.so.21.1
[2319/2476] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2320/2476] Linking target drivers/librte_event_skeleton.so.21.1
[2321/2476] Linking static target drivers/librte_event_sw.a
[2322/2476] Linking static target drivers/librte_event_dsw.a
[2323/2476] Generating rte_baseband_acc100.pmd.c with a custom command
[2324/2476] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2325/2476] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2326/2476] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2327/2476] Linking static target drivers/librte_event_octeontx.a
[2328/2476] Linking static target drivers/librte_baseband_turbo_sw.a
[2329/2476] Linking static target drivers/librte_crypto_dpaa_sec.a
[2330/2476] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2331/2476] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2332/2476] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2333/2476] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2334/2476] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2335/2476] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2336/2476] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2337/2476] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2338/2476] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2339/2476] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2340/2476] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2341/2476] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2342/2476] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2343/2476] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2344/2476] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2345/2476] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2346/2476] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2347/2476] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2348/2476] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2349/2476] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2350/2476] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2351/2476] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2352/2476] Generating igb_uio_makefile with a custom command
[2353/2476] Generating rte_kni_makefile with a custom command
[2354/2476] Linking target drivers/librte_mempool_dpaa.so.21.1
[2355/2476] Linking target drivers/librte_mempool_dpaa2.so.21.1
[2356/2476] Linking target lib/librte_table.so.21.1
[2357/2476] Linking target drivers/librte_crypto_caam_jr.so.21.1
[2358/2476] Linking target drivers/librte_crypto_scheduler.so.21.1
[2359/2476] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2360/2476] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2361/2476] Compiling C object drivers/librte_baseband_acc100.so.21.1.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2362/2476] Linking static target drivers/librte_baseband_acc100.a
[2363/2476] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2364/2476] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2365/2476] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2366/2476] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2367/2476] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2368/2476] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2369/2476] Compiling C object drivers/librte_crypto_octeontx2.so.21.1.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2370/2476] Generating rte_net_octeontx2.pmd.c with a custom command
[2371/2476] Linking static target drivers/librte_crypto_octeontx2.a
[2372/2476] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2373/2476] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2374/2476] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2375/2476] Linking target drivers/librte_event_dlb.so.21.1
[2376/2476] Compiling C object drivers/librte_net_octeontx2.so.21.1.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2377/2476] Linking static target drivers/librte_net_octeontx2.a
[2378/2476] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2379/2476] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2380/2476] Linking target drivers/librte_event_opdl.so.21.1
[2381/2476] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2382/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2383/2476] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2384/2476] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2385/2476] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2386/2476] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2387/2476] Linking target drivers/librte_baseband_null.so.21.1
[2388/2476] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.1
[2389/2476] Generating rte_crypto_octeontx.pmd.c with a custom command
[2390/2476] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2391/2476] Linking target drivers/librte_event_dlb2.so.21.1
[2392/2476] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.1
[2393/2476] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2394/2476] Compiling C object drivers/librte_crypto_octeontx.so.21.1.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2395/2476] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2396/2476] Linking static target drivers/librte_crypto_octeontx.a
[2397/2476] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2398/2476] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2399/2476] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2400/2476] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2401/2476] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2402/2476] Generating symbol file drivers/librte_event_skeleton.so.21.1.p/librte_event_skeleton.so.21.1.symbols
[2403/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2404/2476] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2405/2476] Generating symbol file drivers/librte_mempool_dpaa.so.21.1.p/librte_mempool_dpaa.so.21.1.symbols
[2406/2476] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2407/2476] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2408/2476] Generating symbol file drivers/librte_crypto_scheduler.so.21.1.p/librte_crypto_scheduler.so.21.1.symbols
[2409/2476] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2410/2476] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2411/2476] Linking target drivers/librte_event_dsw.so.21.1
[2412/2476] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2413/2476] Generating symbol file lib/librte_table.so.21.1.p/librte_table.so.21.1.symbols
[2414/2476] Linking target drivers/librte_baseband_turbo_sw.so.21.1
[2415/2476] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2416/2476] Linking target drivers/librte_net_dpaa.so.21.1
[2417/2476] Linking target drivers/librte_event_sw.so.21.1
[2418/2476] Linking target app/dpdk-test-crypto-perf
[2419/2476] Linking target drivers/librte_crypto_dpaa_sec.so.21.1
[2420/2476] Linking target lib/librte_pipeline.so.21.1
[2421/2476] Generating symbol file drivers/librte_mempool_dpaa2.so.21.1.p/librte_mempool_dpaa2.so.21.1.symbols
[2422/2476] Linking target lib/librte_flow_classify.so.21.1
[2423/2476] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2424/2476] Linking target drivers/librte_event_octeontx.so.21.1
[2425/2476] Linking target drivers/librte_baseband_acc100.so.21.1
[2426/2476] Linking target drivers/librte_raw_dpaa2_qdma.so.21.1
[2427/2476] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.1
[2428/2476] Linking target drivers/librte_crypto_dpaa2_sec.so.21.1
[2429/2476] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2430/2476] Linking target drivers/librte_net_dpaa2.so.21.1
[2431/2476] Generating symbol file drivers/librte_baseband_fpga_5gnr_fec.so.21.1.p/librte_baseband_fpga_5gnr_fec.so.21.1.symbols
[2432/2476] Generating symbol file drivers/librte_baseband_fpga_lte_fec.so.21.1.p/librte_baseband_fpga_lte_fec.so.21.1.symbols
[2433/2476] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2434/2476] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2435/2476] Linking target drivers/librte_crypto_octeontx2.so.21.1
[2436/2476] Linking target drivers/librte_net_octeontx2.so.21.1
[2437/2476] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2438/2476] Linking target drivers/librte_crypto_octeontx.so.21.1
[2439/2476] Generating symbol file lib/librte_flow_classify.so.21.1.p/librte_flow_classify.so.21.1.symbols
[2440/2476] Generating symbol file drivers/librte_net_dpaa.so.21.1.p/librte_net_dpaa.so.21.1.symbols
[2441/2476] Linking target app/dpdk-testpmd
[2442/2476] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2443/2476] Generating symbol file drivers/librte_net_dpaa2.so.21.1.p/librte_net_dpaa2.so.21.1.symbols
[2444/2476] Generating symbol file lib/librte_pipeline.so.21.1.p/librte_pipeline.so.21.1.symbols
[2445/2476] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.1.p/librte_crypto_dpaa_sec.so.21.1.symbols
[2446/2476] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2447/2476] Linking target drivers/librte_net_softnic.so.21.1
[2448/2476] Linking target app/dpdk-test-pipeline
[2449/2476] Linking target drivers/librte_event_dpaa.so.21.1
[2450/2476] Generating symbol file drivers/librte_baseband_acc100.so.21.1.p/librte_baseband_acc100.so.21.1.symbols
[2451/2476] Linking target app/dpdk-test-bbdev
[2452/2476] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2453/2476] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.1.p/librte_crypto_dpaa2_sec.so.21.1.symbols
[2454/2476] Generating symbol file drivers/librte_crypto_octeontx2.so.21.1.p/librte_crypto_octeontx2.so.21.1.symbols
[2455/2476] Linking target drivers/librte_event_dpaa2.so.21.1
[2456/2476] Generating symbol file drivers/librte_net_octeontx2.so.21.1.p/librte_net_octeontx2.so.21.1.symbols
[2457/2476] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2458/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2459/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2460/2476] Generating igb_uio with a custom command
make: Entering directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
make: Leaving directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
[2461/2476] Generating rte_kni with a custom command
make: Entering directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
[2462/2476] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2463/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2464/2476] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2465/2476] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2466/2476] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2467/2476] Linking target app/test/dpdk-test
[2468/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2469/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2470/2476] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2471/2476] Generating rte_event_octeontx2.pmd.c with a custom command
[2472/2476] Compiling C object drivers/librte_event_octeontx2.so.21.1.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2473/2476] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2474/2476] Linking static target drivers/librte_event_octeontx2.a
[2475/2476] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2476/2476] Linking target drivers/librte_event_octeontx2.so.21.1
18/12/2020 11:29:52              dut.10.240.183.70: rm -rf /root/tmp/dpdk_share_lib
18/12/2020 11:29:52              dut.10.240.183.70: 
18/12/2020 11:29:52              dut.10.240.183.70: DESTDIR=/root/tmp/dpdk_share_lib ninja -C x86_64-native-linuxapp-gcc -j 110 install
18/12/2020 11:29:53              dut.10.240.183.70: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Installing files.
Installing subdir /root/dpdk/examples to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples
Installing /root/dpdk/examples/ipv4_multicast/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/ipv4_multicast/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/ipv4_multicast/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/conn.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/conn.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/obj.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/thread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/obj.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/examples/vxlan_table.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan_table.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/packet.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/vm_power_manager/channel_monitor.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor_nop.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/power_manager.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/parse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/vm_power_cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_monitor.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/power_manager.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor_x86.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_manager.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/parse.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/vm_power_cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_manager.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/guest_cli/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/parse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/parse.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/skeleton/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/skeleton/basicfwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/skeleton/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/ip_fragmentation/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/ip_fragmentation/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/ip_fragmentation/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/flow_filtering/flow_blocks.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/ip_pipeline/mempool.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/link.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tap.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/conn.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/kni.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/conn.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tmgr.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/swq.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/kni.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tap.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tmgr.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/parser.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cryptodev.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cryptodev.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/mempool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/link.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/parser.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/action.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/thread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/action.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/swq.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/pipeline.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/pipeline.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/examples/route.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/firewall.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/tap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/kni.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/flow.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/flow_crypto.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/route_ecmp.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/l2fwd.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/rss.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ntb/ntb_fwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/ntb/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/ntb/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/l2fwd-event/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_poll.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_common.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event_internal_port.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_poll.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l3fwd/l3fwd_event.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_sequential.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event_internal_port.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_altivec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_altivec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/ioat/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/ioat/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/ioat/ioatfwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/performance-thread/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread
Installing /root/dpdk/examples/performance-thread/pthread_shim/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/pthread_shim.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/pthread_shim.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/common/lthread_queue.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_int.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_tls.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_sched.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/common.mk to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_objcache.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_cond.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_pool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_tls.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag_api.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_api.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_mutex.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_sched.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_mutex.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_cond.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_timer.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/arch/x86/ctx.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/x86/stack.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/x86/ctx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/ctx.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/stack.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/ctx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/flow_classify/ipv4_rules_file.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/flow_classify.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/server_node_efd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd
Installing /root/dpdk/examples/server_node_efd/shared/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/shared
Installing /root/dpdk/examples/server_node_efd/server/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/args.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/init.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/node/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/server_node_efd/node/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/server_node_efd/node/node.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/l3fwd-graph/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/l3fwd-graph/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/l3fwd-graph/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/helloworld/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/helloworld/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/helloworld/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/l2fwd-cat/cat.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/cat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/l2fwd-cat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/vhost/ioat.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/ioat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/virtio_net.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vmdq_dcb/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/vmdq_dcb/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/vmdq_dcb/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/service_cores/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/service_cores/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/service_cores/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/ipsec-secgw/esp.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec-secgw.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sp6.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ep0.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sad.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/rt.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipip.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/event_helper.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/esp.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sad.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_worker.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/event_helper.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/flow.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sp4.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sa.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/parser.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ep1.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/flow.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec-secgw.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/parser.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_worker.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_process.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/test/load_env.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/pkttest.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesgcm_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_ipv6opts.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/data_rxtx.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/pkttest.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/bypass_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/run_test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesgcm_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/common_defs_secgw.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_null_header_reconstruct.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/linux_test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/multi_process/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process
Installing /root/dpdk/examples/multi_process/hotplug_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/client_server_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp
Installing /root/dpdk/examples/multi_process/client_server_mp/shared/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/shared
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/client.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/args.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/init.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/simple_mp/mp_commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/mp_commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/l2fwd-crypto/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/l2fwd-crypto/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/l2fwd-crypto/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/fips_validation/fips_validation_hmac.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_aes.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_cmac.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_dev_self_test.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_gcm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_dev_self_test.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_ccm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_xts.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_tdes.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_sha.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/ethtool/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool
Installing /root/dpdk/examples/ethtool/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool
Installing /root/dpdk/examples/ethtool/lib/rte_ethtool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/lib/rte_ethtool.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/lib/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/ethtool-app/ethapp.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/ethapp.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/bond/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/vhost_crypto/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/vhost_crypto/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/vhost_crypto/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/qos_sched/profile.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cmdline.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/stats.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cfg_file.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/profile_ov.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/app_thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cfg_file.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/vdpa/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/vdpa/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/vdpa/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/cmdline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/parse_obj_list.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/parse_obj_list.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/qos_meter/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/rte_policer.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/rte_policer.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/l3fwd-acl/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-acl/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-acl/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-power/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/perf_core.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/perf_core.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l2fwd-keepalive/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/shm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/shm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/ka-agent/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive/ka-agent
Installing /root/dpdk/examples/l2fwd-keepalive/ka-agent/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive/ka-agent
Installing /root/dpdk/examples/timer/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/timer/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/timer/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/bbdev_app/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/bbdev_app/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/bbdev_app/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/link_status_interrupt/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/link_status_interrupt/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/link_status_interrupt/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/bpf/t3.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/dummy.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/t2.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/t1.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/README to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/l2fwd/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/l2fwd/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/l2fwd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/distributor/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/distributor/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/distributor/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/eventdev_pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_worker_tx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_worker_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/rxtx_callbacks/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/rxtx_callbacks/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/rxtx_callbacks/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/ptpclient/ptpclient.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/ptpclient/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/ptpclient/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/vmdq/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/vmdq/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/vmdq/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/packet_ordering/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/packet_ordering/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/packet_ordering/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/ip_reassembly/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/ip_reassembly/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/ip_reassembly/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/vhost_blk/blk.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/blk_spec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk_compat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/kni/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/kni/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/kni/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/l2fwd-jobstats/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing /root/dpdk/examples/l2fwd-jobstats/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing /root/dpdk/examples/l2fwd-jobstats/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing lib/librte_kvargs.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kvargs.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_telemetry.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_telemetry.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eal.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eal.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rcu.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rcu.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mempool.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mempool.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mbuf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mbuf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_net.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_net.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_meter.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_meter.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ethdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ethdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pci.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pci.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cmdline.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cmdline.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_metrics.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_metrics.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_hash.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_hash.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_timer.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_timer.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_acl.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_acl.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bbdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bbdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bitratestats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bitratestats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cfgfile.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cfgfile.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_compressdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_compressdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cryptodev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cryptodev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_distributor.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_distributor.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_efd.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_efd.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eventdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eventdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gro.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gro.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gso.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gso.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ip_frag.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ip_frag.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_jobstats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_jobstats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kni.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kni.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_latencystats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_latencystats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_lpm.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_lpm.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_member.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_member.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_power.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_power.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pdump.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pdump.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rawdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rawdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_regexdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_regexdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_reorder.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_reorder.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_sched.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_sched.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_security.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_security.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_stack.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_stack.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_vhost.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_vhost.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ipsec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ipsec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_fib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_fib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_port.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_port.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_table.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_table.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pipeline.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pipeline.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_flow_classify.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_flow_classify.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bpf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bpf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_graph.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_graph.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_node.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_node.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_cpt.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_cpt.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_dpaax.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_dpaax.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_iavf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_iavf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_sfc_efx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_sfc_efx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_fslmc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_fslmc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_ifpga.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_ifpga.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_pci.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_pci.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_vdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_vdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_vmbus.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_vmbus.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_qat.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_qat.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_bucket.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_bucket.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_stack.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_stack.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_af_packet.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_af_packet.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ark.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ark.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_atlantic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_atlantic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_avp.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_avp.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_axgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_axgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bond.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bond.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bnx2x.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bnx2x.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bnxt.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bnxt.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_cxgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_cxgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_e1000.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_e1000.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ena.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ena.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_enetc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_enetc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_enic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_enic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_failsafe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_failsafe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_fm10k.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_fm10k.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_i40e.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_i40e.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_hinic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_hinic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_hns3.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_hns3.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_iavf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_iavf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ice.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ice.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_igc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_igc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ixgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ixgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_kni.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_kni.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_liquidio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_liquidio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_memif.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_memif.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_netvsc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_netvsc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_nfp.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_nfp.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_pfe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_pfe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_qede.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_qede.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_sfc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_sfc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_softnic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_softnic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_tap.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_tap.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_thunderx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_thunderx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_txgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_txgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vdev_netvsc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vdev_netvsc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vhost.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vhost.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_virtio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_virtio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vmxnet3.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vmxnet3.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_dpaa2_cmdif.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_dpaa2_cmdif.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_dpaa2_qdma.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_dpaa2_qdma.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_ioat.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_ioat.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_ntb.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_ntb.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_octeontx2_dma.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_octeontx2_dma.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_octeontx2_ep.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_octeontx2_ep.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_skeleton.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_skeleton.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_bcmfs.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_bcmfs.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_caam_jr.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_caam_jr.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_dpaa_sec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_dpaa_sec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_dpaa2_sec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_dpaa2_sec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_nitrox.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_nitrox.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_scheduler.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_scheduler.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_virtio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_virtio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_compress_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_compress_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_compress_zlib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_compress_zlib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_regex_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_regex_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_vdpa_ifc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_vdpa_ifc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dlb.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dlb.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dlb2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dlb2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_opdl.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_opdl.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_skeleton.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_skeleton.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_sw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_sw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dsw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dsw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_turbo_sw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_turbo_sw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_fpga_lte_fec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_fpga_lte_fec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_fpga_5gnr_fec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_fpga_5gnr_fec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_acc100.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_acc100.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing app/dpdk-pdump to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-proc-info to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-acl to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-bbdev to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-cmdline to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-compress-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-crypto-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-eventdev to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-fib to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-flow-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-pipeline to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-testpmd to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-regex to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-sad to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/test/dpdk-test to /root/tmp/dpdk_share_lib/usr/local/bin
Installing kernel/linux/kni/rte_kni.ko to /root/tmp/dpdk_share_lib/lib/modules/4.18.0-240.1.1.el8_3.x86_64/extra/dpdk
This file does not have an rpath.
This file does not have a runpath.
Installing kernel/linux/igb_uio/igb_uio.ko to /root/tmp/dpdk_share_lib/lib/modules/4.18.0-240.1.1.el8_3.x86_64/extra/dpdk
This file does not have an rpath.
This file does not have a runpath.
Installing /root/dpdk/config/rte_config.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/config/rte_compatibility_defines.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kvargs/rte_kvargs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_telemetry/rte_telemetry.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/generic/rte_atomic.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_byteorder.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_cpuflags.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_cycles.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_io.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_mcslock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_memcpy.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_pause.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_power_intrinsics.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_prefetch.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_rwlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_spinlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_ticketlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_vect.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic_32.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic_64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder_32.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder_64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_cpuflags.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_cycles.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_io.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_mcslock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_memcpy.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_pause.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_power_intrinsics.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_prefetch.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_rtm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_rwlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_spinlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_ticketlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_vect.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_alarm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bitmap.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bitops.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_branch_prediction.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bus.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_class.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_compat.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_debug.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_dev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_devargs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_interrupts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_memconfig.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_errno.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_fbarray.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_hexdump.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_hypervisor.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_interrupts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_keepalive.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_launch.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_lcore.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_log.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_malloc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_memory.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_memzone.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_pci_dev_feature_defs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_pci_dev_features.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_per_lcore.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_random.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_reciprocal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_service.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_service_component.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_string_fns.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_tailq.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_time.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace_point.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace_point_register.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_uuid.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_version.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_vfio.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/linux/include/rte_os.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_elem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_generic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_hts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_hts_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek_zc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_rts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_rts_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rcu/rte_rcu_qsbr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_ptype.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_pool_ops.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_dyn.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ip.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_tcp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_udp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_esp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_sctp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_icmp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_arp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ether.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_vxlan.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_gre.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_gtp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_net.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_net_crc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_mpls.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_higig.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ecpri.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_geneve.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_meter/rte_meter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_eth_ctrl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_dev_info.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_flow.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_flow_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_mtr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_mtr_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_tm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_tm_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pci/rte_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_num.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_ipaddr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_etheraddr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_string.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_rdline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_vt100.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_socket.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_cirbuf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_portlist.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_metrics/rte_metrics.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_crc_arm64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_fbk_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_hash_crc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_jhash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_thash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_timer/rte_timer.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_acl/rte_acl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_acl/rte_acl_osdep.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev_op.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bitratestats/rte_bitrate.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cfgfile/rte_cfgfile.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev_internal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_comp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto_sym.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto_asym.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_distributor/rte_distributor.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_efd/rte_efd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_eth_rx_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_timer_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_timer_adapter_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_crypto_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_eth_tx_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_gro/rte_gro.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_gso/rte_gso.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ip_frag/rte_ip_frag.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_jobstats/rte_jobstats.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kni/rte_kni.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kni/rte_kni_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_latencystats/rte_latencystats.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_altivec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_neon.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_sse.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_member/rte_member.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_power/rte_power.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_power/rte_power_empty_poll.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pdump/rte_pdump.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rawdev/rte_rawdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rawdev/rte_rawdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rib/rte_rib.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rib/rte_rib6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_reorder/rte_reorder.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_sched.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_sched_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_red.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_approx.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_security/rte_security.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_security/rte_security_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_std.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf_generic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf_c11.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vdpa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vdpa_dev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost_async.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_group.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_sa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_sad.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_fib/rte_fib.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_fib/rte_fib6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_fd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_frag.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ras.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_sched.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_source_sink.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_sym_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_eventdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port_source_sink.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_kni.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_acl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_lpm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_lpm_ipv6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_cuckoo.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_func.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_func_arm64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_lru.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_array.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_stub.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_swx_table.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_swx_table_em.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_lru_x86.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_pipeline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_port_in_action.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_table_action.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_pipeline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_extern.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_ctl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_flow_classify/rte_flow_classify.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/bpf_def.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/rte_bpf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/rte_bpf_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_graph/rte_graph.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_graph/rte_graph_worker.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_node/rte_node_ip4_api.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_node/rte_node_eth_api.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/ifpga/rte_bus_ifpga.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/pci/rte_bus_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vdev/rte_bus_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vmbus/rte_bus_vmbus.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vmbus/rte_vmbus_reg.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/mempool/dpaa2/rte_dpaa2_mempool.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ark/rte_pmd_ark.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/avp/rte_avp_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/avp/rte_avp_fifo.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bonding/rte_eth_bond.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bonding/rte_eth_bond_8023ad.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bnxt/rte_pmd_bnxt.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/dpaa/rte_pmd_dpaa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/dpaa2/rte_pmd_dpaa2.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/i40e/rte_pmd_i40e.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/iavf/rte_pmd_iavf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ice/rte_pmd_ice.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ixgbe/rte_pmd_ixgbe.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ring/rte_eth_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/softnic/rte_eth_softnic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/txgbe/rte_pmd_txgbe.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/vhost/rte_eth_vhost.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/dpaa2_cmdif/rte_pmd_dpaa2_cmdif.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ioat/rte_ioat_rawdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ioat/rte_ioat_rawdev_fns.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ntb/rte_pmd_ntb.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/crypto/scheduler/rte_cryptodev_scheduler.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/event/dlb/rte_pmd_dlb.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/event/dlb2/rte_pmd_dlb2.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/baseband/acc100/rte_acc100_cfg.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/usertools/dpdk-devbind.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-pmdinfo.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-telemetry.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-hugepages.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/x86_64-native-linuxapp-gcc/rte_build_config.h to /root/tmp/dpdk_share_lib/usr/local/include
Installing /root/dpdk/x86_64-native-linuxapp-gcc/meson-private/libdpdk-libs.pc to /root/tmp/dpdk_share_lib/usr/local/lib/pkgconfig
Installing /root/dpdk/x86_64-native-linuxapp-gcc/meson-private/libdpdk.pc to /root/tmp/dpdk_share_lib/usr/local/lib/pkgconfig
Running custom install script '/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh lib dpdk/pmds-21.1'
'./librte_baseband_acc100.so' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so'
'./librte_baseband_acc100.so.21' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so.21'
'./librte_baseband_acc100.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so.21.1'
'./librte_baseband_fpga_5gnr_fec.so' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so'
'./librte_baseband_fpga_5gnr_fec.so.21' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so.21'
'./librte_baseband_fpga_5gnr_fec.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so.21.1'
'./librte_baseband_fpga_lte_fec.so' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so'
'./librte_baseband_fpga_lte_fec.so.21' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so.21'
'./librte_baseband_fpga_lte_fec.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so.21.1'
'./librte_baseband_null.so' -> 'dpdk/pmds-21.1/librte_baseband_null.so'
'./librte_baseband_null.so.21' -> 'dpdk/pmds-21.1/librte_baseband_null.so.21'
'./librte_baseband_null.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_null.so.21.1'
'./librte_baseband_turbo_sw.so' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so'
'./librte_baseband_turbo_sw.so.21' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so.21'
'./librte_baseband_turbo_sw.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so.21.1'
'./librte_bus_dpaa.so' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so'
'./librte_bus_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so.21'
'./librte_bus_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so.21.1'
'./librte_bus_fslmc.so' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so'
'./librte_bus_fslmc.so.21' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so.21'
'./librte_bus_fslmc.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so.21.1'
'./librte_bus_ifpga.so' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so'
'./librte_bus_ifpga.so.21' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so.21'
'./librte_bus_ifpga.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so.21.1'
'./librte_bus_pci.so' -> 'dpdk/pmds-21.1/librte_bus_pci.so'
'./librte_bus_pci.so.21' -> 'dpdk/pmds-21.1/librte_bus_pci.so.21'
'./librte_bus_pci.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_pci.so.21.1'
'./librte_bus_vdev.so' -> 'dpdk/pmds-21.1/librte_bus_vdev.so'
'./librte_bus_vdev.so.21' -> 'dpdk/pmds-21.1/librte_bus_vdev.so.21'
'./librte_bus_vdev.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_vdev.so.21.1'
'./librte_bus_vmbus.so' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so'
'./librte_bus_vmbus.so.21' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so.21'
'./librte_bus_vmbus.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so.21.1'
'./librte_common_cpt.so' -> 'dpdk/pmds-21.1/librte_common_cpt.so'
'./librte_common_cpt.so.21' -> 'dpdk/pmds-21.1/librte_common_cpt.so.21'
'./librte_common_cpt.so.21.1' -> 'dpdk/pmds-21.1/librte_common_cpt.so.21.1'
'./librte_common_dpaax.so' -> 'dpdk/pmds-21.1/librte_common_dpaax.so'
'./librte_common_dpaax.so.21' -> 'dpdk/pmds-21.1/librte_common_dpaax.so.21'
'./librte_common_dpaax.so.21.1' -> 'dpdk/pmds-21.1/librte_common_dpaax.so.21.1'
'./librte_common_iavf.so' -> 'dpdk/pmds-21.1/librte_common_iavf.so'
'./librte_common_iavf.so.21' -> 'dpdk/pmds-21.1/librte_common_iavf.so.21'
'./librte_common_iavf.so.21.1' -> 'dpdk/pmds-21.1/librte_common_iavf.so.21.1'
'./librte_common_octeontx2.so' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so'
'./librte_common_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so.21'
'./librte_common_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so.21.1'
'./librte_common_octeontx.so' -> 'dpdk/pmds-21.1/librte_common_octeontx.so'
'./librte_common_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_common_octeontx.so.21'
'./librte_common_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_common_octeontx.so.21.1'
'./librte_common_qat.so' -> 'dpdk/pmds-21.1/librte_common_qat.so'
'./librte_common_qat.so.21' -> 'dpdk/pmds-21.1/librte_common_qat.so.21'
'./librte_common_qat.so.21.1' -> 'dpdk/pmds-21.1/librte_common_qat.so.21.1'
'./librte_common_sfc_efx.so' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so'
'./librte_common_sfc_efx.so.21' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so.21'
'./librte_common_sfc_efx.so.21.1' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so.21.1'
'./librte_compress_octeontx.so' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so'
'./librte_compress_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so.21'
'./librte_compress_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so.21.1'
'./librte_compress_zlib.so' -> 'dpdk/pmds-21.1/librte_compress_zlib.so'
'./librte_compress_zlib.so.21' -> 'dpdk/pmds-21.1/librte_compress_zlib.so.21'
'./librte_compress_zlib.so.21.1' -> 'dpdk/pmds-21.1/librte_compress_zlib.so.21.1'
'./librte_crypto_bcmfs.so' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so'
'./librte_crypto_bcmfs.so.21' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so.21'
'./librte_crypto_bcmfs.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so.21.1'
'./librte_crypto_caam_jr.so' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so'
'./librte_crypto_caam_jr.so.21' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so.21'
'./librte_crypto_caam_jr.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so.21.1'
'./librte_crypto_dpaa2_sec.so' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so'
'./librte_crypto_dpaa2_sec.so.21' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so.21'
'./librte_crypto_dpaa2_sec.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so.21.1'
'./librte_crypto_dpaa_sec.so' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so'
'./librte_crypto_dpaa_sec.so.21' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so.21'
'./librte_crypto_dpaa_sec.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so.21.1'
'./librte_crypto_nitrox.so' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so'
'./librte_crypto_nitrox.so.21' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so.21'
'./librte_crypto_nitrox.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so.21.1'
'./librte_crypto_null.so' -> 'dpdk/pmds-21.1/librte_crypto_null.so'
'./librte_crypto_null.so.21' -> 'dpdk/pmds-21.1/librte_crypto_null.so.21'
'./librte_crypto_null.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_null.so.21.1'
'./librte_crypto_octeontx2.so' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so'
'./librte_crypto_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so.21'
'./librte_crypto_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so.21.1'
'./librte_crypto_octeontx.so' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so'
'./librte_crypto_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so.21'
'./librte_crypto_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so.21.1'
'./librte_crypto_scheduler.so' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so'
'./librte_crypto_scheduler.so.21' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so.21'
'./librte_crypto_scheduler.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so.21.1'
'./librte_crypto_virtio.so' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so'
'./librte_crypto_virtio.so.21' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so.21'
'./librte_crypto_virtio.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so.21.1'
'./librte_event_dlb2.so' -> 'dpdk/pmds-21.1/librte_event_dlb2.so'
'./librte_event_dlb2.so.21' -> 'dpdk/pmds-21.1/librte_event_dlb2.so.21'
'./librte_event_dlb2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dlb2.so.21.1'
'./librte_event_dlb.so' -> 'dpdk/pmds-21.1/librte_event_dlb.so'
'./librte_event_dlb.so.21' -> 'dpdk/pmds-21.1/librte_event_dlb.so.21'
'./librte_event_dlb.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dlb.so.21.1'
'./librte_event_dpaa2.so' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so'
'./librte_event_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so.21'
'./librte_event_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so.21.1'
'./librte_event_dpaa.so' -> 'dpdk/pmds-21.1/librte_event_dpaa.so'
'./librte_event_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_event_dpaa.so.21'
'./librte_event_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dpaa.so.21.1'
'./librte_event_dsw.so' -> 'dpdk/pmds-21.1/librte_event_dsw.so'
'./librte_event_dsw.so.21' -> 'dpdk/pmds-21.1/librte_event_dsw.so.21'
'./librte_event_dsw.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dsw.so.21.1'
'./librte_event_octeontx2.so' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so'
'./librte_event_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so.21'
'./librte_event_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so.21.1'
'./librte_event_octeontx.so' -> 'dpdk/pmds-21.1/librte_event_octeontx.so'
'./librte_event_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_event_octeontx.so.21'
'./librte_event_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_event_octeontx.so.21.1'
'./librte_event_opdl.so' -> 'dpdk/pmds-21.1/librte_event_opdl.so'
'./librte_event_opdl.so.21' -> 'dpdk/pmds-21.1/librte_event_opdl.so.21'
'./librte_event_opdl.so.21.1' -> 'dpdk/pmds-21.1/librte_event_opdl.so.21.1'
'./librte_event_skeleton.so' -> 'dpdk/pmds-21.1/librte_event_skeleton.so'
'./librte_event_skeleton.so.21' -> 'dpdk/pmds-21.1/librte_event_skeleton.so.21'
'./librte_event_skeleton.so.21.1' -> 'dpdk/pmds-21.1/librte_event_skeleton.so.21.1'
'./librte_event_sw.so' -> 'dpdk/pmds-21.1/librte_event_sw.so'
'./librte_event_sw.so.21' -> 'dpdk/pmds-21.1/librte_event_sw.so.21'
'./librte_event_sw.so.21.1' -> 'dpdk/pmds-21.1/librte_event_sw.so.21.1'
'./librte_mempool_bucket.so' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so'
'./librte_mempool_bucket.so.21' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so.21'
'./librte_mempool_bucket.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so.21.1'
'./librte_mempool_dpaa2.so' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so'
'./librte_mempool_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so.21'
'./librte_mempool_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so.21.1'
'./librte_mempool_dpaa.so' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so'
'./librte_mempool_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so.21'
'./librte_mempool_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so.21.1'
'./librte_mempool_octeontx2.so' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so'
'./librte_mempool_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so.21'
'./librte_mempool_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so.21.1'
'./librte_mempool_octeontx.so' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so'
'./librte_mempool_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so.21'
'./librte_mempool_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so.21.1'
'./librte_mempool_ring.so' -> 'dpdk/pmds-21.1/librte_mempool_ring.so'
'./librte_mempool_ring.so.21' -> 'dpdk/pmds-21.1/librte_mempool_ring.so.21'
'./librte_mempool_ring.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_ring.so.21.1'
'./librte_mempool_stack.so' -> 'dpdk/pmds-21.1/librte_mempool_stack.so'
'./librte_mempool_stack.so.21' -> 'dpdk/pmds-21.1/librte_mempool_stack.so.21'
'./librte_mempool_stack.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_stack.so.21.1'
'./librte_net_af_packet.so' -> 'dpdk/pmds-21.1/librte_net_af_packet.so'
'./librte_net_af_packet.so.21' -> 'dpdk/pmds-21.1/librte_net_af_packet.so.21'
'./librte_net_af_packet.so.21.1' -> 'dpdk/pmds-21.1/librte_net_af_packet.so.21.1'
'./librte_net_ark.so' -> 'dpdk/pmds-21.1/librte_net_ark.so'
'./librte_net_ark.so.21' -> 'dpdk/pmds-21.1/librte_net_ark.so.21'
'./librte_net_ark.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ark.so.21.1'
'./librte_net_atlantic.so' -> 'dpdk/pmds-21.1/librte_net_atlantic.so'
'./librte_net_atlantic.so.21' -> 'dpdk/pmds-21.1/librte_net_atlantic.so.21'
'./librte_net_atlantic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_atlantic.so.21.1'
'./librte_net_avp.so' -> 'dpdk/pmds-21.1/librte_net_avp.so'
'./librte_net_avp.so.21' -> 'dpdk/pmds-21.1/librte_net_avp.so.21'
'./librte_net_avp.so.21.1' -> 'dpdk/pmds-21.1/librte_net_avp.so.21.1'
'./librte_net_axgbe.so' -> 'dpdk/pmds-21.1/librte_net_axgbe.so'
'./librte_net_axgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_axgbe.so.21'
'./librte_net_axgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_axgbe.so.21.1'
'./librte_net_bnx2x.so' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so'
'./librte_net_bnx2x.so.21' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so.21'
'./librte_net_bnx2x.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so.21.1'
'./librte_net_bnxt.so' -> 'dpdk/pmds-21.1/librte_net_bnxt.so'
'./librte_net_bnxt.so.21' -> 'dpdk/pmds-21.1/librte_net_bnxt.so.21'
'./librte_net_bnxt.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bnxt.so.21.1'
'./librte_net_bond.so' -> 'dpdk/pmds-21.1/librte_net_bond.so'
'./librte_net_bond.so.21' -> 'dpdk/pmds-21.1/librte_net_bond.so.21'
'./librte_net_bond.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bond.so.21.1'
'./librte_net_cxgbe.so' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so'
'./librte_net_cxgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so.21'
'./librte_net_cxgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so.21.1'
'./librte_net_dpaa2.so' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so'
'./librte_net_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so.21'
'./librte_net_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so.21.1'
'./librte_net_dpaa.so' -> 'dpdk/pmds-21.1/librte_net_dpaa.so'
'./librte_net_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_net_dpaa.so.21'
'./librte_net_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_net_dpaa.so.21.1'
'./librte_net_e1000.so' -> 'dpdk/pmds-21.1/librte_net_e1000.so'
'./librte_net_e1000.so.21' -> 'dpdk/pmds-21.1/librte_net_e1000.so.21'
'./librte_net_e1000.so.21.1' -> 'dpdk/pmds-21.1/librte_net_e1000.so.21.1'
'./librte_net_ena.so' -> 'dpdk/pmds-21.1/librte_net_ena.so'
'./librte_net_ena.so.21' -> 'dpdk/pmds-21.1/librte_net_ena.so.21'
'./librte_net_ena.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ena.so.21.1'
'./librte_net_enetc.so' -> 'dpdk/pmds-21.1/librte_net_enetc.so'
'./librte_net_enetc.so.21' -> 'dpdk/pmds-21.1/librte_net_enetc.so.21'
'./librte_net_enetc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_enetc.so.21.1'
'./librte_net_enic.so' -> 'dpdk/pmds-21.1/librte_net_enic.so'
'./librte_net_enic.so.21' -> 'dpdk/pmds-21.1/librte_net_enic.so.21'
'./librte_net_enic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_enic.so.21.1'
'./librte_net_failsafe.so' -> 'dpdk/pmds-21.1/librte_net_failsafe.so'
'./librte_net_failsafe.so.21' -> 'dpdk/pmds-21.1/librte_net_failsafe.so.21'
'./librte_net_failsafe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_failsafe.so.21.1'
'./librte_net_fm10k.so' -> 'dpdk/pmds-21.1/librte_net_fm10k.so'
'./librte_net_fm10k.so.21' -> 'dpdk/pmds-21.1/librte_net_fm10k.so.21'
'./librte_net_fm10k.so.21.1' -> 'dpdk/pmds-21.1/librte_net_fm10k.so.21.1'
'./librte_net_hinic.so' -> 'dpdk/pmds-21.1/librte_net_hinic.so'
'./librte_net_hinic.so.21' -> 'dpdk/pmds-21.1/librte_net_hinic.so.21'
'./librte_net_hinic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_hinic.so.21.1'
'./librte_net_hns3.so' -> 'dpdk/pmds-21.1/librte_net_hns3.so'
'./librte_net_hns3.so.21' -> 'dpdk/pmds-21.1/librte_net_hns3.so.21'
'./librte_net_hns3.so.21.1' -> 'dpdk/pmds-21.1/librte_net_hns3.so.21.1'
'./librte_net_i40e.so' -> 'dpdk/pmds-21.1/librte_net_i40e.so'
'./librte_net_i40e.so.21' -> 'dpdk/pmds-21.1/librte_net_i40e.so.21'
'./librte_net_i40e.so.21.1' -> 'dpdk/pmds-21.1/librte_net_i40e.so.21.1'
'./librte_net_iavf.so' -> 'dpdk/pmds-21.1/librte_net_iavf.so'
'./librte_net_iavf.so.21' -> 'dpdk/pmds-21.1/librte_net_iavf.so.21'
'./librte_net_iavf.so.21.1' -> 'dpdk/pmds-21.1/librte_net_iavf.so.21.1'
'./librte_net_ice.so' -> 'dpdk/pmds-21.1/librte_net_ice.so'
'./librte_net_ice.so.21' -> 'dpdk/pmds-21.1/librte_net_ice.so.21'
'./librte_net_ice.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ice.so.21.1'
'./librte_net_igc.so' -> 'dpdk/pmds-21.1/librte_net_igc.so'
'./librte_net_igc.so.21' -> 'dpdk/pmds-21.1/librte_net_igc.so.21'
'./librte_net_igc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_igc.so.21.1'
'./librte_net_ixgbe.so' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so'
'./librte_net_ixgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so.21'
'./librte_net_ixgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so.21.1'
'./librte_net_kni.so' -> 'dpdk/pmds-21.1/librte_net_kni.so'
'./librte_net_kni.so.21' -> 'dpdk/pmds-21.1/librte_net_kni.so.21'
'./librte_net_kni.so.21.1' -> 'dpdk/pmds-21.1/librte_net_kni.so.21.1'
'./librte_net_liquidio.so' -> 'dpdk/pmds-21.1/librte_net_liquidio.so'
'./librte_net_liquidio.so.21' -> 'dpdk/pmds-21.1/librte_net_liquidio.so.21'
'./librte_net_liquidio.so.21.1' -> 'dpdk/pmds-21.1/librte_net_liquidio.so.21.1'
'./librte_net_memif.so' -> 'dpdk/pmds-21.1/librte_net_memif.so'
'./librte_net_memif.so.21' -> 'dpdk/pmds-21.1/librte_net_memif.so.21'
'./librte_net_memif.so.21.1' -> 'dpdk/pmds-21.1/librte_net_memif.so.21.1'
'./librte_net_netvsc.so' -> 'dpdk/pmds-21.1/librte_net_netvsc.so'
'./librte_net_netvsc.so.21' -> 'dpdk/pmds-21.1/librte_net_netvsc.so.21'
'./librte_net_netvsc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_netvsc.so.21.1'
'./librte_net_nfp.so' -> 'dpdk/pmds-21.1/librte_net_nfp.so'
'./librte_net_nfp.so.21' -> 'dpdk/pmds-21.1/librte_net_nfp.so.21'
'./librte_net_nfp.so.21.1' -> 'dpdk/pmds-21.1/librte_net_nfp.so.21.1'
'./librte_net_null.so' -> 'dpdk/pmds-21.1/librte_net_null.so'
'./librte_net_null.so.21' -> 'dpdk/pmds-21.1/librte_net_null.so.21'
'./librte_net_null.so.21.1' -> 'dpdk/pmds-21.1/librte_net_null.so.21.1'
'./librte_net_octeontx2.so' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so'
'./librte_net_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so.21'
'./librte_net_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so.21.1'
'./librte_net_octeontx.so' -> 'dpdk/pmds-21.1/librte_net_octeontx.so'
'./librte_net_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_net_octeontx.so.21'
'./librte_net_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_net_octeontx.so.21.1'
'./librte_net_pfe.so' -> 'dpdk/pmds-21.1/librte_net_pfe.so'
'./librte_net_pfe.so.21' -> 'dpdk/pmds-21.1/librte_net_pfe.so.21'
'./librte_net_pfe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_pfe.so.21.1'
'./librte_net_qede.so' -> 'dpdk/pmds-21.1/librte_net_qede.so'
'./librte_net_qede.so.21' -> 'dpdk/pmds-21.1/librte_net_qede.so.21'
'./librte_net_qede.so.21.1' -> 'dpdk/pmds-21.1/librte_net_qede.so.21.1'
'./librte_net_ring.so' -> 'dpdk/pmds-21.1/librte_net_ring.so'
'./librte_net_ring.so.21' -> 'dpdk/pmds-21.1/librte_net_ring.so.21'
'./librte_net_ring.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ring.so.21.1'
'./librte_net_sfc.so' -> 'dpdk/pmds-21.1/librte_net_sfc.so'
'./librte_net_sfc.so.21' -> 'dpdk/pmds-21.1/librte_net_sfc.so.21'
'./librte_net_sfc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_sfc.so.21.1'
'./librte_net_softnic.so' -> 'dpdk/pmds-21.1/librte_net_softnic.so'
'./librte_net_softnic.so.21' -> 'dpdk/pmds-21.1/librte_net_softnic.so.21'
'./librte_net_softnic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_softnic.so.21.1'
'./librte_net_tap.so' -> 'dpdk/pmds-21.1/librte_net_tap.so'
'./librte_net_tap.so.21' -> 'dpdk/pmds-21.1/librte_net_tap.so.21'
'./librte_net_tap.so.21.1' -> 'dpdk/pmds-21.1/librte_net_tap.so.21.1'
'./librte_net_thunderx.so' -> 'dpdk/pmds-21.1/librte_net_thunderx.so'
'./librte_net_thunderx.so.21' -> 'dpdk/pmds-21.1/librte_net_thunderx.so.21'
'./librte_net_thunderx.so.21.1' -> 'dpdk/pmds-21.1/librte_net_thunderx.so.21.1'
'./librte_net_txgbe.so' -> 'dpdk/pmds-21.1/librte_net_txgbe.so'
'./librte_net_txgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_txgbe.so.21'
'./librte_net_txgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_txgbe.so.21.1'
'./librte_net_vdev_netvsc.so' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so'
'./librte_net_vdev_netvsc.so.21' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so.21'
'./librte_net_vdev_netvsc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so.21.1'
'./librte_net_vhost.so' -> 'dpdk/pmds-21.1/librte_net_vhost.so'
'./librte_net_vhost.so.21' -> 'dpdk/pmds-21.1/librte_net_vhost.so.21'
'./librte_net_vhost.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vhost.so.21.1'
'./librte_net_virtio.so' -> 'dpdk/pmds-21.1/librte_net_virtio.so'
'./librte_net_virtio.so.21' -> 'dpdk/pmds-21.1/librte_net_virtio.so.21'
'./librte_net_virtio.so.21.1' -> 'dpdk/pmds-21.1/librte_net_virtio.so.21.1'
'./librte_net_vmxnet3.so' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so'
'./librte_net_vmxnet3.so.21' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so.21'
'./librte_net_vmxnet3.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so.21.1'
'./librte_raw_dpaa2_cmdif.so' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so'
'./librte_raw_dpaa2_cmdif.so.21' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so.21'
'./librte_raw_dpaa2_cmdif.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so.21.1'
'./librte_raw_dpaa2_qdma.so' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so'
'./librte_raw_dpaa2_qdma.so.21' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so.21'
'./librte_raw_dpaa2_qdma.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so.21.1'
'./librte_raw_ioat.so' -> 'dpdk/pmds-21.1/librte_raw_ioat.so'
'./librte_raw_ioat.so.21' -> 'dpdk/pmds-21.1/librte_raw_ioat.so.21'
'./librte_raw_ioat.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_ioat.so.21.1'
'./librte_raw_ntb.so' -> 'dpdk/pmds-21.1/librte_raw_ntb.so'
'./librte_raw_ntb.so.21' -> 'dpdk/pmds-21.1/librte_raw_ntb.so.21'
'./librte_raw_ntb.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_ntb.so.21.1'
'./librte_raw_octeontx2_dma.so' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so'
'./librte_raw_octeontx2_dma.so.21' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so.21'
'./librte_raw_octeontx2_dma.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so.21.1'
'./librte_raw_octeontx2_ep.so' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so'
'./librte_raw_octeontx2_ep.so.21' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so.21'
'./librte_raw_octeontx2_ep.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so.21.1'
'./librte_raw_skeleton.so' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so'
'./librte_raw_skeleton.so.21' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so.21'
'./librte_raw_skeleton.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so.21.1'
'./librte_regex_octeontx2.so' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so'
'./librte_regex_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so.21'
'./librte_regex_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so.21.1'
'./librte_vdpa_ifc.so' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so'
'./librte_vdpa_ifc.so.21' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so.21'
'./librte_vdpa_ifc.so.21.1' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so.21.1'
18/12/2020 11:29:53              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc/lib
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc/drivers
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: rm -rf /root/shared_lib_dpdk
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: mv /root/tmp/dpdk_share_lib/usr/local/lib /root/shared_lib_dpdk
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: cat /root/.bashrc | grep LD_LIBRARY_PATH
18/12/2020 11:29:53              dut.10.240.183.70: export LD_LIBRARY_PATH=/root/shared_lib_dpdk
18/12/2020 11:29:53              dut.10.240.183.70: sed -i 's#export LD_LIBRARY_PATH=.*#export LD_LIBRARY_PATH=/root/shared_lib_dpdk#g' /root/.bashrc
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
18/12/2020 11:29:53              dut.10.240.183.70: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
18/12/2020 11:29:53              dut.10.240.183.70: mkdir -p x86_64-native-linuxapp-gcc/kmod
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53              dut.10.240.183.70: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
18/12/2020 11:29:53              dut.10.240.183.70: 
18/12/2020 11:29:53                         tester: rm -rf ./getPackageByTcpdump.cap
18/12/2020 11:29:53                         tester: 
18/12/2020 11:29:53                         tester: tcpdump -i p2p1 -w ./getPackageByTcpdump.cap 2> /dev/null& 
18/12/2020 11:29:53                         tester: [1] 8053
18/12/2020 11:29:53              dut.10.240.183.70: x86_64-native-linuxapp-gcc/app/test/dpdk-test -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111 -n 4   --file-prefix=dpdk_7694_20201218112735   -d /root/shared_lib_dpdk 
18/12/2020 11:29:54              dut.10.240.183.70: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_7694_20201218112735/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-2048kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:18:00.0 (socket 0)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:18:00.1 (socket 0)
EAL: No legacy callbacks, legacy socket not created
APP: HPET is not enabled, using TSC as default timer
18/12/2020 11:29:54              dut.10.240.183.70: pmd_perf_autotest
18/12/2020 11:30:25              dut.10.240.183.70: 
Start PMD RXTX cycles cost test.
Allocated mbuf pool on socket 0
Allocated mbuf pool on socket 1
CONFIG RXD=1024 TXD=1024
Performance test runs on lcore 2 socket 0
Port 0 Address:3C:FD:FE:C8:17:B0
Port 1 Address:3C:FD:FE:C8:17:B1
Checking link statuses...
Port 0 Link up at 40 Gbps FDX Autoneg
Port 1 Link up at 40 Gbps FDX Autoneg
IPv4 pktlen 46
UDP pktlen 26
Generate 64 packets @socket 0
inject 32 packet to port 0
inject 32 packet to port 1
Total packets inject to prime ports = 64
Each port will do 59523809 packets per second
Test will stop after at least 238095236 packets received

18/12/2020 11:30:25              dut.10.240.183.70: kill_all: called by dut and prefix list has value.
18/12/2020 11:30:27              dut.10.240.183.70: Killed
[PEXPECT]# 
18/12/2020 11:30:27                         tester: killall tcpdump
18/12/2020 11:30:27                         tester: 
18/12/2020 11:30:27                         tester: tcpdump -nn -e -v -r ./getPackageByTcpdump.cap
18/12/2020 11:30:27                         tester: reading from file ./getPackageByTcpdump.cap, link-type EN10MB (Ethernet)
11:29:54.646561 3c:fd:fe:c8:17:b0 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 83: LLDP, length 69
	Chassis ID TLV (1), length 7
	  Subtype MAC address (4): 3c:fd:fe:c8:17:b0
	Port ID TLV (2), length 7
	  Subtype MAC address (3): 3c:fd:fe:c8:17:b0
	Time to Live TLV (3), length 2: TTL 121s
	Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
	  ETS Configuration Subtype (9)
	    Willing:0, CBS:0, RES:0, Max TCs:0
	    Priority Assignment Table
	     Priority : 0   1   2   3   4   5   6   7
	     Value    : 0   0   0   0   0   0   0   0  
	    TC Bandwidth Table
	     TC%   : 0   1   2   3   4   5   6   7
	     Value : 100 0   0   0   0   0   0   0  
	    TSA Assignment Table
	     Traffic Class: 0   1   2   3   4   5   6   7
	     Value        : 2   0   0   0   0   0   0   0  
	Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
	  Priority Flow Control Configuration Subtype (11)
	    Willing: 0, MBC: 0, RES: 0, PFC cap:8 
	    PFC Enable
	     Priority : 0  1  2  3  4  5  6  7
	     Value    : 0  0  0  0  0  0  0  0  
	Organization specific TLV (127), length 8: OUI Ethernet bridged (0x0080c2)
	  Application Priority Subtype (12)
	    RES: 0
	    Application Priority Table
	      Priority: 3, RES: 0, Sel: 1, Protocol ID: 24969
	End TLV (0), length 0
11:29:54.653876 3c:fd:fe:c8:17:b0 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 110: LLDP, length 96
	Chassis ID TLV (1), length 7
	  Subtype MAC address (4): 3c:fd:fe:c8:17:b0
	Port ID TLV (2), length 7
	  Subtype MAC address (3): 3c:fd:fe:c8:17:b0
	Time to Live TLV (3), length 2: TTL 121s
	Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
	  ETS Configuration Subtype (9)
	    Willing:0, CBS:0, RES:0, Max TCs:0
	    Priority Assignment Table
	     Priority : 0   1   2   3   4   5   6   7
	     Value    : 0   0   0   0   0   0   0   0  
	    TC Bandwidth Table
	     TC%   : 0   1   2   3   4   5   6   7
	     Value : 100 0   0   0   0   0   0   0  
	    TSA Assignment Table
	     Traffic Class: 0   1   2   3   4   5   6   7
	     Value        : 2   0   0   0   0   0   0   0  
	Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
	  ETS Recommendation Subtype (10)
	    RES: 0
	    Priority Assignment Table
	     Priority : 0   1   2   3   4   5   6   7
	     Value    : 0   0   0   0   0   0   0   0  
	    TC Bandwidth Table
	     TC%   : 0   1   2   3   4   5   6   7
	     Value : 100 0   0   0   0   0   0   0  
	    TSA Assignment Table
	     Traffic Class: 0   1   2   3   4   5   6   7
	     Value        : 2   0   0   0   0   0   0   0  
	Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
	  Priority Flow Control Configuration Subtype (11)
	    Willing: 0, MBC: 0, RES: 0, PFC cap:8 
	    PFC Enable
	     Priority : 0  1  2  3  4  5  6  7
	     Value    : 0  0  0  0  0  0  0  0  
	Organization specific TLV (127), length 8: OUI Ethernet bridged (0x0080c2)
	  Application Priority Subtype (12)
	    RES: 0
	    Application Priority Table
	      Priority: 3, RES: 0, Sel: 1, Protocol ID: 24969
	End TLV (0), length 0
11:29:54.653952 3c:fd:fe:c8:17:b0 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 60: LLDP, length 46
	Chassis ID TLV (1), length 7
	  Subtype MAC address (4): 3c:fd:fe:c8:17:b0
	Port ID TLV (2), length 7
	  Subtype MAC address (3): 3c:fd:fe:c8:17:b0
	Time to Live TLV (3), length 2: TTL 0s
	End TLV (0), length 0
11:30:01.478826 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478886 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478903 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478919 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478936 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478953 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478969 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.478986 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479003 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479019 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479035 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479051 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479068 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479084 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479101 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479118 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479134 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479151 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479167 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479184 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479200 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479217 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479233 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479249 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479265 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479281 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479297 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479313 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479329 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479345 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479361 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
11:30:01.479377 00:ff:aa:ff:aa:ff > 00:aa:ff:aa:ff:aa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 0, offset 0, flags [none], proto UDP (17), length 46)
    10.0.0.1.0 > 10.0.0.2.0: UDP, length 18
[1]+  Done                    tcpdump -i p2p1 -w ./getPackageByTcpdump.cap 2> /dev/null
18/12/2020 11:30:27          TestUnitTestsLoopback: Test Case test_link_mode Result PASSED:
18/12/2020 11:30:27              dut.10.240.183.70: rm -fr app/test/test_pmd_perf.c
18/12/2020 11:30:27              dut.10.240.183.70: 
18/12/2020 11:30:27              dut.10.240.183.70: cp /tmp/test_pmd_perf.c app/test/test_pmd_perf.c
18/12/2020 11:30:28              dut.10.240.183.70: 
18/12/2020 11:30:28              dut.10.240.183.70: kill_all: called by dut and has no prefix list.
18/12/2020 11:30:28          TestUnitTestsLoopback: Test Case test_loopback_mode Begin
18/12/2020 11:30:28              dut.10.240.183.70: 
18/12/2020 11:30:28                         tester:  
18/12/2020 11:30:28              dut.10.240.183.70: sed -i -e 's/lpbk_mode = 0/lpbk_mode = 1/' app/test/test_pmd_perf.c
18/12/2020 11:30:28              dut.10.240.183.70: 
18/12/2020 11:30:28              dut.10.240.183.70: sed -i '/RTE_BUILD_SHARED_LIB/d' config/rte_config.h
18/12/2020 11:30:29              dut.10.240.183.70: 
18/12/2020 11:30:29              dut.10.240.183.70: sed -i '$a\#define RTE_BUILD_SHARED_LIB 1' config/rte_config.h
18/12/2020 11:30:29              dut.10.240.183.70: 
18/12/2020 11:30:29              dut.10.240.183.70: sed -i '/{ RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF) },/a { RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_VF) },' drivers/net/iavf/iavf_ethdev.c
18/12/2020 11:30:29              dut.10.240.183.70: 
18/12/2020 11:30:29              dut.10.240.183.70: sed -i -e '/I40E_DEV_ID_VF/s/0x154C/0x164C/g'  drivers/net/i40e/base/i40e_devids.h
18/12/2020 11:30:29              dut.10.240.183.70: 
18/12/2020 11:30:29              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc
18/12/2020 11:30:29              dut.10.240.183.70: 
18/12/2020 11:30:29              dut.10.240.183.70: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=shared x86_64-native-linuxapp-gcc
18/12/2020 11:30:34              dut.10.240.183.70: The Meson build system
Version: 0.56.0
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/usr/bin/cat)
Project name: DPDK
Project version: 21.02.0-rc0
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 8.3.1 "gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.30-79
Using 'CC' from environment with value: 'gcc'
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
Program gen-pmdinfo-cfile.sh found: YES (/root/dpdk/buildtools/gen-pmdinfo-cfile.sh)
Program list-dir-globs.py found: YES (/root/dpdk/buildtools/list-dir-globs.py)
Program check-symbols.sh found: YES (/root/dpdk/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/root/dpdk/buildtools/options-ibverbs-static.sh)
Program binutils-avx512-check.sh found: YES (/root/dpdk/buildtools/binutils-avx512-check.sh)
Program python3 found: YES (/usr/bin/python3.6)
Program cat found: YES (/usr/bin/cat)
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (1.4.2)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Run-time dependency libpcap found: NO (tried pkgconfig)
Library pcap found: NO
Compiler for C supports arguments -Wextra: YES 
config/meson.build:231: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member: NO 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" : 1 
Fetching value of define "__AVX512BW__" : 1 
Fetching value of define "__AVX512CD__" : 1 
Fetching value of define "__AVX512DQ__" : 1 
Fetching value of define "__AVX512F__" : 1 
Fetching value of define "__AVX512VL__" : 1 
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__AVX512CD__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Message: lib/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: YES 0.180
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable: YES 
Compiler for C supports arguments -Wno-empty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/common/qat: Defining dependency "common_qat"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "net_dpaa"
Message: drivers/net/dpaa2: Defining dependency "net_dpaa2"
Compiler for C supports arguments -Wno-uninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "net_e1000"
Message: drivers/net/ena: Defining dependency "net_ena"
Message: drivers/net/enetc: Defining dependency "net_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "net_enic"
Message: drivers/net/failsafe: Defining dependency "net_failsafe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format: YES 
Compiler for C supports arguments -Wno-format-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES (cached)
Message: drivers/net/ice: Defining dependency "net_ice"
Message: drivers/net/igc: Defining dependency "net_igc"
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Compiler for C supports arguments -Wno-pointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function: YES 
Compiler for C supports arguments -Wno-unused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility: NO 
Compiler for C supports arguments -Wno-empty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "net_qede"
Message: drivers/net/ring: Defining dependency "net_ring"
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : YES 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : YES 
Configuring tap_autoconf.h using configuration
Message: drivers/net/tap: Defining dependency "net_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
Message: drivers/net/txgbe: Defining dependency "net_txgbe"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "net_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "net_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Run-time dependency libaarch64crypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "compress_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES (/root/dpdk/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

libs:
	kvargs, telemetry, eal, ring, rcu, mempool, mbuf, net, 
	meter, ethdev, pci, cmdline, metrics, hash, timer, acl, 
	bbdev, bitratestats, cfgfile, compressdev, cryptodev, distributor, efd, eventdev, 
	gro, gso, ip_frag, jobstats, kni, latencystats, lpm, member, 
	power, pdump, rawdev, regexdev, rib, reorder, sched, security, 
	stack, vhost, ipsec, fib, port, table, pipeline, flow_classify, 
	bpf, graph, node, 

Message: 
===============
Drivers Enabled
===============

common:
	cpt, dpaax, iavf, octeontx, octeontx2, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pfe, qede, ring, sfc, softnic, tap, thunderx, txgbe, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	dlb, dlb2, dpaa, dpaa2, octeontx2, opdl, skeleton, sw, 
	dsw, octeontx, 
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, acc100, 

Message: 
=================
Content Skipped
=================

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	crypto/qat:	missing dependency, libcrypto
	net/af_xdp:	missing dependency, "libbpf"
	net/ipn3ke:	missing dependency, "libfdt"
	net/mlx4:	missing dependency, "mlx4"
	net/mlx5:	missing internal dependency, "common_mlx5"
	net/mvneta:	missing dependency, "libmusdk"
	net/mvpp2:	missing dependency, "libmusdk"
	net/nfb:	missing dependency, "libnfb"
	net/pcap:	missing dependency, "libpcap"
	net/szedata2:	missing dependency, "libsze2"
	raw/ifpga:	missing dependency, "libfdt"
	crypto/aesni_gcm:	missing dependency, "libIPSec_MB"
	crypto/aesni_mb:	missing dependency, "libIPSec_MB"
	crypto/armv8:	missing dependency, "libAArch64crypto"
	crypto/ccp:	missing dependency, "libcrypto"
	crypto/kasumi:	missing dependency, "libIPSec_MB"
	crypto/mvsam:	missing dependency, "libmusdk"
	crypto/openssl:	missing dependency, "libcrypto"
	crypto/snow3g:	missing dependency, "libIPSec_MB"
	crypto/zuc:	missing dependency, "libIPSec_MB"
	compress/isal:	missing dependency, "libisal"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 992

Option default_library is: shared [default: static]
Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
18/12/2020 11:30:34              dut.10.240.183.70: ninja -C x86_64-native-linuxapp-gcc -j 110
18/12/2020 11:31:17              dut.10.240.183.70: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2476] Compiling C object buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
[2/2476] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[3/2476] Generating rte_kvargs_def with a custom command
[4/2476] Generating rte_kvargs_mingw with a custom command
[5/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[6/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[7/2476] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[8/2476] Generating rte_telemetry_def with a custom command
[9/2476] Generating rte_telemetry_mingw with a custom command
[10/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[11/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[12/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[13/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[14/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[15/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[16/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[17/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[18/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[19/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[20/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[21/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[22/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[23/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[24/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[25/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[26/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[27/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[28/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[29/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[30/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[31/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[32/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[33/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[34/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[35/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[36/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[37/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[38/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[39/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[40/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[41/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[42/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[43/2476] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[44/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[45/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[46/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[47/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[48/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[49/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[50/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[51/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[52/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[53/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[54/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[55/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[56/2476] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[57/2476] Generating rte_eal_mingw with a custom command
[58/2476] Generating rte_ring_mingw with a custom command
[59/2476] Generating rte_rcu_def with a custom command
[60/2476] Generating rte_eal_def with a custom command
[61/2476] Generating rte_ring_def with a custom command
[62/2476] Generating rte_rcu_mingw with a custom command
[63/2476] Generating rte_mempool_def with a custom command
[64/2476] Generating rte_mempool_mingw with a custom command
[65/2476] Generating rte_mbuf_def with a custom command
[66/2476] Generating rte_mbuf_mingw with a custom command
[67/2476] Generating rte_net_def with a custom command
[68/2476] Generating rte_net_mingw with a custom command
[69/2476] Generating rte_meter_def with a custom command
[70/2476] Generating rte_meter_mingw with a custom command
[71/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[72/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[73/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[74/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[75/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[76/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[77/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[78/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[79/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[80/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[81/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[82/2476] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[83/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[84/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[85/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[86/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[87/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[88/2476] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[89/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[90/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[91/2476] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[92/2476] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[93/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[94/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[95/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[96/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[97/2476] Linking target buildtools/pmdinfogen/pmdinfogen
[98/2476] Linking static target lib/librte_kvargs.a
[99/2476] Generating rte_ethdev_def with a custom command
[100/2476] Generating rte_ethdev_mingw with a custom command
[101/2476] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[102/2476] Generating rte_pci_def with a custom command
[103/2476] Linking static target lib/librte_telemetry.a
[104/2476] Generating rte_pci_mingw with a custom command
[105/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[106/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[107/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[108/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[109/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[110/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[111/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[112/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[113/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[114/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[115/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[116/2476] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[117/2476] Generating rte_cmdline_def with a custom command
[118/2476] Generating rte_cmdline_mingw with a custom command
[119/2476] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[120/2476] Generating rte_metrics_def with a custom command
[121/2476] Generating rte_metrics_mingw with a custom command
[122/2476] Generating rte_hash_def with a custom command
[123/2476] Generating rte_hash_mingw with a custom command
[124/2476] Generating rte_timer_def with a custom command
[125/2476] Generating rte_timer_mingw with a custom command
[126/2476] Generating rte_acl_def with a custom command
[127/2476] Generating rte_acl_mingw with a custom command
[128/2476] Generating rte_bbdev_def with a custom command
[129/2476] Generating rte_bbdev_mingw with a custom command
[130/2476] Generating rte_bitratestats_def with a custom command
[131/2476] Generating rte_bitratestats_mingw with a custom command
[132/2476] Generating rte_cfgfile_def with a custom command
[133/2476] Generating rte_cfgfile_mingw with a custom command
[134/2476] Generating rte_compressdev_mingw with a custom command
[135/2476] Generating rte_compressdev_def with a custom command
[136/2476] Generating rte_table_mingw with a custom command
[137/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[138/2476] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[139/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[140/2476] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[141/2476] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[142/2476] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[143/2476] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[144/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[145/2476] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[146/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[147/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[148/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[149/2476] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[150/2476] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[151/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[152/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[153/2476] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[154/2476] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[155/2476] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[156/2476] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[157/2476] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[158/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[159/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[160/2476] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[161/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[162/2476] Generating rte_cryptodev_def with a custom command
[163/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[164/2476] Generating rte_cryptodev_mingw with a custom command
[165/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[166/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[167/2476] Generating rte_distributor_mingw with a custom command
[168/2476] Generating rte_distributor_def with a custom command
[169/2476] Generating rte_flow_classify_def with a custom command
[170/2476] Generating rte_efd_def with a custom command
[171/2476] Generating rte_efd_mingw with a custom command
[172/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[173/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[174/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[175/2476] Generating rte_eventdev_def with a custom command
[176/2476] Linking static target lib/librte_ring.a
[177/2476] Generating rte_eventdev_mingw with a custom command
[178/2476] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[179/2476] Generating rte_gro_def with a custom command
[180/2476] Generating rte_gro_mingw with a custom command
[181/2476] Linking static target lib/librte_meter.a
[182/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[183/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[184/2476] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[185/2476] Generating rte_gso_def with a custom command
[186/2476] Generating rte_gso_mingw with a custom command
[187/2476] Linking static target lib/librte_pci.a
[188/2476] Generating rte_ip_frag_def with a custom command
[189/2476] Generating rte_ip_frag_mingw with a custom command
[190/2476] Generating rte_jobstats_def with a custom command
[191/2476] Generating rte_jobstats_mingw with a custom command
[192/2476] Generating rte_kni_def with a custom command
[193/2476] Generating rte_kni_mingw with a custom command
[194/2476] Linking static target lib/librte_cmdline.a
[195/2476] Generating rte_latencystats_def with a custom command
[196/2476] Linking static target lib/librte_metrics.a
[197/2476] Generating rte_latencystats_mingw with a custom command
[198/2476] Generating rte_lpm_def with a custom command
[199/2476] Generating rte_lpm_mingw with a custom command
[200/2476] Generating rte_member_def with a custom command
[201/2476] Generating rte_member_mingw with a custom command
[202/2476] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[203/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[204/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[205/2476] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[206/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[207/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[208/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[209/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[210/2476] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[211/2476] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[212/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[213/2476] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[214/2476] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[215/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[216/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[217/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[218/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[219/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[220/2476] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[221/2476] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[222/2476] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[223/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[224/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[225/2476] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[226/2476] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[227/2476] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[228/2476] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[229/2476] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[230/2476] Generating rte_power_def with a custom command
[231/2476] Generating rte_power_mingw with a custom command
[232/2476] Linking static target lib/librte_eal.a
[233/2476] Linking static target lib/librte_rcu.a
[234/2476] Linking static target lib/librte_mempool.a
[235/2476] Linking static target lib/librte_mbuf.a
[236/2476] Generating rte_pdump_def with a custom command
[237/2476] Linking static target lib/librte_net.a
[238/2476] Generating rte_pdump_mingw with a custom command
[239/2476] Generating rte_rawdev_def with a custom command
[240/2476] Generating rte_rawdev_mingw with a custom command
[241/2476] Linking static target lib/librte_timer.a
[242/2476] Generating rte_regexdev_def with a custom command
[243/2476] Generating rte_regexdev_mingw with a custom command
[244/2476] Linking static target lib/librte_bbdev.a
[245/2476] Linking static target lib/librte_bitratestats.a
[246/2476] Linking static target lib/librte_cfgfile.a
[247/2476] Generating rte_rib_def with a custom command
[248/2476] Linking static target lib/librte_compressdev.a
[249/2476] Generating rte_rib_mingw with a custom command
[250/2476] Generating rte_reorder_def with a custom command
[251/2476] Generating rte_reorder_mingw with a custom command
[252/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[253/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[254/2476] Generating rte_sched_def with a custom command
[255/2476] Generating rte_sched_mingw with a custom command
[256/2476] Generating rte_security_def with a custom command
[257/2476] Generating rte_security_mingw with a custom command
[258/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[259/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[260/2476] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[261/2476] Generating rte_stack_def with a custom command
[262/2476] Generating rte_stack_mingw with a custom command
[263/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[264/2476] Generating rte_vhost_def with a custom command
[265/2476] Generating rte_vhost_mingw with a custom command
[266/2476] Generating rte_ipsec_mingw with a custom command
[267/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[268/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx2.c.o
[269/2476] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[270/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[271/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[272/2476] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[273/2476] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[274/2476] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[275/2476] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[276/2476] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[277/2476] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[278/2476] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[279/2476] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[280/2476] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[281/2476] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[282/2476] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[283/2476] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[284/2476] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[285/2476] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[286/2476] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[287/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[288/2476] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[289/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[290/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[291/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[292/2476] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[293/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[294/2476] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[295/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[296/2476] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[297/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[298/2476] Generating rte_ipsec_def with a custom command
[299/2476] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[300/2476] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[301/2476] Linking static target lib/librte_cryptodev.a
[302/2476] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[303/2476] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[304/2476] Linking static target lib/librte_distributor.a
[305/2476] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8_avx512.c.o
[306/2476] Compiling C object lib/librte_fib.a.p/librte_fib_trie_avx512.c.o
[307/2476] Generating rte_fib_def with a custom command
[308/2476] Generating rte_fib_mingw with a custom command
[309/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[310/2476] Linking static target lib/librte_gro.a
[311/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[312/2476] Linking static target lib/librte_gso.a
[313/2476] Linking target lib/librte_kvargs.so.21.1
[314/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[315/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[316/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[317/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[318/2476] Linking static target lib/librte_ip_frag.a
[319/2476] Linking static target lib/librte_jobstats.a
[320/2476] Linking static target lib/librte_latencystats.a
[321/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[322/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[323/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[324/2476] Generating rte_port_def with a custom command
[325/2476] Generating rte_port_mingw with a custom command
[326/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[327/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[328/2476] Generating rte_table_def with a custom command
[329/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[330/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[331/2476] Linking static target lib/librte_stack.a
[332/2476] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[333/2476] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx512.c.o
[334/2476] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[335/2476] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[336/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[337/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[338/2476] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[339/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[340/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[341/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[342/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[343/2476] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[344/2476] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[345/2476] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[346/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[347/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[348/2476] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[349/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[350/2476] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[351/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[352/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[353/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[354/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[355/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[356/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[357/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[358/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[359/2476] Generating rte_pipeline_def with a custom command
[360/2476] Generating rte_pipeline_mingw with a custom command
[361/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[362/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[363/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[364/2476] Linking static target lib/librte_efd.a
[365/2476] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[366/2476] Generating rte_flow_classify_mingw with a custom command
[367/2476] Linking target lib/librte_telemetry.so.21.1
[368/2476] Linking static target lib/librte_kni.a
[369/2476] Linking static target lib/librte_lpm.a
[370/2476] Linking static target lib/librte_member.a
[371/2476] Linking static target lib/librte_power.a
[372/2476] Linking static target lib/librte_pdump.a
[373/2476] Linking static target lib/librte_rawdev.a
[374/2476] Linking static target lib/librte_regexdev.a
[375/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[376/2476] Linking static target lib/librte_rib.a
[377/2476] Linking static target lib/librte_reorder.a
[378/2476] Linking static target lib/librte_security.a
[379/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[380/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load_elf.c.o
[381/2476] Generating rte_bpf_def with a custom command
[382/2476] Generating rte_bpf_mingw with a custom command
[383/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[384/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[385/2476] Generating rte_graph_def with a custom command
[386/2476] Generating rte_graph_mingw with a custom command
[387/2476] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[388/2476] Linking static target lib/librte_fib.a
[389/2476] Generating rte_node_def with a custom command
[390/2476] Generating rte_node_mingw with a custom command
[391/2476] Generating rte_common_cpt_mingw with a custom command
[392/2476] Generating rte_common_cpt_def with a custom command
[393/2476] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[394/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[395/2476] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[396/2476] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[397/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[398/2476] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[399/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[400/2476] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[401/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[402/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[403/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[404/2476] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[405/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[406/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[407/2476] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[408/2476] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[409/2476] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[410/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[411/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[412/2476] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[413/2476] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[414/2476] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[415/2476] Generating symbol file lib/librte_kvargs.so.21.1.p/librte_kvargs.so.21.1.symbols
[416/2476] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[417/2476] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[418/2476] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[419/2476] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[420/2476] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[421/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[422/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[423/2476] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[424/2476] Generating rte_common_dpaax_mingw with a custom command
[425/2476] Generating rte_common_dpaax_def with a custom command
[426/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[427/2476] Linking static target lib/librte_ethdev.a
[428/2476] Linking static target lib/librte_acl.a
[429/2476] Linking static target lib/librte_eventdev.a
[430/2476] Linking static target lib/librte_sched.a
[431/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[432/2476] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[433/2476] Linking static target lib/librte_ipsec.a
[434/2476] Generating rte_common_iavf_def with a custom command
[435/2476] Generating rte_common_iavf_mingw with a custom command
[436/2476] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[437/2476] Generating rte_common_octeontx_def with a custom command
[438/2476] Generating rte_common_octeontx_mingw with a custom command
[439/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[440/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[441/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[442/2476] Generating rte_common_octeontx2_mingw with a custom command
[443/2476] Generating rte_common_octeontx2_def with a custom command
[444/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[445/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[446/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[447/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[448/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[449/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[450/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[451/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[452/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[453/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[454/2476] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[455/2476] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[456/2476] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[457/2476] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[458/2476] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[459/2476] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[460/2476] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[461/2476] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[462/2476] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[463/2476] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[464/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[465/2476] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[466/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[467/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[468/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[469/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[470/2476] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[471/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[472/2476] Generating symbol file lib/librte_telemetry.so.21.1.p/librte_telemetry.so.21.1.symbols
[473/2476] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[474/2476] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[475/2476] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[476/2476] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[477/2476] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[478/2476] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[479/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[480/2476] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[481/2476] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[482/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[483/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[484/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[485/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[486/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[487/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[488/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[489/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[490/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[491/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[492/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[493/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[494/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[495/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[496/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[497/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[498/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[499/2476] Linking static target lib/librte_table.a
[500/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[501/2476] Linking static target lib/librte_flow_classify.a
[502/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[503/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[504/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[505/2476] Linking static target lib/librte_graph.a
[506/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[507/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[508/2476] Linking static target drivers/libtmp_rte_common_cpt.a
[509/2476] Linking static target drivers/libtmp_rte_common_dpaax.a
[510/2476] Generating rte_common_sfc_efx_mingw with a custom command
[511/2476] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[512/2476] Generating rte_common_sfc_efx_def with a custom command
[513/2476] Linking static target drivers/libtmp_rte_common_iavf.a
[514/2476] Linking static target drivers/libtmp_rte_common_octeontx.a
[515/2476] Generating rte_bus_dpaa_mingw with a custom command
[516/2476] Generating rte_bus_dpaa_def with a custom command
[517/2476] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[518/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[519/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[520/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[521/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[522/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[523/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[524/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[525/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[526/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[527/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[528/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[529/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[530/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[531/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[532/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[533/2476] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[534/2476] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[535/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[536/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[537/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[538/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[539/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[540/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[541/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[542/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[543/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[544/2476] Linking static target lib/librte_hash.a
[545/2476] Linking static target lib/librte_port.a
[546/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[547/2476] Linking static target lib/librte_bpf.a
[548/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[549/2476] Linking static target lib/librte_node.a
[550/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[551/2476] Linking static target drivers/libtmp_rte_common_octeontx2.a
[552/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[553/2476] Generating rte_bus_fslmc_mingw with a custom command
[554/2476] Generating rte_bus_fslmc_def with a custom command
[555/2476] Generating rte_bus_ifpga_def with a custom command
[556/2476] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[557/2476] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[558/2476] Generating rte_bus_ifpga_mingw with a custom command
[559/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[560/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[561/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[562/2476] Generating rte_bus_pci_def with a custom command
[563/2476] Generating rte_bus_pci_mingw with a custom command
[564/2476] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[565/2476] Generating rte_bus_vdev_def with a custom command
[566/2476] Generating rte_bus_vdev_mingw with a custom command
[567/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[568/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[569/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[570/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[571/2476] Generating rte_bus_vmbus_def with a custom command
[572/2476] Generating rte_bus_vmbus_mingw with a custom command
[573/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[574/2476] Generating rte_common_qat_def with a custom command
[575/2476] Generating rte_common_qat_mingw with a custom command
[576/2476] Generating rte_mempool_bucket_def with a custom command
[577/2476] Generating rte_mempool_bucket_mingw with a custom command
[578/2476] Generating rte_common_cpt.pmd.c with a custom command
[579/2476] Generating rte_common_dpaax.pmd.c with a custom command
[580/2476] Generating rte_mempool_dpaa_def with a custom command
[581/2476] Generating rte_common_octeontx.pmd.c with a custom command
[582/2476] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[583/2476] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[584/2476] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[585/2476] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[586/2476] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[587/2476] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[588/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[589/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[590/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[591/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[592/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[593/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[594/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[595/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[596/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[597/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[598/2476] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[599/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[600/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[601/2476] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[602/2476] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[603/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[604/2476] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[605/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[606/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[607/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[608/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[609/2476] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[610/2476] Generating rte_mempool_dpaa_mingw with a custom command
[611/2476] Generating rte_common_iavf.pmd.c with a custom command
[612/2476] Generating rte_mempool_dpaa2_def with a custom command
[613/2476] Generating rte_mempool_dpaa2_mingw with a custom command
[614/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[615/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[616/2476] Generating rte_mempool_octeontx_def with a custom command
[617/2476] Generating rte_mempool_octeontx_mingw with a custom command
[618/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[619/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[620/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[621/2476] Generating rte_mempool_octeontx2_def with a custom command
[622/2476] Generating rte_mempool_octeontx2_mingw with a custom command
[623/2476] Generating rte_mempool_ring_def with a custom command
[624/2476] Generating rte_mempool_ring_mingw with a custom command
[625/2476] Generating rte_mempool_stack_def with a custom command
[626/2476] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[627/2476] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[628/2476] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[629/2476] Generating rte_mempool_stack_mingw with a custom command
[630/2476] Generating rte_net_af_packet_def with a custom command
[631/2476] Generating rte_net_af_packet_mingw with a custom command
[632/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[633/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[634/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[635/2476] Generating rte_common_octeontx2.pmd.c with a custom command
[636/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[637/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[638/2476] Generating rte_net_ark_def with a custom command
[639/2476] Generating rte_net_ark_mingw with a custom command
[640/2476] Linking static target drivers/libtmp_rte_bus_ifpga.a
[641/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[642/2476] Generating rte_net_atlantic_mingw with a custom command
[643/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[644/2476] Generating rte_net_atlantic_def with a custom command
[645/2476] Generating rte_net_avp_def with a custom command
[646/2476] Generating rte_net_avp_mingw with a custom command
[647/2476] Generating rte_net_axgbe_def with a custom command
[648/2476] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[649/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[650/2476] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[651/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[652/2476] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[653/2476] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[654/2476] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[655/2476] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[656/2476] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[657/2476] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[658/2476] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[659/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[660/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[661/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[662/2476] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[663/2476] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[664/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[665/2476] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[666/2476] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[667/2476] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[668/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[669/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[670/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[671/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[672/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[673/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[674/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[675/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[676/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[677/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[678/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[679/2476] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[680/2476] Compiling C object drivers/librte_common_cpt.so.21.1.p/meson-generated_.._rte_common_cpt.pmd.c.o
[681/2476] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[682/2476] Compiling C object drivers/librte_common_dpaax.so.21.1.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[683/2476] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[684/2476] Compiling C object drivers/librte_common_octeontx.so.21.1.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[685/2476] Generating rte_net_axgbe_mingw with a custom command
[686/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[687/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[688/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[689/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[690/2476] Generating rte_net_bond_mingw with a custom command
[691/2476] Generating rte_net_bond_def with a custom command
[692/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[693/2476] Linking static target drivers/libtmp_rte_bus_fslmc.a
[694/2476] Linking static target drivers/libtmp_rte_bus_pci.a
[695/2476] Linking static target drivers/libtmp_rte_bus_vdev.a
[696/2476] Generating rte_net_bnx2x_def with a custom command
[697/2476] Linking static target drivers/libtmp_rte_bus_vmbus.a
[698/2476] Generating rte_net_bnx2x_mingw with a custom command
[699/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[700/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[701/2476] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[702/2476] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[703/2476] Compiling C object drivers/librte_common_iavf.so.21.1.p/meson-generated_.._rte_common_iavf.pmd.c.o
[704/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[705/2476] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[706/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[707/2476] Linking static target drivers/libtmp_rte_mempool_stack.a
[708/2476] Generating rte_common_sfc_efx.pmd.c with a custom command
[709/2476] Generating rte_crypto_virtio_mingw with a custom command
[710/2476] Compiling C object drivers/librte_common_octeontx2.so.21.1.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[711/2476] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[712/2476] Generating rte_crypto_virtio_def with a custom command
[713/2476] Generating rte_compress_zlib_mingw with a custom command
[714/2476] Generating rte_bus_ifpga.pmd.c with a custom command
[715/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[716/2476] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[717/2476] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[718/2476] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[719/2476] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[720/2476] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[721/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[722/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[723/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[724/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[725/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[726/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[727/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[728/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[729/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[730/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[731/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[732/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[733/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[734/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[735/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[736/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[737/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[738/2476] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[739/2476] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[740/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[741/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[742/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[743/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[744/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[745/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[746/2476] Linking target lib/librte_eal.so.21.1
[747/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[748/2476] Linking static target drivers/libtmp_rte_bus_dpaa.a
[749/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[750/2476] Linking static target drivers/libtmp_rte_common_qat.a
[751/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[752/2476] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[753/2476] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[754/2476] Linking static target drivers/libtmp_rte_mempool_ring.a
[755/2476] Linking static target drivers/libtmp_rte_net_af_packet.a
[756/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[757/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[758/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[759/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[760/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[761/2476] Linking static target drivers/libtmp_rte_net_ark.a
[762/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[763/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[764/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[765/2476] Linking static target drivers/librte_common_cpt.a
[766/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[767/2476] Linking static target drivers/librte_common_dpaax.a
[768/2476] Linking static target drivers/librte_common_octeontx.a
[769/2476] Generating rte_net_bnxt_mingw with a custom command
[770/2476] Generating rte_net_bnxt_def with a custom command
[771/2476] Generating rte_bus_fslmc.pmd.c with a custom command
[772/2476] Generating rte_bus_pci.pmd.c with a custom command
[773/2476] Generating rte_bus_vdev.pmd.c with a custom command
[774/2476] Generating rte_bus_vmbus.pmd.c with a custom command
[775/2476] Generating rte_mempool_dpaa.pmd.c with a custom command
[776/2476] Linking static target drivers/librte_common_iavf.a
[777/2476] Generating rte_mempool_octeontx.pmd.c with a custom command
[778/2476] Generating rte_mempool_stack.pmd.c with a custom command
[779/2476] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[780/2476] Compiling C object drivers/librte_common_sfc_efx.so.21.1.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[781/2476] Linking static target drivers/librte_common_octeontx2.a
[782/2476] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[783/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[784/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[785/2476] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[786/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[787/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[788/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[789/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[790/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[791/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[792/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[793/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[794/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[795/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[796/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[797/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[798/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[799/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[800/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[801/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[802/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[803/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[804/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[805/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[806/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[807/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[808/2476] Generating rte_net_cxgbe_def with a custom command
[809/2476] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[810/2476] Compiling C object drivers/librte_bus_ifpga.so.21.1.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[811/2476] Linking static target drivers/libtmp_rte_mempool_bucket.a
[812/2476] Generating rte_net_cxgbe_mingw with a custom command
[813/2476] Linking static target drivers/libtmp_rte_net_atlantic.a
[814/2476] Linking static target drivers/libtmp_rte_net_avp.a
[815/2476] Linking static target drivers/libtmp_rte_net_axgbe.a
[816/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[817/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[818/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[819/2476] Generating rte_net_dpaa_def with a custom command
[820/2476] Generating rte_net_dpaa_mingw with a custom command
[821/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[822/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[823/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[824/2476] Linking static target drivers/libtmp_rte_crypto_virtio.a
[825/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[826/2476] Generating rte_net_dpaa2_def with a custom command
[827/2476] Generating rte_net_dpaa2_mingw with a custom command
[828/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[829/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[830/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[831/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[832/2476] Generating rte_bus_dpaa.pmd.c with a custom command
[833/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[834/2476] Generating rte_common_qat.pmd.c with a custom command
[835/2476] Generating rte_mempool_dpaa2.pmd.c with a custom command
[836/2476] Generating rte_mempool_octeontx2.pmd.c with a custom command
[837/2476] Generating rte_mempool_ring.pmd.c with a custom command
[838/2476] Generating rte_net_af_packet.pmd.c with a custom command
[839/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[840/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[841/2476] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[842/2476] Compiling C object drivers/librte_bus_fslmc.so.21.1.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[843/2476] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[844/2476] Compiling C object drivers/librte_bus_pci.so.21.1.p/meson-generated_.._rte_bus_pci.pmd.c.o
[845/2476] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[846/2476] Compiling C object drivers/librte_bus_vdev.so.21.1.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[847/2476] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[848/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[849/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[850/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[851/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[852/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[853/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[854/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[855/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[856/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[857/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[858/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[859/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[860/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[861/2476] Generating symbol file lib/librte_eal.so.21.1.p/librte_eal.so.21.1.symbols
[862/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[863/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[864/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[865/2476] Generating rte_net_ark.pmd.c with a custom command
[866/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[867/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[868/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[869/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[870/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[871/2476] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[872/2476] Linking static target drivers/librte_common_sfc_efx.a
[873/2476] Compiling C object drivers/librte_bus_vmbus.so.21.1.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[874/2476] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[875/2476] Compiling C object drivers/librte_mempool_dpaa.so.21.1.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[876/2476] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[877/2476] Compiling C object drivers/librte_mempool_octeontx.so.21.1.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[878/2476] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[879/2476] Compiling C object drivers/librte_mempool_stack.so.21.1.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[880/2476] Linking static target drivers/libtmp_rte_compress_zlib.a
[881/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[882/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[883/2476] Generating rte_net_e1000_def with a custom command
[884/2476] Generating rte_net_e1000_mingw with a custom command
[885/2476] Generating rte_net_ena_def with a custom command
[886/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[887/2476] Generating rte_net_ena_mingw with a custom command
[888/2476] Generating rte_net_enetc_def with a custom command
[889/2476] Generating rte_net_enetc_mingw with a custom command
[890/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[891/2476] Linking static target drivers/librte_bus_ifpga.a
[892/2476] Generating rte_mempool_bucket.pmd.c with a custom command
[893/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[894/2476] Generating rte_net_atlantic.pmd.c with a custom command
[895/2476] Generating rte_net_avp.pmd.c with a custom command
[896/2476] Generating rte_net_axgbe.pmd.c with a custom command
[897/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[898/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[899/2476] Generating rte_crypto_virtio.pmd.c with a custom command
[900/2476] Generating rte_net_enic_mingw with a custom command
[901/2476] Generating rte_net_enic_def with a custom command
[902/2476] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[903/2476] Compiling C object drivers/librte_bus_dpaa.so.21.1.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[904/2476] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[905/2476] Compiling C object drivers/librte_common_qat.so.21.1.p/meson-generated_.._rte_common_qat.pmd.c.o
[906/2476] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[907/2476] Compiling C object drivers/librte_mempool_dpaa2.so.21.1.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[908/2476] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[909/2476] Compiling C object drivers/librte_mempool_octeontx2.so.21.1.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[910/2476] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[911/2476] Linking static target drivers/librte_bus_fslmc.a
[912/2476] Compiling C object drivers/librte_mempool_ring.so.21.1.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[913/2476] Linking static target drivers/librte_bus_pci.a
[914/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[915/2476] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[916/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[917/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[918/2476] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[919/2476] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[920/2476] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[921/2476] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[922/2476] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[923/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[924/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[925/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[926/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[927/2476] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[928/2476] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[929/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[930/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_clsf.c.o
[931/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[932/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[933/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[934/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[935/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[936/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[937/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[938/2476] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[939/2476] Linking static target drivers/librte_bus_vdev.a
[940/2476] Compiling C object drivers/librte_net_af_packet.so.21.1.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[941/2476] Linking static target drivers/libtmp_rte_net_bond.a
[942/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[943/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[944/2476] Generating rte_net_failsafe_def with a custom command
[945/2476] Generating rte_net_failsafe_mingw with a custom command
[946/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[947/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[948/2476] Linking target lib/librte_ring.so.21.1
[949/2476] Linking target lib/librte_meter.so.21.1
[950/2476] Linking target lib/librte_pci.so.21.1
[951/2476] Linking target lib/librte_metrics.so.21.1
[952/2476] Linking target lib/librte_timer.so.21.1
[953/2476] Linking target lib/librte_acl.so.21.1
[954/2476] Linking target lib/librte_cfgfile.so.21.1
[955/2476] Linking target lib/librte_jobstats.so.21.1
[956/2476] Linking target lib/librte_rawdev.so.21.1
[957/2476] Linking target lib/librte_stack.so.21.1
[958/2476] Linking target lib/librte_graph.so.21.1
[959/2476] Linking static target drivers/librte_bus_vmbus.a
[960/2476] Linking static target drivers/librte_mempool_dpaa.a
[961/2476] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[962/2476] Linking static target drivers/librte_mempool_octeontx.a
[963/2476] Compiling C object drivers/librte_net_ark.so.21.1.p/meson-generated_.._rte_net_ark.pmd.c.o
[964/2476] Linking static target drivers/librte_mempool_stack.a
[965/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[966/2476] Generating rte_net_fm10k_def with a custom command
[967/2476] Generating rte_net_fm10k_mingw with a custom command
[968/2476] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[969/2476] Compiling C object drivers/librte_mempool_bucket.so.21.1.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[970/2476] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[971/2476] Compiling C object drivers/librte_net_atlantic.so.21.1.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[972/2476] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[973/2476] Compiling C object drivers/librte_net_avp.so.21.1.p/meson-generated_.._rte_net_avp.pmd.c.o
[974/2476] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[975/2476] Compiling C object drivers/librte_net_axgbe.so.21.1.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[976/2476] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[977/2476] Compiling C object drivers/librte_crypto_virtio.so.21.1.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[978/2476] Linking static target drivers/librte_bus_dpaa.a
[979/2476] Linking static target drivers/librte_common_qat.a
[980/2476] Linking static target drivers/librte_mempool_dpaa2.a
[981/2476] Linking static target drivers/librte_mempool_octeontx2.a
[982/2476] Linking static target drivers/librte_mempool_ring.a
[983/2476] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[984/2476] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[985/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[986/2476] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[987/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[988/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[989/2476] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[990/2476] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[991/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[992/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[993/2476] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[994/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[995/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[996/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[997/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[998/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[999/2476] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1000/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1001/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1002/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1003/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1004/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1005/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1006/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1007/2476] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[1008/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1009/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1010/2476] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[1011/2476] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1012/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1013/2476] Linking target drivers/librte_common_dpaax.so.21.1
[1014/2476] Linking target drivers/librte_common_octeontx.so.21.1
[1015/2476] Linking static target drivers/net/e1000/base/libe1000_base.a
[1016/2476] Linking target drivers/librte_common_iavf.so.21.1
[1017/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1018/2476] Generating rte_net_i40e_def with a custom command
[1019/2476] Generating rte_net_i40e_mingw with a custom command
[1020/2476] Linking static target drivers/libtmp_rte_net_enetc.a
[1021/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1022/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1023/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1024/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1025/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1026/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1027/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1028/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1029/2476] Linking static target drivers/librte_net_af_packet.a
[1030/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1031/2476] Generating rte_net_bond.pmd.c with a custom command
[1032/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1033/2476] Generating rte_net_hinic_def with a custom command
[1034/2476] Generating symbol file lib/librte_ring.so.21.1.p/librte_ring.so.21.1.symbols
[1035/2476] Generating rte_net_hinic_mingw with a custom command
[1036/2476] Linking static target drivers/librte_net_ark.a
[1037/2476] Linking static target drivers/librte_mempool_bucket.a
[1038/2476] Linking static target drivers/librte_net_atlantic.a
[1039/2476] Linking static target drivers/librte_net_avp.a
[1040/2476] Linking static target drivers/librte_net_axgbe.a
[1041/2476] Linking static target drivers/librte_crypto_virtio.a
[1042/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1043/2476] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1044/2476] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1045/2476] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1046/2476] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1047/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1048/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1049/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1050/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1051/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1052/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1053/2476] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1054/2476] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[1055/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1056/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1057/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1058/2476] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1059/2476] Generating symbol file lib/librte_meter.so.21.1.p/librte_meter.so.21.1.symbols
[1060/2476] Generating symbol file lib/librte_pci.so.21.1.p/librte_pci.so.21.1.symbols
[1061/2476] Generating symbol file lib/librte_metrics.so.21.1.p/librte_metrics.so.21.1.symbols
[1062/2476] Generating symbol file lib/librte_timer.so.21.1.p/librte_timer.so.21.1.symbols
[1063/2476] Generating symbol file lib/librte_acl.so.21.1.p/librte_acl.so.21.1.symbols
[1064/2476] Generating symbol file lib/librte_cfgfile.so.21.1.p/librte_cfgfile.so.21.1.symbols
[1065/2476] Generating symbol file lib/librte_rawdev.so.21.1.p/librte_rawdev.so.21.1.symbols
[1066/2476] Generating symbol file lib/librte_stack.so.21.1.p/librte_stack.so.21.1.symbols
[1067/2476] Generating symbol file lib/librte_graph.so.21.1.p/librte_graph.so.21.1.symbols
[1068/2476] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[1069/2476] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1070/2476] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1071/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1072/2476] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[1073/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1074/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1075/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1076/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1077/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1078/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1079/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1080/2476] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[1081/2476] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1082/2476] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1083/2476] Linking static target drivers/libtmp_rte_net_bnxt.a
[1084/2476] Linking static target drivers/libtmp_rte_net_dpaa.a
[1085/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1086/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1087/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1088/2476] Linking static target drivers/libtmp_rte_net_e1000.a
[1089/2476] Linking static target drivers/libtmp_rte_net_ena.a
[1090/2476] Generating rte_net_hns3_def with a custom command
[1091/2476] Generating rte_net_hns3_mingw with a custom command
[1092/2476] Linking static target drivers/libtmp_rte_net_enic.a
[1093/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1094/2476] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1095/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1096/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1097/2476] Generating rte_net_iavf_def with a custom command
[1098/2476] Generating rte_net_iavf_mingw with a custom command
[1099/2476] Generating rte_net_cxgbe.pmd.c with a custom command
[1100/2476] Generating rte_net_enetc.pmd.c with a custom command
[1101/2476] Compiling C object drivers/librte_net_bond.so.21.1.p/meson-generated_.._rte_net_bond.pmd.c.o
[1102/2476] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1103/2476] Linking target lib/librte_mempool.so.21.1
[1104/2476] Linking target lib/librte_rcu.so.21.1
[1105/2476] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1106/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1107/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1108/2476] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[1109/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1110/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1111/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1112/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1113/2476] Generating symbol file drivers/librte_common_dpaax.so.21.1.p/librte_common_dpaax.so.21.1.symbols
[1114/2476] Generating symbol file drivers/librte_common_octeontx.so.21.1.p/librte_common_octeontx.so.21.1.symbols
[1115/2476] Generating symbol file drivers/librte_common_iavf.so.21.1.p/librte_common_iavf.so.21.1.symbols
[1116/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1117/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1118/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1119/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1120/2476] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1121/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1122/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1123/2476] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[1124/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1125/2476] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[1126/2476] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[1127/2476] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1128/2476] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1129/2476] Linking static target drivers/libtmp_rte_net_failsafe.a
[1130/2476] Linking static target drivers/libtmp_rte_net_fm10k.a
[1131/2476] Linking static target drivers/net/i40e/base/libi40e_base.a
[1132/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1133/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1134/2476] Generating rte_net_ice_def with a custom command
[1135/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1136/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1137/2476] Linking static target drivers/net/hinic/base/libhinic_base.a
[1138/2476] Linking target drivers/librte_bus_vdev.so.21.1
[1139/2476] Generating rte_net_ice_mingw with a custom command
[1140/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1141/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1142/2476] Linking static target drivers/libtmp_rte_net_hinic.a
[1143/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1144/2476] Linking target drivers/librte_bus_pci.so.21.1
[1145/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1146/2476] Linking target lib/librte_power.so.21.1
[1147/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1148/2476] Linking target drivers/librte_bus_ifpga.so.21.1
[1149/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1150/2476] Linking target drivers/librte_bus_vmbus.so.21.1
[1151/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1152/2476] Generating rte_net_igc_def with a custom command
[1153/2476] Generating rte_net_igc_mingw with a custom command
[1154/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1155/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1156/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1157/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1158/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1159/2476] Generating rte_net_dpaa.pmd.c with a custom command
[1160/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1161/2476] Generating rte_net_e1000.pmd.c with a custom command
[1162/2476] Generating rte_net_ena.pmd.c with a custom command
[1163/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1164/2476] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1165/2476] Compiling C object drivers/librte_net_cxgbe.so.21.1.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1166/2476] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1167/2476] Linking static target drivers/librte_net_bond.a
[1168/2476] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[1169/2476] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1170/2476] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1171/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1172/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1173/2476] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1174/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1175/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1176/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1177/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1178/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1179/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1180/2476] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[1181/2476] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1182/2476] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[1183/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[1184/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1185/2476] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1186/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1187/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1188/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1189/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1190/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1191/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1192/2476] Generating rte_net_bnxt.pmd.c with a custom command
[1193/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1194/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1195/2476] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1196/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1197/2476] Generating rte_net_enic.pmd.c with a custom command
[1198/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1199/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1200/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1201/2476] Generating symbol file lib/librte_mempool.so.21.1.p/librte_mempool.so.21.1.symbols
[1202/2476] Generating symbol file lib/librte_rcu.so.21.1.p/librte_rcu.so.21.1.symbols
[1203/2476] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1204/2476] Compiling C object drivers/librte_net_enetc.so.21.1.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1205/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1206/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1207/2476] Generating rte_net_ixgbe_mingw with a custom command
[1208/2476] Generating rte_net_ixgbe_def with a custom command
[1209/2476] Generating rte_net_kni_mingw with a custom command
[1210/2476] Generating rte_net_kni_def with a custom command
[1211/2476] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1212/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1213/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1214/2476] Linking static target drivers/net/ice/libice_avx512_lib.a
[1215/2476] Generating rte_net_liquidio_mingw with a custom command
[1216/2476] Generating rte_net_liquidio_def with a custom command
[1217/2476] Generating rte_net_memif_def with a custom command
[1218/2476] Generating rte_net_memif_mingw with a custom command
[1219/2476] Generating rte_net_bnx2x.pmd.c with a custom command
[1220/2476] Generating rte_net_failsafe.pmd.c with a custom command
[1221/2476] Generating rte_net_fm10k.pmd.c with a custom command
[1222/2476] Generating rte_net_netvsc_def with a custom command
[1223/2476] Generating rte_net_netvsc_mingw with a custom command
[1224/2476] Generating rte_net_hinic.pmd.c with a custom command
[1225/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1226/2476] Generating rte_net_nfp_def with a custom command
[1227/2476] Generating rte_net_nfp_mingw with a custom command
[1228/2476] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1229/2476] Compiling C object drivers/librte_net_dpaa.so.21.1.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1230/2476] Linking static target drivers/librte_net_cxgbe.a
[1231/2476] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1232/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1233/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1234/2476] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1235/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1236/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1237/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1238/2476] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1239/2476] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1240/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1241/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1242/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1243/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1244/2476] Generating symbol file drivers/librte_bus_vdev.so.21.1.p/librte_bus_vdev.so.21.1.symbols
[1245/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1246/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1247/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1248/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1249/2476] Generating symbol file drivers/librte_bus_pci.so.21.1.p/librte_bus_pci.so.21.1.symbols
[1250/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1251/2476] Generating symbol file lib/librte_power.so.21.1.p/librte_power.so.21.1.symbols
[1252/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1253/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1254/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1255/2476] Generating symbol file drivers/librte_bus_vmbus.so.21.1.p/librte_bus_vmbus.so.21.1.symbols
[1256/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1257/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1258/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1259/2476] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1260/2476] Compiling C object drivers/librte_net_e1000.so.21.1.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1261/2476] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1262/2476] Compiling C object drivers/librte_net_ena.so.21.1.p/meson-generated_.._rte_net_ena.pmd.c.o
[1263/2476] Linking static target drivers/librte_net_enetc.a
[1264/2476] Generating rte_net_null_def with a custom command
[1265/2476] Linking static target drivers/libtmp_rte_net_hns3.a
[1266/2476] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1267/2476] Generating rte_net_null_mingw with a custom command
[1268/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1269/2476] Linking static target drivers/libtmp_rte_net_iavf.a
[1270/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1271/2476] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1272/2476] Generating rte_net_octeontx_def with a custom command
[1273/2476] Generating rte_net_octeontx_mingw with a custom command
[1274/2476] Linking static target drivers/net/igc/base/libigc_base.a
[1275/2476] Compiling C object drivers/librte_net_bnxt.so.21.1.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1276/2476] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1277/2476] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1278/2476] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1279/2476] Compiling C object drivers/librte_net_enic.so.21.1.p/meson-generated_.._rte_net_enic.pmd.c.o
[1280/2476] Linking target lib/librte_mbuf.so.21.1
[1281/2476] Linking target lib/librte_hash.so.21.1
[1282/2476] Linking target lib/librte_rib.so.21.1
[1283/2476] Linking target drivers/librte_mempool_bucket.so.21.1
[1284/2476] Linking target drivers/librte_mempool_ring.so.21.1
[1285/2476] Linking target drivers/librte_mempool_stack.so.21.1
[1286/2476] Generating rte_net_dpaa2.pmd.c with a custom command
[1287/2476] Linking static target drivers/libtmp_rte_net_kni.a
[1288/2476] Generating rte_net_octeontx2_mingw with a custom command
[1289/2476] Generating rte_net_octeontx2_def with a custom command
[1290/2476] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1291/2476] Compiling C object drivers/librte_net_bnx2x.so.21.1.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1292/2476] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1293/2476] Compiling C object drivers/librte_net_failsafe.so.21.1.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1294/2476] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1295/2476] Compiling C object drivers/librte_net_fm10k.so.21.1.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1296/2476] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1297/2476] Compiling C object drivers/librte_net_hinic.so.21.1.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1298/2476] Linking static target drivers/librte_net_dpaa.a
[1299/2476] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1300/2476] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1301/2476] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1302/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1303/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1304/2476] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1305/2476] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1306/2476] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1307/2476] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1308/2476] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1309/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1310/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1311/2476] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1312/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1313/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1314/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1315/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1316/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1317/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1318/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1319/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1320/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1321/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1322/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1323/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1324/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1325/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1326/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1327/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1328/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1329/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1330/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1331/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1332/2476] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1333/2476] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1334/2476] Generating rte_net_pfe_def with a custom command
[1335/2476] Generating rte_net_pfe_mingw with a custom command
[1336/2476] Linking static target drivers/libtmp_rte_net_igc.a
[1337/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1338/2476] Linking static target drivers/libtmp_rte_net_liquidio.a
[1339/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1340/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1341/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1342/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1343/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1344/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1345/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1346/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1347/2476] Generating rte_net_qede_def with a custom command
[1348/2476] Linking static target drivers/librte_net_e1000.a
[1349/2476] Generating rte_net_qede_mingw with a custom command
[1350/2476] Linking static target drivers/librte_net_ena.a
[1351/2476] Generating rte_net_ring_def with a custom command
[1352/2476] Generating rte_net_ring_mingw with a custom command
[1353/2476] Generating rte_net_hns3.pmd.c with a custom command
[1354/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1355/2476] Generating rte_net_iavf.pmd.c with a custom command
[1356/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1357/2476] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1358/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1359/2476] Linking static target drivers/librte_net_bnxt.a
[1360/2476] Linking static target drivers/librte_net_enic.a
[1361/2476] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1362/2476] Compiling C object drivers/librte_net_dpaa2.so.21.1.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1363/2476] Generating rte_net_kni.pmd.c with a custom command
[1364/2476] Linking static target drivers/librte_net_bnx2x.a
[1365/2476] Linking static target drivers/librte_net_failsafe.a
[1366/2476] Linking static target drivers/librte_net_fm10k.a
[1367/2476] Linking static target drivers/librte_net_hinic.a
[1368/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1369/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1370/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1371/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1372/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1373/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1374/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1375/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1376/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1377/2476] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1378/2476] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1379/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1380/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1381/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1382/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1383/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1384/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1385/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1386/2476] Generating symbol file lib/librte_mbuf.so.21.1.p/librte_mbuf.so.21.1.symbols
[1387/2476] Generating symbol file lib/librte_hash.so.21.1.p/librte_hash.so.21.1.symbols
[1388/2476] Generating symbol file lib/librte_rib.so.21.1.p/librte_rib.so.21.1.symbols
[1389/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1390/2476] Generating symbol file drivers/librte_mempool_ring.so.21.1.p/librte_mempool_ring.so.21.1.symbols
[1391/2476] Generating symbol file drivers/librte_mempool_stack.so.21.1.p/librte_mempool_stack.so.21.1.symbols
[1392/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1393/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1394/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1395/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1396/2476] Linking static target drivers/libtmp_rte_net_i40e.a
[1397/2476] Linking static target drivers/net/ice/base/libice_base.a
[1398/2476] Linking static target drivers/libtmp_rte_net_ice.a
[1399/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1400/2476] Linking static target drivers/libtmp_rte_net_memif.a
[1401/2476] Linking static target drivers/libtmp_rte_net_netvsc.a
[1402/2476] Linking static target drivers/libtmp_rte_net_nfp.a
[1403/2476] Linking static target drivers/libtmp_rte_net_null.a
[1404/2476] Linking static target drivers/libtmp_rte_net_octeontx.a
[1405/2476] Generating rte_net_sfc_def with a custom command
[1406/2476] Generating rte_net_sfc_mingw with a custom command
[1407/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1408/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1409/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1410/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1411/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1412/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1413/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1414/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1415/2476] Generating rte_net_softnic_mingw with a custom command
[1416/2476] Generating rte_net_softnic_def with a custom command
[1417/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1418/2476] Linking static target drivers/libtmp_rte_net_pfe.a
[1419/2476] Generating rte_net_igc.pmd.c with a custom command
[1420/2476] Generating rte_net_liquidio.pmd.c with a custom command
[1421/2476] Generating rte_net_tap_def with a custom command
[1422/2476] Generating rte_net_tap_mingw with a custom command
[1423/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1424/2476] Generating rte_net_thunderx_def with a custom command
[1425/2476] Generating rte_net_thunderx_mingw with a custom command
[1426/2476] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1427/2476] Compiling C object drivers/librte_net_hns3.so.21.1.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1428/2476] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1429/2476] Compiling C object drivers/librte_net_iavf.so.21.1.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1430/2476] Linking static target drivers/librte_net_dpaa2.a
[1431/2476] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1432/2476] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1433/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1434/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1435/2476] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1436/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1437/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1438/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1439/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1440/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1441/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1442/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1443/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1444/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1445/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1446/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1447/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1448/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1449/2476] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1450/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1451/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1452/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1453/2476] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1454/2476] Compiling C object drivers/librte_net_kni.so.21.1.p/meson-generated_.._rte_net_kni.pmd.c.o
[1455/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1456/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1457/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1458/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1459/2476] Generating rte_net_txgbe_def with a custom command
[1460/2476] Linking static target drivers/libtmp_rte_net_ring.a
[1461/2476] Generating rte_net_txgbe_mingw with a custom command
[1462/2476] Generating rte_net_vdev_netvsc_def with a custom command
[1463/2476] Generating rte_net_vdev_netvsc_mingw with a custom command
[1464/2476] Generating rte_net_vhost_def with a custom command
[1465/2476] Generating rte_net_vhost_mingw with a custom command
[1466/2476] Linking target lib/librte_compressdev.so.21.1
[1467/2476] Linking target lib/librte_net.so.21.1
[1468/2476] Linking target lib/librte_bbdev.so.21.1
[1469/2476] Linking target lib/librte_cryptodev.so.21.1
[1470/2476] Linking target lib/librte_distributor.so.21.1
[1471/2476] Linking target lib/librte_efd.so.21.1
[1472/2476] Linking target lib/librte_lpm.so.21.1
[1473/2476] Linking target lib/librte_member.so.21.1
[1474/2476] Linking target lib/librte_regexdev.so.21.1
[1475/2476] Linking target lib/librte_reorder.so.21.1
[1476/2476] Linking target lib/librte_sched.so.21.1
[1477/2476] Linking target lib/librte_fib.so.21.1
[1478/2476] Linking target drivers/librte_mempool_octeontx.so.21.1
[1479/2476] Generating rte_net_i40e.pmd.c with a custom command
[1480/2476] Generating rte_net_ice.pmd.c with a custom command
[1481/2476] Generating rte_net_memif.pmd.c with a custom command
[1482/2476] Generating rte_net_netvsc.pmd.c with a custom command
[1483/2476] Generating rte_net_nfp.pmd.c with a custom command
[1484/2476] Generating rte_net_null.pmd.c with a custom command
[1485/2476] Generating rte_net_octeontx.pmd.c with a custom command
[1486/2476] Generating rte_net_pfe.pmd.c with a custom command
[1487/2476] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1488/2476] Compiling C object drivers/librte_net_igc.so.21.1.p/meson-generated_.._rte_net_igc.pmd.c.o
[1489/2476] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1490/2476] Compiling C object drivers/librte_net_liquidio.so.21.1.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1491/2476] Generating rte_net_virtio_mingw with a custom command
[1492/2476] Generating rte_net_virtio_def with a custom command
[1493/2476] Linking static target drivers/librte_net_hns3.a
[1494/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1495/2476] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1496/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1497/2476] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1498/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1499/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1500/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1501/2476] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1502/2476] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1503/2476] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1504/2476] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1505/2476] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1506/2476] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1507/2476] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1508/2476] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1509/2476] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1510/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1511/2476] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1512/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1513/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1514/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1515/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1516/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1517/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1518/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1519/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1520/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1521/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1522/2476] Linking static target drivers/librte_net_iavf.a
[1523/2476] Generating rte_net_vmxnet3_mingw with a custom command
[1524/2476] Linking target drivers/librte_common_sfc_efx.so.21.1
[1525/2476] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1526/2476] Generating rte_net_vmxnet3_def with a custom command
[1527/2476] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1528/2476] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1529/2476] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1530/2476] Generating rte_raw_dpaa2_qdma_def with a custom command
[1531/2476] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1532/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1533/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1534/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1535/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1536/2476] Generating rte_raw_ioat_def with a custom command
[1537/2476] Generating rte_raw_ioat_mingw with a custom command
[1538/2476] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1539/2476] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1540/2476] Generating rte_raw_ntb_def with a custom command
[1541/2476] Generating rte_raw_ntb_mingw with a custom command
[1542/2476] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1543/2476] Linking static target drivers/librte_net_kni.a
[1544/2476] Generating rte_raw_octeontx2_dma_def with a custom command
[1545/2476] Generating rte_net_ring.pmd.c with a custom command
[1546/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1547/2476] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1548/2476] Generating rte_raw_octeontx2_ep_def with a custom command
[1549/2476] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1550/2476] Compiling C object drivers/librte_net_i40e.so.21.1.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1551/2476] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1552/2476] Compiling C object drivers/librte_net_ice.so.21.1.p/meson-generated_.._rte_net_ice.pmd.c.o
[1553/2476] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1554/2476] Compiling C object drivers/librte_net_memif.so.21.1.p/meson-generated_.._rte_net_memif.pmd.c.o
[1555/2476] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1556/2476] Compiling C object drivers/librte_net_netvsc.so.21.1.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1557/2476] Linking static target drivers/librte_net_igc.a
[1558/2476] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1559/2476] Linking static target drivers/librte_net_liquidio.a
[1560/2476] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1561/2476] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1562/2476] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1563/2476] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1564/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1565/2476] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1566/2476] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed_avx.c.o
[1567/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1568/2476] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1569/2476] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1570/2476] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1571/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1572/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1573/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1574/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1575/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1576/2476] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1577/2476] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1578/2476] Generating symbol file lib/librte_compressdev.so.21.1.p/librte_compressdev.so.21.1.symbols
[1579/2476] Generating symbol file lib/librte_net.so.21.1.p/librte_net.so.21.1.symbols
[1580/2476] Generating symbol file lib/librte_bbdev.so.21.1.p/librte_bbdev.so.21.1.symbols
[1581/2476] Generating symbol file lib/librte_cryptodev.so.21.1.p/librte_cryptodev.so.21.1.symbols
[1582/2476] Generating symbol file lib/librte_distributor.so.21.1.p/librte_distributor.so.21.1.symbols
[1583/2476] Generating symbol file lib/librte_efd.so.21.1.p/librte_efd.so.21.1.symbols
[1584/2476] Generating symbol file lib/librte_lpm.so.21.1.p/librte_lpm.so.21.1.symbols
[1585/2476] Generating symbol file lib/librte_member.so.21.1.p/librte_member.so.21.1.symbols
[1586/2476] Generating symbol file lib/librte_regexdev.so.21.1.p/librte_regexdev.so.21.1.symbols
[1587/2476] Generating symbol file lib/librte_sched.so.21.1.p/librte_sched.so.21.1.symbols
[1588/2476] Generating symbol file lib/librte_fib.so.21.1.p/librte_fib.so.21.1.symbols
[1589/2476] Generating symbol file drivers/librte_mempool_octeontx.so.21.1.p/librte_mempool_octeontx.so.21.1.symbols
[1590/2476] Compiling C object drivers/librte_net_nfp.so.21.1.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1591/2476] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1592/2476] Compiling C object drivers/librte_net_null.so.21.1.p/meson-generated_.._rte_net_null.pmd.c.o
[1593/2476] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1594/2476] Compiling C object drivers/librte_net_octeontx.so.21.1.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1595/2476] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1596/2476] Compiling C object drivers/librte_net_pfe.so.21.1.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1597/2476] Linking static target drivers/net/qede/base/libqede_base.a
[1598/2476] Linking static target drivers/libtmp_rte_net_sfc.a
[1599/2476] Generating rte_raw_skeleton_mingw with a custom command
[1600/2476] Generating rte_raw_skeleton_def with a custom command
[1601/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1602/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1603/2476] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1604/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1605/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1606/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1607/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1608/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1609/2476] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1610/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1611/2476] Generating rte_crypto_bcmfs_mingw with a custom command
[1612/2476] Generating rte_crypto_bcmfs_def with a custom command
[1613/2476] Generating rte_net_ixgbe.pmd.c with a custom command
[1614/2476] Generating rte_crypto_caam_jr_mingw with a custom command
[1615/2476] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1616/2476] Generating rte_crypto_caam_jr_def with a custom command
[1617/2476] Generating rte_crypto_dpaa_sec_def with a custom command
[1618/2476] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1619/2476] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1620/2476] Generating rte_crypto_dpaa2_sec_def with a custom command
[1621/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1622/2476] Generating rte_crypto_nitrox_mingw with a custom command
[1623/2476] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1624/2476] Compiling C object drivers/librte_net_ring.so.21.1.p/meson-generated_.._rte_net_ring.pmd.c.o
[1625/2476] Generating rte_crypto_nitrox_def with a custom command
[1626/2476] Linking static target drivers/librte_net_i40e.a
[1627/2476] Linking static target drivers/librte_net_ice.a
[1628/2476] Linking static target drivers/librte_net_memif.a
[1629/2476] Linking static target drivers/librte_net_netvsc.a
[1630/2476] Linking static target drivers/librte_net_nfp.a
[1631/2476] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[1632/2476] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[1633/2476] Generating symbol file lib/librte_reorder.so.21.1.p/librte_reorder.so.21.1.symbols
[1634/2476] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1635/2476] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1636/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1637/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1638/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1639/2476] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1640/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1641/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1642/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1643/2476] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1644/2476] Generating symbol file drivers/librte_common_sfc_efx.so.21.1.p/librte_common_sfc_efx.so.21.1.symbols
[1645/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1646/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1647/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1648/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[1649/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[1650/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1651/2476] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1652/2476] Generating rte_crypto_null_mingw with a custom command
[1653/2476] Generating rte_crypto_null_def with a custom command
[1654/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[1655/2476] Linking static target drivers/libtmp_rte_net_qede.a
[1656/2476] Linking static target drivers/libtmp_rte_net_softnic.a
[1657/2476] Linking static target drivers/libtmp_rte_net_tap.a
[1658/2476] Linking static target drivers/libtmp_rte_net_thunderx.a
[1659/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[1660/2476] Linking static target drivers/libtmp_rte_net_vhost.a
[1661/2476] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1662/2476] Generating rte_crypto_octeontx_mingw with a custom command
[1663/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1664/2476] Linking static target drivers/libtmp_rte_raw_ioat.a
[1665/2476] Generating rte_crypto_octeontx_def with a custom command
[1666/2476] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1667/2476] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1668/2476] Generating rte_crypto_octeontx2_mingw with a custom command
[1669/2476] Linking target lib/librte_ethdev.so.21.1
[1670/2476] Linking target lib/librte_cmdline.so.21.1
[1671/2476] Linking target lib/librte_security.so.21.1
[1672/2476] Linking target drivers/librte_common_cpt.so.21.1
[1673/2476] Linking target drivers/librte_common_qat.so.21.1
[1674/2476] Generating rte_crypto_octeontx2_def with a custom command
[1675/2476] Linking static target drivers/librte_net_null.a
[1676/2476] Linking static target drivers/librte_net_octeontx.a
[1677/2476] Linking static target drivers/librte_net_pfe.a
[1678/2476] Generating rte_crypto_scheduler_mingw with a custom command
[1679/2476] Generating rte_net_sfc.pmd.c with a custom command
[1680/2476] Generating rte_crypto_scheduler_def with a custom command
[1681/2476] Linking target drivers/librte_crypto_virtio.so.21.1
[1682/2476] Generating rte_compress_octeontx_mingw with a custom command
[1683/2476] Generating rte_compress_octeontx_def with a custom command
[1684/2476] Generating rte_compress_zlib.pmd.c with a custom command
[1685/2476] Generating rte_compress_zlib_def with a custom command
[1686/2476] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1687/2476] Generating rte_regex_octeontx2_def with a custom command
[1688/2476] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1689/2476] Compiling C object drivers/librte_net_ixgbe.so.21.1.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1690/2476] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1691/2476] Generating rte_regex_octeontx2_mingw with a custom command
[1692/2476] Generating rte_vdpa_ifc_def with a custom command
[1693/2476] Generating rte_vdpa_ifc_mingw with a custom command
[1694/2476] Linking static target drivers/librte_net_ring.a
[1695/2476] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1696/2476] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1697/2476] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[1698/2476] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1699/2476] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1700/2476] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1701/2476] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1702/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[1703/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1704/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1705/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1706/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1707/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1708/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1709/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1710/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1711/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1712/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1713/2476] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[1714/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1715/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1716/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1717/2476] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1718/2476] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1719/2476] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1720/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1721/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1722/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1723/2476] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1724/2476] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1725/2476] Linking static target lib/librte_vhost.a
[1726/2476] Linking static target drivers/libtmp_rte_raw_ntb.a
[1727/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1728/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1729/2476] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1730/2476] Generating rte_event_dlb_def with a custom command
[1731/2476] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1732/2476] Generating rte_event_dlb_mingw with a custom command
[1733/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1734/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1735/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1736/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1737/2476] Generating rte_event_dlb2_def with a custom command
[1738/2476] Generating rte_event_dlb2_mingw with a custom command
[1739/2476] Generating rte_event_dpaa_def with a custom command
[1740/2476] Generating rte_event_dpaa_mingw with a custom command
[1741/2476] Generating rte_net_qede.pmd.c with a custom command
[1742/2476] Generating rte_net_softnic.pmd.c with a custom command
[1743/2476] Generating rte_net_tap.pmd.c with a custom command
[1744/2476] Generating rte_net_thunderx.pmd.c with a custom command
[1745/2476] Generating rte_net_vhost.pmd.c with a custom command
[1746/2476] Generating rte_event_dpaa2_mingw with a custom command
[1747/2476] Generating rte_event_dpaa2_def with a custom command
[1748/2476] Generating rte_raw_ioat.pmd.c with a custom command
[1749/2476] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1750/2476] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1751/2476] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1752/2476] Compiling C object drivers/librte_net_sfc.so.21.1.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1753/2476] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1754/2476] Compiling C object drivers/librte_compress_zlib.so.21.1.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1755/2476] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1756/2476] Compiling C object drivers/librte_net_vdev_netvsc.so.21.1.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1757/2476] Linking static target drivers/librte_net_ixgbe.a
[1758/2476] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1759/2476] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.1.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1760/2476] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[1761/2476] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[1762/2476] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1763/2476] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1764/2476] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[1765/2476] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1766/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[1767/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1768/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[1769/2476] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[1770/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[1771/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[1772/2476] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1773/2476] Generating symbol file lib/librte_ethdev.so.21.1.p/librte_ethdev.so.21.1.symbols
[1774/2476] Generating symbol file lib/librte_cmdline.so.21.1.p/librte_cmdline.so.21.1.symbols
[1775/2476] Generating symbol file lib/librte_security.so.21.1.p/librte_security.so.21.1.symbols
[1776/2476] Generating symbol file drivers/librte_common_cpt.so.21.1.p/librte_common_cpt.so.21.1.symbols
[1777/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[1778/2476] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1779/2476] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1780/2476] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1781/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[1782/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[1783/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[1784/2476] Generating rte_event_octeontx2_def with a custom command
[1785/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[1786/2476] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1787/2476] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1788/2476] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1789/2476] Generating rte_event_octeontx2_mingw with a custom command
[1790/2476] Linking static target drivers/libtmp_rte_crypto_null.a
[1791/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[1792/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[1793/2476] Generating rte_event_opdl_mingw with a custom command
[1794/2476] Generating rte_event_opdl_def with a custom command
[1795/2476] Generating rte_event_skeleton_def with a custom command
[1796/2476] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[1797/2476] Generating rte_event_skeleton_mingw with a custom command
[1798/2476] Generating rte_event_sw_def with a custom command
[1799/2476] Generating rte_event_sw_mingw with a custom command
[1800/2476] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1801/2476] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1802/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[1803/2476] Generating rte_event_dsw_def with a custom command
[1804/2476] Generating rte_event_dsw_mingw with a custom command
[1805/2476] Generating rte_raw_ntb.pmd.c with a custom command
[1806/2476] Generating rte_raw_skeleton.pmd.c with a custom command
[1807/2476] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1808/2476] Generating rte_event_octeontx_mingw with a custom command
[1809/2476] Generating rte_event_octeontx_def with a custom command
[1810/2476] Generating rte_baseband_null_def with a custom command
[1811/2476] Generating rte_baseband_null_mingw with a custom command
[1812/2476] Generating rte_baseband_turbo_sw_def with a custom command
[1813/2476] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[1814/2476] Compiling C object drivers/librte_net_qede.so.21.1.p/meson-generated_.._rte_net_qede.pmd.c.o
[1815/2476] Compiling C object drivers/librte_net_softnic.so.21.1.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1816/2476] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[1817/2476] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1818/2476] Compiling C object drivers/librte_net_tap.so.21.1.p/meson-generated_.._rte_net_tap.pmd.c.o
[1819/2476] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1820/2476] Compiling C object drivers/librte_net_thunderx.so.21.1.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1821/2476] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1822/2476] Compiling C object drivers/librte_net_vhost.so.21.1.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1823/2476] Linking static target drivers/librte_net_sfc.a
[1824/2476] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1825/2476] Compiling C object drivers/librte_raw_ioat.so.21.1.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1826/2476] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.1.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1827/2476] Linking static target drivers/librte_net_vdev_netvsc.a
[1828/2476] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[1829/2476] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[1830/2476] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1831/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[1832/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[1833/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[1834/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[1835/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[1836/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[1837/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[1838/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[1839/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[1840/2476] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1841/2476] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1842/2476] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.1.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1843/2476] Linking static target drivers/libtmp_rte_net_txgbe.a
[1844/2476] Linking static target drivers/libtmp_rte_net_virtio.a
[1845/2476] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1846/2476] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1847/2476] Linking static target drivers/librte_compress_zlib.a
[1848/2476] Generating rte_baseband_turbo_sw_mingw with a custom command
[1849/2476] Generating rte_baseband_fpga_lte_fec_def with a custom command
[1850/2476] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[1851/2476] Linking static target drivers/libtmp_rte_event_dpaa.a
[1852/2476] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[1853/2476] Linking static target drivers/libtmp_rte_event_dpaa2.a
[1854/2476] Linking target lib/librte_bitratestats.so.21.1
[1855/2476] Linking target lib/librte_eventdev.so.21.1
[1856/2476] Linking target lib/librte_gro.so.21.1
[1857/2476] Linking target lib/librte_gso.so.21.1
[1858/2476] Linking target lib/librte_ip_frag.so.21.1
[1859/2476] Linking target lib/librte_kni.so.21.1
[1860/2476] Linking target lib/librte_latencystats.so.21.1
[1861/2476] Linking target lib/librte_pdump.so.21.1
[1862/2476] Linking target lib/librte_ipsec.so.21.1
[1863/2476] Linking target lib/librte_bpf.so.21.1
[1864/2476] Linking target lib/librte_node.so.21.1
[1865/2476] Linking target drivers/librte_common_octeontx2.so.21.1
[1866/2476] Linking target drivers/librte_net_af_packet.so.21.1
[1867/2476] Linking target drivers/librte_net_ark.so.21.1
[1868/2476] Linking target drivers/librte_net_atlantic.so.21.1
[1869/2476] Linking target drivers/librte_net_avp.so.21.1
[1870/2476] Linking target drivers/librte_net_axgbe.so.21.1
[1871/2476] Linking target drivers/librte_net_bnx2x.so.21.1
[1872/2476] Linking target drivers/librte_net_bnxt.so.21.1
[1873/2476] Linking target drivers/librte_net_cxgbe.so.21.1
[1874/2476] Linking target drivers/librte_net_e1000.so.21.1
[1875/2476] Linking target drivers/librte_net_ena.so.21.1
[1876/2476] Linking target drivers/librte_net_enetc.so.21.1
[1877/2476] Linking target drivers/librte_net_enic.so.21.1
[1878/2476] Linking target drivers/librte_net_failsafe.so.21.1
[1879/2476] Linking target drivers/librte_net_fm10k.so.21.1
[1880/2476] Linking target drivers/librte_net_i40e.so.21.1
[1881/2476] Linking target drivers/librte_net_hinic.so.21.1
[1882/2476] Linking target drivers/librte_net_hns3.so.21.1
[1883/2476] Linking target drivers/librte_net_iavf.so.21.1
[1884/2476] Linking target drivers/librte_net_ice.so.21.1
[1885/2476] Linking target drivers/librte_net_igc.so.21.1
[1886/2476] Linking target drivers/librte_net_liquidio.so.21.1
[1887/2476] Linking target drivers/librte_net_memif.so.21.1
[1888/2476] Linking target drivers/librte_net_netvsc.so.21.1
[1889/2476] Linking target drivers/librte_net_nfp.so.21.1
[1890/2476] Linking target drivers/librte_net_null.so.21.1
[1891/2476] Linking target drivers/librte_net_pfe.so.21.1
[1892/2476] Generating rte_net_vmxnet3.pmd.c with a custom command
[1893/2476] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1894/2476] Linking static target drivers/librte_net_qede.a
[1895/2476] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1896/2476] Compiling C object drivers/librte_raw_ntb.so.21.1.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1897/2476] Linking static target drivers/librte_net_softnic.a
[1898/2476] Linking static target drivers/librte_net_tap.a
[1899/2476] Linking static target drivers/librte_net_thunderx.a
[1900/2476] Linking static target drivers/librte_net_vhost.a
[1901/2476] Linking static target drivers/librte_raw_ioat.a
[1902/2476] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[1903/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[1904/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[1905/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[1906/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[1907/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[1908/2476] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[1909/2476] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[1910/2476] Compiling C object drivers/librte_raw_skeleton.so.21.1.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1911/2476] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1912/2476] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1913/2476] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[1914/2476] Compiling C object drivers/librte_crypto_bcmfs.so.21.1.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1915/2476] Generating rte_crypto_nitrox.pmd.c with a custom command
[1916/2476] Linking static target lib/librte_pipeline.a
[1917/2476] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[1918/2476] Linking target drivers/librte_net_ring.so.21.1
[1919/2476] Generating rte_crypto_null.pmd.c with a custom command
[1920/2476] Generating rte_regex_octeontx2.pmd.c with a custom command
[1921/2476] Generating rte_vdpa_ifc.pmd.c with a custom command
[1922/2476] Linking static target drivers/libtmp_rte_event_skeleton.a
[1923/2476] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[1924/2476] Generating rte_baseband_acc100_def with a custom command
[1925/2476] Generating rte_baseband_acc100_mingw with a custom command
[1926/2476] Linking static target drivers/librte_raw_octeontx2_dma.a
[1927/2476] Generating rte_net_txgbe.pmd.c with a custom command
[1928/2476] Generating rte_net_virtio.pmd.c with a custom command
[1929/2476] Linking static target drivers/librte_raw_octeontx2_ep.a
[1930/2476] Generating rte_compress_octeontx.pmd.c with a custom command
[1931/2476] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[1932/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[1933/2476] Generating rte_event_dpaa.pmd.c with a custom command
[1934/2476] Generating rte_event_dpaa2.pmd.c with a custom command
[1935/2476] Generating symbol file lib/librte_eventdev.so.21.1.p/librte_eventdev.so.21.1.symbols
[1936/2476] Generating symbol file lib/librte_kni.so.21.1.p/librte_kni.so.21.1.symbols
[1937/2476] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[1938/2476] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[1939/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[1940/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[1941/2476] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1942/2476] Compiling C object drivers/librte_net_vmxnet3.so.21.1.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1943/2476] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1944/2476] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.1.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1945/2476] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[1946/2476] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[1947/2476] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[1948/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[1949/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[1950/2476] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1951/2476] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[1952/2476] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[1953/2476] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1954/2476] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1955/2476] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[1956/2476] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1957/2476] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[1958/2476] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[1959/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[1960/2476] Generating symbol file lib/librte_bitratestats.so.21.1.p/librte_bitratestats.so.21.1.symbols
[1961/2476] Generating symbol file lib/librte_gro.so.21.1.p/librte_gro.so.21.1.symbols
[1962/2476] Generating symbol file lib/librte_gso.so.21.1.p/librte_gso.so.21.1.symbols
[1963/2476] Generating symbol file lib/librte_ip_frag.so.21.1.p/librte_ip_frag.so.21.1.symbols
[1964/2476] Generating symbol file lib/librte_latencystats.so.21.1.p/librte_latencystats.so.21.1.symbols
[1965/2476] Generating symbol file lib/librte_pdump.so.21.1.p/librte_pdump.so.21.1.symbols
[1966/2476] Generating symbol file lib/librte_ipsec.so.21.1.p/librte_ipsec.so.21.1.symbols
[1967/2476] Generating symbol file lib/librte_bpf.so.21.1.p/librte_bpf.so.21.1.symbols
[1968/2476] Generating symbol file lib/librte_node.so.21.1.p/librte_node.so.21.1.symbols
[1969/2476] Generating symbol file drivers/librte_common_octeontx2.so.21.1.p/librte_common_octeontx2.so.21.1.symbols
[1970/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[1971/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[1972/2476] Generating symbol file drivers/librte_net_bnxt.so.21.1.p/librte_net_bnxt.so.21.1.symbols
[1973/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[1974/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[1975/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[1976/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[1977/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[1978/2476] Generating symbol file drivers/librte_net_i40e.so.21.1.p/librte_net_i40e.so.21.1.symbols
[1979/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[1980/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[1981/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[1982/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[1983/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[1984/2476] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[1985/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[1986/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[1987/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[1988/2476] Linking static target drivers/librte_raw_ntb.a
[1989/2476] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[1990/2476] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[1991/2476] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[1992/2476] Linking static target drivers/librte_raw_skeleton.a
[1993/2476] Linking static target drivers/librte_crypto_bcmfs.a
[1994/2476] Linking target drivers/librte_net_sfc.so.21.1
[1995/2476] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1996/2476] Generating rte_crypto_caam_jr.pmd.c with a custom command
[1997/2476] Compiling C object drivers/librte_crypto_nitrox.so.21.1.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1998/2476] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1999/2476] Compiling C object drivers/librte_crypto_null.so.21.1.p/meson-generated_.._rte_crypto_null.pmd.c.o
[2000/2476] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2001/2476] Compiling C object drivers/librte_regex_octeontx2.so.21.1.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2002/2476] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2003/2476] Compiling C object drivers/librte_vdpa_ifc.so.21.1.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2004/2476] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2005/2476] Compiling C object drivers/librte_net_txgbe.so.21.1.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2006/2476] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2007/2476] Compiling C object drivers/librte_compress_octeontx.so.21.1.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2008/2476] Compiling C object drivers/librte_net_virtio.so.21.1.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2009/2476] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2010/2476] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2011/2476] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2012/2476] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2013/2476] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2014/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2015/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2016/2476] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2017/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2018/2476] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[2019/2476] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[2020/2476] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[2021/2476] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[2022/2476] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2023/2476] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[2024/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2025/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2026/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2027/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2028/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2029/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2030/2476] Generating symbol file drivers/librte_net_ring.so.21.1.p/librte_net_ring.so.21.1.symbols
[2031/2476] Linking target drivers/librte_bus_dpaa.so.21.1
[2032/2476] Linking target drivers/librte_bus_fslmc.so.21.1
[2033/2476] Linking target drivers/librte_net_kni.so.21.1
[2034/2476] Linking target drivers/librte_net_octeontx.so.21.1
[2035/2476] Compiling C object drivers/librte_event_dpaa.so.21.1.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2036/2476] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2037/2476] Linking static target drivers/librte_net_vmxnet3.a
[2038/2476] Compiling C object drivers/librte_event_dpaa2.so.21.1.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2039/2476] Linking static target drivers/librte_raw_dpaa2_qdma.a
[2040/2476] Generating rte_event_skeleton.pmd.c with a custom command
[2041/2476] Linking static target drivers/libtmp_rte_event_dlb.a
[2042/2476] Linking static target drivers/libtmp_rte_event_dlb2.a
[2043/2476] Linking static target drivers/libtmp_rte_event_opdl.a
[2044/2476] Linking target app/dpdk-test-acl
[2045/2476] Linking target app/dpdk-test-cmdline
[2046/2476] Linking target lib/librte_vhost.so.21.1
[2047/2476] Linking static target drivers/libtmp_rte_event_octeontx.a
[2048/2476] Linking static target drivers/libtmp_rte_baseband_null.a
[2049/2476] Linking target drivers/librte_net_ixgbe.so.21.1
[2050/2476] Linking target drivers/librte_net_vdev_netvsc.so.21.1
[2051/2476] Linking target app/dpdk-proc-info
[2052/2476] Linking target drivers/librte_compress_zlib.so.21.1
[2053/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2054/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2055/2476] Linking target lib/librte_port.so.21.1
[2056/2476] Linking target drivers/librte_net_bond.so.21.1
[2057/2476] Linking target app/dpdk-pdump
[2058/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2059/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2060/2476] Linking target drivers/librte_mempool_octeontx2.so.21.1
[2061/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2062/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2063/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2064/2476] Generating rte_crypto_scheduler.pmd.c with a custom command
[2065/2476] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2066/2476] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2067/2476] Linking static target drivers/librte_crypto_nitrox.a
[2068/2476] Compiling C object drivers/librte_crypto_caam_jr.so.21.1.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2069/2476] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2070/2476] Linking static target drivers/librte_crypto_null.a
[2071/2476] Linking static target drivers/librte_regex_octeontx2.a
[2072/2476] Linking static target drivers/librte_vdpa_ifc.a
[2073/2476] Linking static target drivers/librte_net_txgbe.a
[2074/2476] Linking static target drivers/librte_net_virtio.a
[2075/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2076/2476] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2077/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2078/2476] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[2079/2476] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[2080/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2081/2476] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2082/2476] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2083/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2084/2476] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2085/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2086/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2087/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2088/2476] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2089/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2090/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2091/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2092/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2093/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2094/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2095/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2096/2476] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2097/2476] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2098/2476] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[2099/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2100/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2101/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2102/2476] Linking static target drivers/librte_compress_octeontx.a
[2103/2476] Linking static target drivers/librte_event_dpaa.a
[2104/2476] Linking static target drivers/libtmp_rte_event_sw.a
[2105/2476] Linking static target drivers/libtmp_rte_event_dsw.a
[2106/2476] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2107/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2108/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2109/2476] Linking target app/dpdk-test-compress-perf
[2110/2476] Linking target drivers/librte_net_qede.so.21.1
[2111/2476] Compiling C object app/test/dpdk-test.p/commands.c.o
[2112/2476] Linking target drivers/librte_net_tap.so.21.1
[2113/2476] Linking target drivers/librte_net_thunderx.so.21.1
[2114/2476] Linking target drivers/librte_raw_ioat.so.21.1
[2115/2476] Compiling C object app/test/dpdk-test.p/test.c.o
[2116/2476] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2117/2476] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2118/2476] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2119/2476] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2120/2476] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2121/2476] Linking static target drivers/librte_event_dpaa2.a
[2122/2476] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2123/2476] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2124/2476] Generating rte_event_dlb.pmd.c with a custom command
[2125/2476] Generating rte_event_dlb2.pmd.c with a custom command
[2126/2476] Generating rte_event_opdl.pmd.c with a custom command
[2127/2476] Compiling C object drivers/librte_event_skeleton.so.21.1.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2128/2476] Generating rte_event_octeontx.pmd.c with a custom command
[2129/2476] Generating rte_baseband_null.pmd.c with a custom command
[2130/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2131/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2132/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2133/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2134/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2135/2476] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2136/2476] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2137/2476] Compiling C object drivers/librte_crypto_scheduler.so.21.1.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2138/2476] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2139/2476] Linking static target drivers/librte_crypto_caam_jr.a
[2140/2476] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2141/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2142/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2143/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2144/2476] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2145/2476] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2146/2476] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2147/2476] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2148/2476] Generating symbol file drivers/librte_bus_dpaa.so.21.1.p/librte_bus_dpaa.so.21.1.symbols
[2149/2476] Generating symbol file drivers/librte_bus_fslmc.so.21.1.p/librte_bus_fslmc.so.21.1.symbols
[2150/2476] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2151/2476] Generating symbol file drivers/librte_net_octeontx.so.21.1.p/librte_net_octeontx.so.21.1.symbols
[2152/2476] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[2153/2476] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[2154/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2155/2476] Generating symbol file lib/librte_vhost.so.21.1.p/librte_vhost.so.21.1.symbols
[2156/2476] Generating symbol file drivers/librte_net_ixgbe.so.21.1.p/librte_net_ixgbe.so.21.1.symbols
[2157/2476] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2158/2476] Generating symbol file lib/librte_port.so.21.1.p/librte_port.so.21.1.symbols
[2159/2476] Generating symbol file drivers/librte_net_bond.so.21.1.p/librte_net_bond.so.21.1.symbols
[2160/2476] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2161/2476] Generating symbol file drivers/librte_mempool_octeontx2.so.21.1.p/librte_mempool_octeontx2.so.21.1.symbols
[2162/2476] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2163/2476] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.21.1.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2164/2476] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2165/2476] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2166/2476] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2167/2476] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2168/2476] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2169/2476] Linking target drivers/librte_raw_octeontx2_dma.so.21.1
[2170/2476] Linking target drivers/librte_raw_octeontx2_ep.so.21.1
[2171/2476] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.21.1.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2172/2476] Linking target app/dpdk-test-eventdev
[2173/2476] Linking target app/dpdk-test-fib
[2174/2476] Linking target app/dpdk-test-flow-perf
[2175/2476] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2176/2476] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2177/2476] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2178/2476] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2179/2476] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2180/2476] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2181/2476] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2182/2476] Linking target drivers/librte_raw_ntb.so.21.1
[2183/2476] Linking target drivers/librte_raw_skeleton.so.21.1
[2184/2476] Linking target drivers/librte_crypto_bcmfs.so.21.1
[2185/2476] Generating rte_event_sw.pmd.c with a custom command
[2186/2476] Generating rte_event_dsw.pmd.c with a custom command
[2187/2476] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2188/2476] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2189/2476] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2190/2476] Linking static target drivers/librte_event_skeleton.a
[2191/2476] Compiling C object drivers/librte_event_dlb.a.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2192/2476] Compiling C object drivers/librte_event_dlb.so.21.1.p/meson-generated_.._rte_event_dlb.pmd.c.o
[2193/2476] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2194/2476] Compiling C object drivers/librte_event_dlb2.so.21.1.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2195/2476] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2196/2476] Compiling C object drivers/librte_event_opdl.so.21.1.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2197/2476] Compiling C object drivers/librte_event_octeontx.so.21.1.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2198/2476] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2199/2476] Compiling C object drivers/librte_baseband_null.so.21.1.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2200/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2201/2476] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2202/2476] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2203/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2204/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2205/2476] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[2206/2476] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[2207/2476] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2208/2476] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2209/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2210/2476] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2211/2476] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2212/2476] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2213/2476] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2214/2476] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2215/2476] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2216/2476] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2217/2476] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2218/2476] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2219/2476] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2220/2476] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2221/2476] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2222/2476] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2223/2476] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2224/2476] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2225/2476] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2226/2476] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2227/2476] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2228/2476] Linking static target drivers/librte_crypto_scheduler.a
[2229/2476] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2230/2476] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2231/2476] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2232/2476] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2233/2476] Linking target app/dpdk-test-sad
[2234/2476] Linking target app/dpdk-test-regex
[2235/2476] Linking target drivers/librte_mempool_dpaa.so.21.1
[2236/2476] Linking target drivers/librte_mempool_dpaa2.so.21.1
[2237/2476] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2238/2476] Linking target drivers/librte_net_vmxnet3.so.21.1
[2239/2476] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2240/2476] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2241/2476] Linking target drivers/librte_net_vhost.so.21.1
[2242/2476] Linking target lib/librte_table.so.21.1
[2243/2476] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2244/2476] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2245/2476] Linking target drivers/librte_regex_octeontx2.so.21.1
[2246/2476] Linking target drivers/librte_vdpa_ifc.so.21.1
[2247/2476] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2248/2476] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2249/2476] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2250/2476] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2251/2476] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2252/2476] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2253/2476] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2254/2476] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2255/2476] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2256/2476] Compiling C object drivers/librte_event_sw.so.21.1.p/meson-generated_.._rte_event_sw.pmd.c.o
[2257/2476] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2258/2476] Compiling C object drivers/librte_event_dsw.so.21.1.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2259/2476] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2260/2476] Linking static target drivers/librte_event_dlb.a
[2261/2476] Compiling C object drivers/librte_baseband_turbo_sw.so.21.1.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2262/2476] Linking static target drivers/librte_event_dlb2.a
[2263/2476] Linking static target drivers/librte_event_opdl.a
[2264/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2265/2476] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2266/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2267/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2268/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2269/2476] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2270/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2271/2476] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2272/2476] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2273/2476] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2274/2476] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2275/2476] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2276/2476] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2277/2476] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2278/2476] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2279/2476] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2280/2476] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2281/2476] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2282/2476] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2283/2476] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2284/2476] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2285/2476] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2286/2476] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2287/2476] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2288/2476] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2289/2476] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2290/2476] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2291/2476] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2292/2476] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2293/2476] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2294/2476] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2295/2476] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2296/2476] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2297/2476] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2298/2476] Linking static target drivers/librte_event_octeontx.a
[2299/2476] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2300/2476] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2301/2476] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2302/2476] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2303/2476] Linking target drivers/librte_crypto_nitrox.so.21.1
[2304/2476] Linking target drivers/librte_crypto_null.so.21.1
[2305/2476] Linking target drivers/librte_net_txgbe.so.21.1
[2306/2476] Linking target drivers/librte_net_virtio.so.21.1
[2307/2476] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2308/2476] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2309/2476] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2310/2476] Linking target drivers/librte_compress_octeontx.so.21.1
[2311/2476] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2312/2476] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2313/2476] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2314/2476] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2315/2476] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2316/2476] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2317/2476] Linking static target drivers/librte_baseband_null.a
[2318/2476] Generating rte_baseband_acc100.pmd.c with a custom command
[2319/2476] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2320/2476] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2321/2476] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2322/2476] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2323/2476] Compiling C object drivers/librte_crypto_dpaa_sec.so.21.1.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2324/2476] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2325/2476] Compiling C object drivers/librte_crypto_dpaa2_sec.so.21.1.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2326/2476] Linking static target drivers/librte_event_sw.a
[2327/2476] Linking static target drivers/librte_event_dsw.a
[2328/2476] Linking static target drivers/librte_baseband_turbo_sw.a
[2329/2476] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2330/2476] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2331/2476] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2332/2476] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2333/2476] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2334/2476] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2335/2476] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2336/2476] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2337/2476] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2338/2476] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2339/2476] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2340/2476] Generating symbol file drivers/librte_mempool_dpaa2.so.21.1.p/librte_mempool_dpaa2.so.21.1.symbols
[2341/2476] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2342/2476] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2343/2476] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2344/2476] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2345/2476] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2346/2476] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2347/2476] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2348/2476] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2349/2476] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2350/2476] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2351/2476] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2352/2476] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2353/2476] Linking target drivers/librte_crypto_caam_jr.so.21.1
[2354/2476] Generating igb_uio_makefile with a custom command
[2355/2476] Generating rte_kni_makefile with a custom command
[2356/2476] Linking target drivers/librte_event_skeleton.so.21.1
[2357/2476] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2358/2476] Compiling C object drivers/librte_baseband_acc100.so.21.1.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2359/2476] Linking static target drivers/librte_crypto_dpaa_sec.a
[2360/2476] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2361/2476] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2362/2476] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2363/2476] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2364/2476] Generating symbol file drivers/librte_mempool_dpaa.so.21.1.p/librte_mempool_dpaa.so.21.1.symbols
[2365/2476] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2366/2476] Linking target drivers/librte_baseband_fpga_lte_fec.so.21.1
[2367/2476] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.1
[2368/2476] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2369/2476] Linking static target drivers/librte_baseband_acc100.a
[2370/2476] Linking target drivers/librte_raw_dpaa2_qdma.so.21.1
[2371/2476] Linking target drivers/librte_net_dpaa2.so.21.1
[2372/2476] Compiling C object drivers/librte_crypto_octeontx2.so.21.1.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2373/2476] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2374/2476] Linking target drivers/librte_net_dpaa.so.21.1
[2375/2476] Linking static target drivers/librte_crypto_octeontx2.a
[2376/2476] Linking target drivers/librte_crypto_scheduler.so.21.1
[2377/2476] Generating symbol file lib/librte_table.so.21.1.p/librte_table.so.21.1.symbols
[2378/2476] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2379/2476] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2380/2476] Generating rte_net_octeontx2.pmd.c with a custom command
[2381/2476] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2382/2476] Generating rte_event_dlb.sym_chk with a custom command (wrapped by meson to capture output)
[2383/2476] Linking target lib/librte_flow_classify.so.21.1
[2384/2476] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2385/2476] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2386/2476] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2387/2476] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2388/2476] Linking target lib/librte_pipeline.so.21.1
[2389/2476] Compiling C object drivers/librte_net_octeontx2.so.21.1.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2390/2476] Linking static target drivers/librte_net_octeontx2.a
[2391/2476] Linking target drivers/librte_event_dlb.so.21.1
[2392/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2393/2476] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2394/2476] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2395/2476] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.21.1
[2396/2476] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2397/2476] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2398/2476] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2399/2476] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2400/2476] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2401/2476] Linking target drivers/librte_event_dlb2.so.21.1
[2402/2476] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2403/2476] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2404/2476] Linking target drivers/librte_event_opdl.so.21.1
[2405/2476] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2406/2476] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2407/2476] Linking target drivers/librte_baseband_null.so.21.1
[2408/2476] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2409/2476] Linking target drivers/librte_event_octeontx.so.21.1
[2410/2476] Generating symbol file drivers/librte_baseband_fpga_lte_fec.so.21.1.p/librte_baseband_fpga_lte_fec.so.21.1.symbols
[2411/2476] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2412/2476] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2413/2476] Linking target drivers/librte_event_dsw.so.21.1
[2414/2476] Generating symbol file drivers/librte_event_skeleton.so.21.1.p/librte_event_skeleton.so.21.1.symbols
[2415/2476] Linking target drivers/librte_event_sw.so.21.1
[2416/2476] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2417/2476] Linking target drivers/librte_baseband_turbo_sw.so.21.1
[2418/2476] Generating symbol file drivers/librte_net_dpaa.so.21.1.p/librte_net_dpaa.so.21.1.symbols
[2419/2476] Linking target drivers/librte_crypto_dpaa2_sec.so.21.1
[2420/2476] Generating symbol file drivers/librte_crypto_scheduler.so.21.1.p/librte_crypto_scheduler.so.21.1.symbols
[2421/2476] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2422/2476] Generating symbol file drivers/librte_net_dpaa2.so.21.1.p/librte_net_dpaa2.so.21.1.symbols
[2423/2476] Linking target app/dpdk-test-crypto-perf
[2424/2476] Linking target drivers/librte_crypto_dpaa_sec.so.21.1
[2425/2476] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2426/2476] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2427/2476] Linking target app/dpdk-testpmd
[2428/2476] Generating symbol file lib/librte_pipeline.so.21.1.p/librte_pipeline.so.21.1.symbols
[2429/2476] Linking target drivers/librte_crypto_octeontx2.so.21.1
[2430/2476] Linking target drivers/librte_baseband_acc100.so.21.1
[2431/2476] Linking target drivers/librte_net_softnic.so.21.1
[2432/2476] Linking target app/dpdk-test-pipeline
[2433/2476] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2434/2476] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2435/2476] Generating symbol file lib/librte_flow_classify.so.21.1.p/librte_flow_classify.so.21.1.symbols
[2436/2476] Linking target drivers/librte_net_octeontx2.so.21.1
[2437/2476] Generating symbol file drivers/librte_baseband_fpga_5gnr_fec.so.21.1.p/librte_baseband_fpga_5gnr_fec.so.21.1.symbols
[2438/2476] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2439/2476] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.21.1.p/librte_crypto_dpaa2_sec.so.21.1.symbols
[2440/2476] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2441/2476] Generating rte_crypto_octeontx.pmd.c with a custom command
[2442/2476] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2443/2476] Compiling C object drivers/librte_crypto_octeontx.so.21.1.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2444/2476] Linking static target drivers/librte_crypto_octeontx.a
[2445/2476] Linking target drivers/librte_event_dpaa2.so.21.1
[2446/2476] Generating symbol file drivers/librte_crypto_dpaa_sec.so.21.1.p/librte_crypto_dpaa_sec.so.21.1.symbols
[2447/2476] Generating symbol file drivers/librte_crypto_octeontx2.so.21.1.p/librte_crypto_octeontx2.so.21.1.symbols
[2448/2476] Linking target drivers/librte_event_dpaa.so.21.1
[2449/2476] Generating symbol file drivers/librte_baseband_acc100.so.21.1.p/librte_baseband_acc100.so.21.1.symbols
[2450/2476] Linking target app/dpdk-test-bbdev
[2451/2476] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2452/2476] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2453/2476] Generating symbol file drivers/librte_net_octeontx2.so.21.1.p/librte_net_octeontx2.so.21.1.symbols
[2454/2476] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2455/2476] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2456/2476] Linking target drivers/librte_crypto_octeontx.so.21.1
[2457/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2458/2476] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2459/2476] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2460/2476] Generating igb_uio with a custom command
make: Entering directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
make: Leaving directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
[2461/2476] Generating rte_kni with a custom command
make: Entering directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/kernels/4.18.0-240.1.1.el8_3.x86_64'
[2462/2476] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2463/2476] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2464/2476] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2465/2476] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2466/2476] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2467/2476] Linking target app/test/dpdk-test
[2468/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2469/2476] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2470/2476] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2471/2476] Generating rte_event_octeontx2.pmd.c with a custom command
[2472/2476] Compiling C object drivers/librte_event_octeontx2.so.21.1.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2473/2476] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2474/2476] Linking static target drivers/librte_event_octeontx2.a
[2475/2476] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2476/2476] Linking target drivers/librte_event_octeontx2.so.21.1
18/12/2020 11:31:17              dut.10.240.183.70: rm -rf /root/tmp/dpdk_share_lib
18/12/2020 11:31:17              dut.10.240.183.70: 
18/12/2020 11:31:17              dut.10.240.183.70: DESTDIR=/root/tmp/dpdk_share_lib ninja -C x86_64-native-linuxapp-gcc -j 110 install
18/12/2020 11:31:17              dut.10.240.183.70: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[0/1] Installing files.
Installing subdir /root/dpdk/examples to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples
Installing /root/dpdk/examples/ipv4_multicast/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/ipv4_multicast/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/ipv4_multicast/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipv4_multicast
Installing /root/dpdk/examples/pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/conn.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/conn.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/obj.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/thread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/obj.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline
Installing /root/dpdk/examples/pipeline/examples/vxlan_table.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan_pcap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd_macswp.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan_table.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/packet.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/vxlan.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/pipeline/examples/l2fwd.spec to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/pipeline/examples
Installing /root/dpdk/examples/vm_power_manager/channel_monitor.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor_nop.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/power_manager.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/parse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/vm_power_cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_monitor.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/power_manager.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/oob_monitor_x86.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_manager.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/parse.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/vm_power_cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/channel_manager.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager
Installing /root/dpdk/examples/vm_power_manager/guest_cli/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/parse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/vm_power_manager/guest_cli/parse.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vm_power_manager/guest_cli
Installing /root/dpdk/examples/skeleton/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/skeleton/basicfwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/skeleton/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/skeleton
Installing /root/dpdk/examples/ip_fragmentation/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/ip_fragmentation/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/ip_fragmentation/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_fragmentation
Installing /root/dpdk/examples/flow_filtering/flow_blocks.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/flow_filtering/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_filtering
Installing /root/dpdk/examples/ip_pipeline/mempool.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/link.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tap.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/conn.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/kni.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/conn.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tmgr.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/swq.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cli.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cli.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/kni.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tap.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/tmgr.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/parser.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cryptodev.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/cryptodev.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/mempool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/link.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/parser.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/action.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/thread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/action.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/swq.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/pipeline.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/pipeline.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline
Installing /root/dpdk/examples/ip_pipeline/examples/route.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/firewall.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/tap.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/kni.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/flow.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/flow_crypto.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/route_ecmp.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/l2fwd.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ip_pipeline/examples/rss.cli to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_pipeline/examples
Installing /root/dpdk/examples/ntb/ntb_fwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/ntb/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/ntb/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ntb
Installing /root/dpdk/examples/l2fwd-event/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_poll.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_common.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event_internal_port.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_poll.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l2fwd-event/l2fwd_event.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-event
Installing /root/dpdk/examples/l3fwd/l3fwd_event.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_sequential.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event_internal_port.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_event.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_altivec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_altivec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_lpm_sse.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/l3fwd/l3fwd_em_hlm_neon.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd
Installing /root/dpdk/examples/ioat/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/ioat/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/ioat/ioatfwd.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ioat
Installing /root/dpdk/examples/performance-thread/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread
Installing /root/dpdk/examples/performance-thread/pthread_shim/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/pthread_shim.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/pthread_shim/pthread_shim.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/pthread_shim
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/l3fwd-thread/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/l3fwd-thread
Installing /root/dpdk/examples/performance-thread/common/lthread_queue.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_int.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_tls.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_sched.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/common.mk to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_objcache.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_cond.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_pool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_tls.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_diag_api.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_api.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_mutex.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_sched.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_mutex.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_cond.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/lthread_timer.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common
Installing /root/dpdk/examples/performance-thread/common/arch/x86/ctx.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/x86/stack.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/x86/ctx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/x86
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/ctx.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/stack.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/performance-thread/common/arch/arm64/ctx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/performance-thread/common/arch/arm64
Installing /root/dpdk/examples/flow_classify/ipv4_rules_file.txt to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/flow_classify/flow_classify.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/flow_classify
Installing /root/dpdk/examples/server_node_efd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd
Installing /root/dpdk/examples/server_node_efd/shared/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/shared
Installing /root/dpdk/examples/server_node_efd/server/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/args.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/server/init.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/server
Installing /root/dpdk/examples/server_node_efd/node/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/server_node_efd/node/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/server_node_efd/node/node.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/server_node_efd/node
Installing /root/dpdk/examples/l3fwd-graph/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/l3fwd-graph/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/l3fwd-graph/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-graph
Installing /root/dpdk/examples/helloworld/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/helloworld/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/helloworld/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/helloworld
Installing /root/dpdk/examples/l2fwd-cat/cat.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/cat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/l2fwd-cat/l2fwd-cat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-cat
Installing /root/dpdk/examples/vhost/ioat.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/ioat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vhost/virtio_net.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost
Installing /root/dpdk/examples/vmdq_dcb/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/vmdq_dcb/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/vmdq_dcb/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq_dcb
Installing /root/dpdk/examples/service_cores/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/service_cores/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/service_cores/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/service_cores
Installing /root/dpdk/examples/ipsec-secgw/esp.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec-secgw.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sp6.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ep0.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sad.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/rt.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipip.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/event_helper.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/esp.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sad.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_worker.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/event_helper.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/flow.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sp4.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/sa.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/parser.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ep1.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/flow.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec-secgw.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/parser.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_worker.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/ipsec_process.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw
Installing /root/dpdk/examples/ipsec-secgw/test/load_env.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/pkttest.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesgcm_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_ipv6opts.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/data_rxtx.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/pkttest.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/bypass_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/run_test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesgcm_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/common_defs_secgw.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_null_header_reconstruct.py to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/linux_test.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ipsec-secgw/test
Installing /root/dpdk/examples/multi_process/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process
Installing /root/dpdk/examples/multi_process/hotplug_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/hotplug_mp/commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/hotplug_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/symmetric_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/symmetric_mp
Installing /root/dpdk/examples/multi_process/client_server_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp
Installing /root/dpdk/examples/multi_process/client_server_mp/shared/common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/shared
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_client/client.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_client
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/args.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/client_server_mp/mp_server/init.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/client_server_mp/mp_server
Installing /root/dpdk/examples/multi_process/simple_mp/mp_commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/mp_commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/multi_process/simple_mp/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/multi_process/simple_mp
Installing /root/dpdk/examples/l2fwd-crypto/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/l2fwd-crypto/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/l2fwd-crypto/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-crypto
Installing /root/dpdk/examples/fips_validation/fips_validation_hmac.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_aes.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_cmac.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_dev_self_test.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_gcm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_dev_self_test.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_ccm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_xts.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_tdes.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/fips_validation/fips_validation_sha.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/fips_validation
Installing /root/dpdk/examples/ethtool/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool
Installing /root/dpdk/examples/ethtool/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool
Installing /root/dpdk/examples/ethtool/lib/rte_ethtool.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/lib/rte_ethtool.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/lib/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/lib
Installing /root/dpdk/examples/ethtool/ethtool-app/ethapp.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/ethapp.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/ethtool/ethtool-app/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ethtool/ethtool-app
Installing /root/dpdk/examples/bond/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/bond/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bond
Installing /root/dpdk/examples/vhost_crypto/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/vhost_crypto/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/vhost_crypto/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_crypto
Installing /root/dpdk/examples/qos_sched/profile.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cmdline.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/args.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/stats.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/init.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cfg_file.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/profile_ov.cfg to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/app_thread.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/qos_sched/cfg_file.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_sched
Installing /root/dpdk/examples/vdpa/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/vdpa/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/vdpa/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vdpa
Installing /root/dpdk/examples/cmdline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/commands.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/parse_obj_list.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/commands.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/cmdline/parse_obj_list.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/cmdline
Installing /root/dpdk/examples/qos_meter/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/rte_policer.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/qos_meter/rte_policer.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/qos_meter
Installing /root/dpdk/examples/l3fwd-acl/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-acl/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-acl/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-acl
Installing /root/dpdk/examples/l3fwd-power/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/main.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/perf_core.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l3fwd-power/perf_core.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l3fwd-power
Installing /root/dpdk/examples/l2fwd-keepalive/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/shm.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/shm.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive
Installing /root/dpdk/examples/l2fwd-keepalive/ka-agent/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive/ka-agent
Installing /root/dpdk/examples/l2fwd-keepalive/ka-agent/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-keepalive/ka-agent
Installing /root/dpdk/examples/timer/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/timer/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/timer/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/timer
Installing /root/dpdk/examples/bbdev_app/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/bbdev_app/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/bbdev_app/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bbdev_app
Installing /root/dpdk/examples/link_status_interrupt/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/link_status_interrupt/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/link_status_interrupt/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/link_status_interrupt
Installing /root/dpdk/examples/bpf/t3.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/dummy.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/t2.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/t1.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/bpf/README to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/bpf
Installing /root/dpdk/examples/l2fwd/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/l2fwd/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/l2fwd/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd
Installing /root/dpdk/examples/distributor/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/distributor/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/distributor/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/distributor
Installing /root/dpdk/examples/eventdev_pipeline/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_worker_tx.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_common.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/eventdev_pipeline/pipeline_worker_generic.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/eventdev_pipeline
Installing /root/dpdk/examples/rxtx_callbacks/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/rxtx_callbacks/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/rxtx_callbacks/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/rxtx_callbacks
Installing /root/dpdk/examples/ptpclient/ptpclient.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/ptpclient/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/ptpclient/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ptpclient
Installing /root/dpdk/examples/vmdq/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/vmdq/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/vmdq/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vmdq
Installing /root/dpdk/examples/packet_ordering/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/packet_ordering/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/packet_ordering/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/packet_ordering
Installing /root/dpdk/examples/ip_reassembly/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/ip_reassembly/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/ip_reassembly/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/ip_reassembly
Installing /root/dpdk/examples/vhost_blk/blk.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/blk_spec.h to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/vhost_blk/vhost_blk_compat.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/vhost_blk
Installing /root/dpdk/examples/kni/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/kni/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/kni/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/kni
Installing /root/dpdk/examples/l2fwd-jobstats/meson.build to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing /root/dpdk/examples/l2fwd-jobstats/main.c to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing /root/dpdk/examples/l2fwd-jobstats/Makefile to /root/tmp/dpdk_share_lib/usr/local/share/dpdk/examples/l2fwd-jobstats
Installing lib/librte_kvargs.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kvargs.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_telemetry.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_telemetry.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eal.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eal.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rcu.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rcu.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mempool.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mempool.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mbuf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_mbuf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_net.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_net.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_meter.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_meter.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ethdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ethdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pci.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pci.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cmdline.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cmdline.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_metrics.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_metrics.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_hash.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_hash.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_timer.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_timer.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_acl.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_acl.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bbdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bbdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bitratestats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bitratestats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cfgfile.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cfgfile.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_compressdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_compressdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cryptodev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_cryptodev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_distributor.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_distributor.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_efd.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_efd.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eventdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_eventdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gro.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gro.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gso.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_gso.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ip_frag.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ip_frag.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_jobstats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_jobstats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kni.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_kni.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_latencystats.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_latencystats.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_lpm.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_lpm.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_member.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_member.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_power.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_power.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pdump.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pdump.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rawdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rawdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_regexdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_regexdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_rib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_reorder.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_reorder.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_sched.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_sched.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_security.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_security.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_stack.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_stack.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_vhost.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_vhost.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ipsec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_ipsec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_fib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_fib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_port.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_port.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_table.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_table.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pipeline.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_pipeline.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_flow_classify.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_flow_classify.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bpf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_bpf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_graph.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_graph.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_node.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing lib/librte_node.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_cpt.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_cpt.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_dpaax.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_dpaax.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_iavf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_iavf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_sfc_efx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_sfc_efx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_fslmc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_fslmc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_ifpga.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_ifpga.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_pci.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_pci.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_vdev.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_vdev.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_bus_vmbus.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_bus_vmbus.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_common_qat.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_common_qat.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_bucket.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_bucket.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_mempool_stack.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_mempool_stack.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_af_packet.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_af_packet.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ark.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ark.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_atlantic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_atlantic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_avp.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_avp.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_axgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_axgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bond.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bond.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bnx2x.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bnx2x.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_bnxt.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_bnxt.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_cxgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_cxgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_e1000.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_e1000.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ena.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ena.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_enetc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_enetc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_enic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_enic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_failsafe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_failsafe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_fm10k.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_fm10k.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_i40e.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_i40e.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_hinic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_hinic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_hns3.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_hns3.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_iavf.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_iavf.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ice.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ice.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_igc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_igc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ixgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ixgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_kni.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_kni.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_liquidio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_liquidio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_memif.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_memif.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_netvsc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_netvsc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_nfp.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_nfp.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_pfe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_pfe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_qede.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_qede.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_ring.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_ring.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_sfc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_sfc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_softnic.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_softnic.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_tap.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_tap.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_thunderx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_thunderx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_txgbe.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_txgbe.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vdev_netvsc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vdev_netvsc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vhost.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vhost.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_virtio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_virtio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_net_vmxnet3.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_net_vmxnet3.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_dpaa2_cmdif.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_dpaa2_cmdif.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_dpaa2_qdma.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_dpaa2_qdma.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_ioat.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_ioat.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_ntb.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_ntb.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_octeontx2_dma.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_octeontx2_dma.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_octeontx2_ep.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_octeontx2_ep.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_raw_skeleton.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_raw_skeleton.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_bcmfs.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_bcmfs.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_caam_jr.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_caam_jr.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_dpaa_sec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_dpaa_sec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_dpaa2_sec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_dpaa2_sec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_nitrox.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_nitrox.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_scheduler.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_scheduler.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_crypto_virtio.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_crypto_virtio.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_compress_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_compress_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_compress_zlib.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_compress_zlib.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_regex_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_regex_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_vdpa_ifc.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_vdpa_ifc.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dlb.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dlb.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dlb2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dlb2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dpaa.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dpaa.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dpaa2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dpaa2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_octeontx2.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_octeontx2.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_opdl.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_opdl.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_skeleton.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_skeleton.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_sw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_sw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_dsw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_dsw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_event_octeontx.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_event_octeontx.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_null.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_null.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_turbo_sw.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_turbo_sw.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_fpga_lte_fec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_fpga_lte_fec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_fpga_5gnr_fec.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_fpga_5gnr_fec.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing drivers/librte_baseband_acc100.a to /root/tmp/dpdk_share_lib/usr/local/lib
Installing drivers/librte_baseband_acc100.so.21.1 to /root/tmp/dpdk_share_lib/usr/local/lib/dpdk/pmds-21.1
Installing app/dpdk-pdump to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-proc-info to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-acl to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-bbdev to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-cmdline to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-compress-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-crypto-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-eventdev to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-fib to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-flow-perf to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-pipeline to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-testpmd to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-regex to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/dpdk-test-sad to /root/tmp/dpdk_share_lib/usr/local/bin
Installing app/test/dpdk-test to /root/tmp/dpdk_share_lib/usr/local/bin
Installing kernel/linux/kni/rte_kni.ko to /root/tmp/dpdk_share_lib/lib/modules/4.18.0-240.1.1.el8_3.x86_64/extra/dpdk
This file does not have an rpath.
This file does not have a runpath.
Installing kernel/linux/igb_uio/igb_uio.ko to /root/tmp/dpdk_share_lib/lib/modules/4.18.0-240.1.1.el8_3.x86_64/extra/dpdk
This file does not have an rpath.
This file does not have a runpath.
Installing /root/dpdk/config/rte_config.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/config/rte_compatibility_defines.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kvargs/rte_kvargs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_telemetry/rte_telemetry.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/generic/rte_atomic.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_byteorder.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_cpuflags.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_cycles.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_io.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_mcslock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_memcpy.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_pause.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_power_intrinsics.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_prefetch.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_rwlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_spinlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_ticketlock.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/include/generic/rte_vect.h to /root/tmp/dpdk_share_lib/usr/local/include/generic
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic_32.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic_64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_atomic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder_32.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder_64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_byteorder.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_cpuflags.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_cycles.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_io.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_mcslock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_memcpy.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_pause.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_power_intrinsics.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_prefetch.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_rtm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_rwlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_spinlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_ticketlock.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/x86/include/rte_vect.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_alarm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bitmap.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bitops.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_branch_prediction.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_bus.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_class.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_compat.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_debug.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_dev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_devargs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_interrupts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_memconfig.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_eal_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_errno.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_fbarray.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_hexdump.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_hypervisor.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_interrupts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_keepalive.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_launch.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_lcore.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_log.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_malloc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_memory.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_memzone.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_pci_dev_feature_defs.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_pci_dev_features.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_per_lcore.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_random.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_reciprocal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_service.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_service_component.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_string_fns.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_tailq.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_time.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace_point.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_trace_point_register.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_uuid.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_version.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/include/rte_vfio.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eal/linux/include/rte_os.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_elem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_generic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_hts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_hts_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_peek_zc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_rts.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ring/rte_ring_rts_c11_mem.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rcu/rte_rcu_qsbr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mempool/rte_mempool_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_ptype.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_pool_ops.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_mbuf/rte_mbuf_dyn.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ip.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_tcp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_udp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_esp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_sctp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_icmp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_arp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ether.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_vxlan.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_gre.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_gtp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_net.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_net_crc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_mpls.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_higig.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_ecpri.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_net/rte_geneve.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_meter/rte_meter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_ethdev_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_eth_ctrl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_dev_info.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_flow.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_flow_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_mtr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_mtr_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_tm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ethdev/rte_tm_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pci/rte_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_num.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_ipaddr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_etheraddr.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_string.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_rdline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_vt100.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_socket.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_cirbuf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cmdline/cmdline_parse_portlist.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_metrics/rte_metrics.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_crc_arm64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_fbk_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_hash_crc.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_jhash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_hash/rte_thash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_timer/rte_timer.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_acl/rte_acl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_acl/rte_acl_osdep.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bbdev/rte_bbdev_op.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bitratestats/rte_bitrate.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cfgfile/rte_cfgfile.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_compressdev_internal.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_compressdev/rte_comp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_cryptodev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto_sym.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_cryptodev/rte_crypto_asym.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_distributor/rte_distributor.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_efd/rte_efd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_pmd_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_trace.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_eventdev_trace_fp.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_eth_rx_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_timer_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_timer_adapter_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_crypto_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_eventdev/rte_event_eth_tx_adapter.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_gro/rte_gro.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_gso/rte_gso.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ip_frag/rte_ip_frag.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_jobstats/rte_jobstats.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kni/rte_kni.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_kni/rte_kni_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_latencystats/rte_latencystats.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_altivec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_neon.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_lpm/rte_lpm_sse.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_member/rte_member.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_power/rte_power.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_power/rte_power_empty_poll.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pdump/rte_pdump.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rawdev/rte_rawdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rawdev/rte_rawdev_pmd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev_core.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_regexdev/rte_regexdev_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rib/rte_rib.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_rib/rte_rib6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_reorder/rte_reorder.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_sched.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_sched_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_red.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_sched/rte_approx.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_security/rte_security.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_security/rte_security_driver.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_std.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf_generic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_stack/rte_stack_lf_c11.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vdpa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vdpa_dev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_vhost/rte_vhost_async.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_group.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_sa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_ipsec/rte_ipsec_sad.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_fib/rte_fib.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_fib/rte_fib6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_fd.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_frag.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ras.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_sched.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_source_sink.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_sym_crypto.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_eventdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_swx_port_source_sink.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_port/rte_port_kni.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_acl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_lpm.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_lpm_ipv6.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_cuckoo.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_func.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_hash_func_arm64.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_lru.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_array.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_table_stub.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_swx_table.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_swx_table_em.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_table/rte_lru_x86.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_pipeline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_port_in_action.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_table_action.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_pipeline.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_extern.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_pipeline/rte_swx_ctl.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_flow_classify/rte_flow_classify.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/bpf_def.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/rte_bpf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_bpf/rte_bpf_ethdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_graph/rte_graph.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_graph/rte_graph_worker.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_node/rte_node_ip4_api.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/lib/librte_node/rte_node_eth_api.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/ifpga/rte_bus_ifpga.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/pci/rte_bus_pci.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vdev/rte_bus_vdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vmbus/rte_bus_vmbus.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/bus/vmbus/rte_vmbus_reg.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/mempool/dpaa2/rte_dpaa2_mempool.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ark/rte_pmd_ark.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/avp/rte_avp_common.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/avp/rte_avp_fifo.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bonding/rte_eth_bond.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bonding/rte_eth_bond_8023ad.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/bnxt/rte_pmd_bnxt.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/dpaa/rte_pmd_dpaa.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/dpaa2/rte_pmd_dpaa2.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/i40e/rte_pmd_i40e.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/iavf/rte_pmd_iavf.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ice/rte_pmd_ice.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ixgbe/rte_pmd_ixgbe.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/ring/rte_eth_ring.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/softnic/rte_eth_softnic.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/txgbe/rte_pmd_txgbe.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/net/vhost/rte_eth_vhost.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/dpaa2_cmdif/rte_pmd_dpaa2_cmdif.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ioat/rte_ioat_rawdev.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ioat/rte_ioat_rawdev_fns.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/raw/ntb/rte_pmd_ntb.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/crypto/scheduler/rte_cryptodev_scheduler.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/crypto/scheduler/rte_cryptodev_scheduler_operations.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/event/dlb/rte_pmd_dlb.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/event/dlb2/rte_pmd_dlb2.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/baseband/fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/drivers/baseband/acc100/rte_acc100_cfg.h to /root/tmp/dpdk_share_lib/usr/local/include/
Installing /root/dpdk/usertools/dpdk-devbind.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-pmdinfo.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-telemetry.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/usertools/dpdk-hugepages.py to /root/tmp/dpdk_share_lib/usr/local/bin
Installing /root/dpdk/x86_64-native-linuxapp-gcc/rte_build_config.h to /root/tmp/dpdk_share_lib/usr/local/include
Installing /root/dpdk/x86_64-native-linuxapp-gcc/meson-private/libdpdk-libs.pc to /root/tmp/dpdk_share_lib/usr/local/lib/pkgconfig
Installing /root/dpdk/x86_64-native-linuxapp-gcc/meson-private/libdpdk.pc to /root/tmp/dpdk_share_lib/usr/local/lib/pkgconfig
Running custom install script '/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh lib dpdk/pmds-21.1'
'./librte_baseband_acc100.so' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so'
'./librte_baseband_acc100.so.21' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so.21'
'./librte_baseband_acc100.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_acc100.so.21.1'
'./librte_baseband_fpga_5gnr_fec.so' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so'
'./librte_baseband_fpga_5gnr_fec.so.21' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so.21'
'./librte_baseband_fpga_5gnr_fec.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_fpga_5gnr_fec.so.21.1'
'./librte_baseband_fpga_lte_fec.so' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so'
'./librte_baseband_fpga_lte_fec.so.21' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so.21'
'./librte_baseband_fpga_lte_fec.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_fpga_lte_fec.so.21.1'
'./librte_baseband_null.so' -> 'dpdk/pmds-21.1/librte_baseband_null.so'
'./librte_baseband_null.so.21' -> 'dpdk/pmds-21.1/librte_baseband_null.so.21'
'./librte_baseband_null.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_null.so.21.1'
'./librte_baseband_turbo_sw.so' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so'
'./librte_baseband_turbo_sw.so.21' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so.21'
'./librte_baseband_turbo_sw.so.21.1' -> 'dpdk/pmds-21.1/librte_baseband_turbo_sw.so.21.1'
'./librte_bus_dpaa.so' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so'
'./librte_bus_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so.21'
'./librte_bus_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_dpaa.so.21.1'
'./librte_bus_fslmc.so' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so'
'./librte_bus_fslmc.so.21' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so.21'
'./librte_bus_fslmc.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_fslmc.so.21.1'
'./librte_bus_ifpga.so' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so'
'./librte_bus_ifpga.so.21' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so.21'
'./librte_bus_ifpga.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_ifpga.so.21.1'
'./librte_bus_pci.so' -> 'dpdk/pmds-21.1/librte_bus_pci.so'
'./librte_bus_pci.so.21' -> 'dpdk/pmds-21.1/librte_bus_pci.so.21'
'./librte_bus_pci.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_pci.so.21.1'
'./librte_bus_vdev.so' -> 'dpdk/pmds-21.1/librte_bus_vdev.so'
'./librte_bus_vdev.so.21' -> 'dpdk/pmds-21.1/librte_bus_vdev.so.21'
'./librte_bus_vdev.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_vdev.so.21.1'
'./librte_bus_vmbus.so' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so'
'./librte_bus_vmbus.so.21' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so.21'
'./librte_bus_vmbus.so.21.1' -> 'dpdk/pmds-21.1/librte_bus_vmbus.so.21.1'
'./librte_common_cpt.so' -> 'dpdk/pmds-21.1/librte_common_cpt.so'
'./librte_common_cpt.so.21' -> 'dpdk/pmds-21.1/librte_common_cpt.so.21'
'./librte_common_cpt.so.21.1' -> 'dpdk/pmds-21.1/librte_common_cpt.so.21.1'
'./librte_common_dpaax.so' -> 'dpdk/pmds-21.1/librte_common_dpaax.so'
'./librte_common_dpaax.so.21' -> 'dpdk/pmds-21.1/librte_common_dpaax.so.21'
'./librte_common_dpaax.so.21.1' -> 'dpdk/pmds-21.1/librte_common_dpaax.so.21.1'
'./librte_common_iavf.so' -> 'dpdk/pmds-21.1/librte_common_iavf.so'
'./librte_common_iavf.so.21' -> 'dpdk/pmds-21.1/librte_common_iavf.so.21'
'./librte_common_iavf.so.21.1' -> 'dpdk/pmds-21.1/librte_common_iavf.so.21.1'
'./librte_common_octeontx2.so' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so'
'./librte_common_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so.21'
'./librte_common_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_common_octeontx2.so.21.1'
'./librte_common_octeontx.so' -> 'dpdk/pmds-21.1/librte_common_octeontx.so'
'./librte_common_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_common_octeontx.so.21'
'./librte_common_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_common_octeontx.so.21.1'
'./librte_common_qat.so' -> 'dpdk/pmds-21.1/librte_common_qat.so'
'./librte_common_qat.so.21' -> 'dpdk/pmds-21.1/librte_common_qat.so.21'
'./librte_common_qat.so.21.1' -> 'dpdk/pmds-21.1/librte_common_qat.so.21.1'
'./librte_common_sfc_efx.so' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so'
'./librte_common_sfc_efx.so.21' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so.21'
'./librte_common_sfc_efx.so.21.1' -> 'dpdk/pmds-21.1/librte_common_sfc_efx.so.21.1'
'./librte_compress_octeontx.so' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so'
'./librte_compress_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so.21'
'./librte_compress_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_compress_octeontx.so.21.1'
'./librte_compress_zlib.so' -> 'dpdk/pmds-21.1/librte_compress_zlib.so'
'./librte_compress_zlib.so.21' -> 'dpdk/pmds-21.1/librte_compress_zlib.so.21'
'./librte_compress_zlib.so.21.1' -> 'dpdk/pmds-21.1/librte_compress_zlib.so.21.1'
'./librte_crypto_bcmfs.so' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so'
'./librte_crypto_bcmfs.so.21' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so.21'
'./librte_crypto_bcmfs.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_bcmfs.so.21.1'
'./librte_crypto_caam_jr.so' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so'
'./librte_crypto_caam_jr.so.21' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so.21'
'./librte_crypto_caam_jr.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_caam_jr.so.21.1'
'./librte_crypto_dpaa2_sec.so' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so'
'./librte_crypto_dpaa2_sec.so.21' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so.21'
'./librte_crypto_dpaa2_sec.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_dpaa2_sec.so.21.1'
'./librte_crypto_dpaa_sec.so' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so'
'./librte_crypto_dpaa_sec.so.21' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so.21'
'./librte_crypto_dpaa_sec.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_dpaa_sec.so.21.1'
'./librte_crypto_nitrox.so' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so'
'./librte_crypto_nitrox.so.21' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so.21'
'./librte_crypto_nitrox.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_nitrox.so.21.1'
'./librte_crypto_null.so' -> 'dpdk/pmds-21.1/librte_crypto_null.so'
'./librte_crypto_null.so.21' -> 'dpdk/pmds-21.1/librte_crypto_null.so.21'
'./librte_crypto_null.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_null.so.21.1'
'./librte_crypto_octeontx2.so' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so'
'./librte_crypto_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so.21'
'./librte_crypto_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_octeontx2.so.21.1'
'./librte_crypto_octeontx.so' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so'
'./librte_crypto_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so.21'
'./librte_crypto_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_octeontx.so.21.1'
'./librte_crypto_scheduler.so' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so'
'./librte_crypto_scheduler.so.21' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so.21'
'./librte_crypto_scheduler.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_scheduler.so.21.1'
'./librte_crypto_virtio.so' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so'
'./librte_crypto_virtio.so.21' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so.21'
'./librte_crypto_virtio.so.21.1' -> 'dpdk/pmds-21.1/librte_crypto_virtio.so.21.1'
'./librte_event_dlb2.so' -> 'dpdk/pmds-21.1/librte_event_dlb2.so'
'./librte_event_dlb2.so.21' -> 'dpdk/pmds-21.1/librte_event_dlb2.so.21'
'./librte_event_dlb2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dlb2.so.21.1'
'./librte_event_dlb.so' -> 'dpdk/pmds-21.1/librte_event_dlb.so'
'./librte_event_dlb.so.21' -> 'dpdk/pmds-21.1/librte_event_dlb.so.21'
'./librte_event_dlb.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dlb.so.21.1'
'./librte_event_dpaa2.so' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so'
'./librte_event_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so.21'
'./librte_event_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dpaa2.so.21.1'
'./librte_event_dpaa.so' -> 'dpdk/pmds-21.1/librte_event_dpaa.so'
'./librte_event_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_event_dpaa.so.21'
'./librte_event_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dpaa.so.21.1'
'./librte_event_dsw.so' -> 'dpdk/pmds-21.1/librte_event_dsw.so'
'./librte_event_dsw.so.21' -> 'dpdk/pmds-21.1/librte_event_dsw.so.21'
'./librte_event_dsw.so.21.1' -> 'dpdk/pmds-21.1/librte_event_dsw.so.21.1'
'./librte_event_octeontx2.so' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so'
'./librte_event_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so.21'
'./librte_event_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_event_octeontx2.so.21.1'
'./librte_event_octeontx.so' -> 'dpdk/pmds-21.1/librte_event_octeontx.so'
'./librte_event_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_event_octeontx.so.21'
'./librte_event_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_event_octeontx.so.21.1'
'./librte_event_opdl.so' -> 'dpdk/pmds-21.1/librte_event_opdl.so'
'./librte_event_opdl.so.21' -> 'dpdk/pmds-21.1/librte_event_opdl.so.21'
'./librte_event_opdl.so.21.1' -> 'dpdk/pmds-21.1/librte_event_opdl.so.21.1'
'./librte_event_skeleton.so' -> 'dpdk/pmds-21.1/librte_event_skeleton.so'
'./librte_event_skeleton.so.21' -> 'dpdk/pmds-21.1/librte_event_skeleton.so.21'
'./librte_event_skeleton.so.21.1' -> 'dpdk/pmds-21.1/librte_event_skeleton.so.21.1'
'./librte_event_sw.so' -> 'dpdk/pmds-21.1/librte_event_sw.so'
'./librte_event_sw.so.21' -> 'dpdk/pmds-21.1/librte_event_sw.so.21'
'./librte_event_sw.so.21.1' -> 'dpdk/pmds-21.1/librte_event_sw.so.21.1'
'./librte_mempool_bucket.so' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so'
'./librte_mempool_bucket.so.21' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so.21'
'./librte_mempool_bucket.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_bucket.so.21.1'
'./librte_mempool_dpaa2.so' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so'
'./librte_mempool_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so.21'
'./librte_mempool_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_dpaa2.so.21.1'
'./librte_mempool_dpaa.so' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so'
'./librte_mempool_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so.21'
'./librte_mempool_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_dpaa.so.21.1'
'./librte_mempool_octeontx2.so' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so'
'./librte_mempool_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so.21'
'./librte_mempool_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_octeontx2.so.21.1'
'./librte_mempool_octeontx.so' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so'
'./librte_mempool_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so.21'
'./librte_mempool_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_octeontx.so.21.1'
'./librte_mempool_ring.so' -> 'dpdk/pmds-21.1/librte_mempool_ring.so'
'./librte_mempool_ring.so.21' -> 'dpdk/pmds-21.1/librte_mempool_ring.so.21'
'./librte_mempool_ring.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_ring.so.21.1'
'./librte_mempool_stack.so' -> 'dpdk/pmds-21.1/librte_mempool_stack.so'
'./librte_mempool_stack.so.21' -> 'dpdk/pmds-21.1/librte_mempool_stack.so.21'
'./librte_mempool_stack.so.21.1' -> 'dpdk/pmds-21.1/librte_mempool_stack.so.21.1'
'./librte_net_af_packet.so' -> 'dpdk/pmds-21.1/librte_net_af_packet.so'
'./librte_net_af_packet.so.21' -> 'dpdk/pmds-21.1/librte_net_af_packet.so.21'
'./librte_net_af_packet.so.21.1' -> 'dpdk/pmds-21.1/librte_net_af_packet.so.21.1'
'./librte_net_ark.so' -> 'dpdk/pmds-21.1/librte_net_ark.so'
'./librte_net_ark.so.21' -> 'dpdk/pmds-21.1/librte_net_ark.so.21'
'./librte_net_ark.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ark.so.21.1'
'./librte_net_atlantic.so' -> 'dpdk/pmds-21.1/librte_net_atlantic.so'
'./librte_net_atlantic.so.21' -> 'dpdk/pmds-21.1/librte_net_atlantic.so.21'
'./librte_net_atlantic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_atlantic.so.21.1'
'./librte_net_avp.so' -> 'dpdk/pmds-21.1/librte_net_avp.so'
'./librte_net_avp.so.21' -> 'dpdk/pmds-21.1/librte_net_avp.so.21'
'./librte_net_avp.so.21.1' -> 'dpdk/pmds-21.1/librte_net_avp.so.21.1'
'./librte_net_axgbe.so' -> 'dpdk/pmds-21.1/librte_net_axgbe.so'
'./librte_net_axgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_axgbe.so.21'
'./librte_net_axgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_axgbe.so.21.1'
'./librte_net_bnx2x.so' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so'
'./librte_net_bnx2x.so.21' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so.21'
'./librte_net_bnx2x.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bnx2x.so.21.1'
'./librte_net_bnxt.so' -> 'dpdk/pmds-21.1/librte_net_bnxt.so'
'./librte_net_bnxt.so.21' -> 'dpdk/pmds-21.1/librte_net_bnxt.so.21'
'./librte_net_bnxt.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bnxt.so.21.1'
'./librte_net_bond.so' -> 'dpdk/pmds-21.1/librte_net_bond.so'
'./librte_net_bond.so.21' -> 'dpdk/pmds-21.1/librte_net_bond.so.21'
'./librte_net_bond.so.21.1' -> 'dpdk/pmds-21.1/librte_net_bond.so.21.1'
'./librte_net_cxgbe.so' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so'
'./librte_net_cxgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so.21'
'./librte_net_cxgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_cxgbe.so.21.1'
'./librte_net_dpaa2.so' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so'
'./librte_net_dpaa2.so.21' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so.21'
'./librte_net_dpaa2.so.21.1' -> 'dpdk/pmds-21.1/librte_net_dpaa2.so.21.1'
'./librte_net_dpaa.so' -> 'dpdk/pmds-21.1/librte_net_dpaa.so'
'./librte_net_dpaa.so.21' -> 'dpdk/pmds-21.1/librte_net_dpaa.so.21'
'./librte_net_dpaa.so.21.1' -> 'dpdk/pmds-21.1/librte_net_dpaa.so.21.1'
'./librte_net_e1000.so' -> 'dpdk/pmds-21.1/librte_net_e1000.so'
'./librte_net_e1000.so.21' -> 'dpdk/pmds-21.1/librte_net_e1000.so.21'
'./librte_net_e1000.so.21.1' -> 'dpdk/pmds-21.1/librte_net_e1000.so.21.1'
'./librte_net_ena.so' -> 'dpdk/pmds-21.1/librte_net_ena.so'
'./librte_net_ena.so.21' -> 'dpdk/pmds-21.1/librte_net_ena.so.21'
'./librte_net_ena.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ena.so.21.1'
'./librte_net_enetc.so' -> 'dpdk/pmds-21.1/librte_net_enetc.so'
'./librte_net_enetc.so.21' -> 'dpdk/pmds-21.1/librte_net_enetc.so.21'
'./librte_net_enetc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_enetc.so.21.1'
'./librte_net_enic.so' -> 'dpdk/pmds-21.1/librte_net_enic.so'
'./librte_net_enic.so.21' -> 'dpdk/pmds-21.1/librte_net_enic.so.21'
'./librte_net_enic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_enic.so.21.1'
'./librte_net_failsafe.so' -> 'dpdk/pmds-21.1/librte_net_failsafe.so'
'./librte_net_failsafe.so.21' -> 'dpdk/pmds-21.1/librte_net_failsafe.so.21'
'./librte_net_failsafe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_failsafe.so.21.1'
'./librte_net_fm10k.so' -> 'dpdk/pmds-21.1/librte_net_fm10k.so'
'./librte_net_fm10k.so.21' -> 'dpdk/pmds-21.1/librte_net_fm10k.so.21'
'./librte_net_fm10k.so.21.1' -> 'dpdk/pmds-21.1/librte_net_fm10k.so.21.1'
'./librte_net_hinic.so' -> 'dpdk/pmds-21.1/librte_net_hinic.so'
'./librte_net_hinic.so.21' -> 'dpdk/pmds-21.1/librte_net_hinic.so.21'
'./librte_net_hinic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_hinic.so.21.1'
'./librte_net_hns3.so' -> 'dpdk/pmds-21.1/librte_net_hns3.so'
'./librte_net_hns3.so.21' -> 'dpdk/pmds-21.1/librte_net_hns3.so.21'
'./librte_net_hns3.so.21.1' -> 'dpdk/pmds-21.1/librte_net_hns3.so.21.1'
'./librte_net_i40e.so' -> 'dpdk/pmds-21.1/librte_net_i40e.so'
'./librte_net_i40e.so.21' -> 'dpdk/pmds-21.1/librte_net_i40e.so.21'
'./librte_net_i40e.so.21.1' -> 'dpdk/pmds-21.1/librte_net_i40e.so.21.1'
'./librte_net_iavf.so' -> 'dpdk/pmds-21.1/librte_net_iavf.so'
'./librte_net_iavf.so.21' -> 'dpdk/pmds-21.1/librte_net_iavf.so.21'
'./librte_net_iavf.so.21.1' -> 'dpdk/pmds-21.1/librte_net_iavf.so.21.1'
'./librte_net_ice.so' -> 'dpdk/pmds-21.1/librte_net_ice.so'
'./librte_net_ice.so.21' -> 'dpdk/pmds-21.1/librte_net_ice.so.21'
'./librte_net_ice.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ice.so.21.1'
'./librte_net_igc.so' -> 'dpdk/pmds-21.1/librte_net_igc.so'
'./librte_net_igc.so.21' -> 'dpdk/pmds-21.1/librte_net_igc.so.21'
'./librte_net_igc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_igc.so.21.1'
'./librte_net_ixgbe.so' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so'
'./librte_net_ixgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so.21'
'./librte_net_ixgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ixgbe.so.21.1'
'./librte_net_kni.so' -> 'dpdk/pmds-21.1/librte_net_kni.so'
'./librte_net_kni.so.21' -> 'dpdk/pmds-21.1/librte_net_kni.so.21'
'./librte_net_kni.so.21.1' -> 'dpdk/pmds-21.1/librte_net_kni.so.21.1'
'./librte_net_liquidio.so' -> 'dpdk/pmds-21.1/librte_net_liquidio.so'
'./librte_net_liquidio.so.21' -> 'dpdk/pmds-21.1/librte_net_liquidio.so.21'
'./librte_net_liquidio.so.21.1' -> 'dpdk/pmds-21.1/librte_net_liquidio.so.21.1'
'./librte_net_memif.so' -> 'dpdk/pmds-21.1/librte_net_memif.so'
'./librte_net_memif.so.21' -> 'dpdk/pmds-21.1/librte_net_memif.so.21'
'./librte_net_memif.so.21.1' -> 'dpdk/pmds-21.1/librte_net_memif.so.21.1'
'./librte_net_netvsc.so' -> 'dpdk/pmds-21.1/librte_net_netvsc.so'
'./librte_net_netvsc.so.21' -> 'dpdk/pmds-21.1/librte_net_netvsc.so.21'
'./librte_net_netvsc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_netvsc.so.21.1'
'./librte_net_nfp.so' -> 'dpdk/pmds-21.1/librte_net_nfp.so'
'./librte_net_nfp.so.21' -> 'dpdk/pmds-21.1/librte_net_nfp.so.21'
'./librte_net_nfp.so.21.1' -> 'dpdk/pmds-21.1/librte_net_nfp.so.21.1'
'./librte_net_null.so' -> 'dpdk/pmds-21.1/librte_net_null.so'
'./librte_net_null.so.21' -> 'dpdk/pmds-21.1/librte_net_null.so.21'
'./librte_net_null.so.21.1' -> 'dpdk/pmds-21.1/librte_net_null.so.21.1'
'./librte_net_octeontx2.so' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so'
'./librte_net_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so.21'
'./librte_net_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_net_octeontx2.so.21.1'
'./librte_net_octeontx.so' -> 'dpdk/pmds-21.1/librte_net_octeontx.so'
'./librte_net_octeontx.so.21' -> 'dpdk/pmds-21.1/librte_net_octeontx.so.21'
'./librte_net_octeontx.so.21.1' -> 'dpdk/pmds-21.1/librte_net_octeontx.so.21.1'
'./librte_net_pfe.so' -> 'dpdk/pmds-21.1/librte_net_pfe.so'
'./librte_net_pfe.so.21' -> 'dpdk/pmds-21.1/librte_net_pfe.so.21'
'./librte_net_pfe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_pfe.so.21.1'
'./librte_net_qede.so' -> 'dpdk/pmds-21.1/librte_net_qede.so'
'./librte_net_qede.so.21' -> 'dpdk/pmds-21.1/librte_net_qede.so.21'
'./librte_net_qede.so.21.1' -> 'dpdk/pmds-21.1/librte_net_qede.so.21.1'
'./librte_net_ring.so' -> 'dpdk/pmds-21.1/librte_net_ring.so'
'./librte_net_ring.so.21' -> 'dpdk/pmds-21.1/librte_net_ring.so.21'
'./librte_net_ring.so.21.1' -> 'dpdk/pmds-21.1/librte_net_ring.so.21.1'
'./librte_net_sfc.so' -> 'dpdk/pmds-21.1/librte_net_sfc.so'
'./librte_net_sfc.so.21' -> 'dpdk/pmds-21.1/librte_net_sfc.so.21'
'./librte_net_sfc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_sfc.so.21.1'
'./librte_net_softnic.so' -> 'dpdk/pmds-21.1/librte_net_softnic.so'
'./librte_net_softnic.so.21' -> 'dpdk/pmds-21.1/librte_net_softnic.so.21'
'./librte_net_softnic.so.21.1' -> 'dpdk/pmds-21.1/librte_net_softnic.so.21.1'
'./librte_net_tap.so' -> 'dpdk/pmds-21.1/librte_net_tap.so'
'./librte_net_tap.so.21' -> 'dpdk/pmds-21.1/librte_net_tap.so.21'
'./librte_net_tap.so.21.1' -> 'dpdk/pmds-21.1/librte_net_tap.so.21.1'
'./librte_net_thunderx.so' -> 'dpdk/pmds-21.1/librte_net_thunderx.so'
'./librte_net_thunderx.so.21' -> 'dpdk/pmds-21.1/librte_net_thunderx.so.21'
'./librte_net_thunderx.so.21.1' -> 'dpdk/pmds-21.1/librte_net_thunderx.so.21.1'
'./librte_net_txgbe.so' -> 'dpdk/pmds-21.1/librte_net_txgbe.so'
'./librte_net_txgbe.so.21' -> 'dpdk/pmds-21.1/librte_net_txgbe.so.21'
'./librte_net_txgbe.so.21.1' -> 'dpdk/pmds-21.1/librte_net_txgbe.so.21.1'
'./librte_net_vdev_netvsc.so' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so'
'./librte_net_vdev_netvsc.so.21' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so.21'
'./librte_net_vdev_netvsc.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vdev_netvsc.so.21.1'
'./librte_net_vhost.so' -> 'dpdk/pmds-21.1/librte_net_vhost.so'
'./librte_net_vhost.so.21' -> 'dpdk/pmds-21.1/librte_net_vhost.so.21'
'./librte_net_vhost.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vhost.so.21.1'
'./librte_net_virtio.so' -> 'dpdk/pmds-21.1/librte_net_virtio.so'
'./librte_net_virtio.so.21' -> 'dpdk/pmds-21.1/librte_net_virtio.so.21'
'./librte_net_virtio.so.21.1' -> 'dpdk/pmds-21.1/librte_net_virtio.so.21.1'
'./librte_net_vmxnet3.so' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so'
'./librte_net_vmxnet3.so.21' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so.21'
'./librte_net_vmxnet3.so.21.1' -> 'dpdk/pmds-21.1/librte_net_vmxnet3.so.21.1'
'./librte_raw_dpaa2_cmdif.so' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so'
'./librte_raw_dpaa2_cmdif.so.21' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so.21'
'./librte_raw_dpaa2_cmdif.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_cmdif.so.21.1'
'./librte_raw_dpaa2_qdma.so' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so'
'./librte_raw_dpaa2_qdma.so.21' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so.21'
'./librte_raw_dpaa2_qdma.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_dpaa2_qdma.so.21.1'
'./librte_raw_ioat.so' -> 'dpdk/pmds-21.1/librte_raw_ioat.so'
'./librte_raw_ioat.so.21' -> 'dpdk/pmds-21.1/librte_raw_ioat.so.21'
'./librte_raw_ioat.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_ioat.so.21.1'
'./librte_raw_ntb.so' -> 'dpdk/pmds-21.1/librte_raw_ntb.so'
'./librte_raw_ntb.so.21' -> 'dpdk/pmds-21.1/librte_raw_ntb.so.21'
'./librte_raw_ntb.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_ntb.so.21.1'
'./librte_raw_octeontx2_dma.so' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so'
'./librte_raw_octeontx2_dma.so.21' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so.21'
'./librte_raw_octeontx2_dma.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_dma.so.21.1'
'./librte_raw_octeontx2_ep.so' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so'
'./librte_raw_octeontx2_ep.so.21' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so.21'
'./librte_raw_octeontx2_ep.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_octeontx2_ep.so.21.1'
'./librte_raw_skeleton.so' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so'
'./librte_raw_skeleton.so.21' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so.21'
'./librte_raw_skeleton.so.21.1' -> 'dpdk/pmds-21.1/librte_raw_skeleton.so.21.1'
'./librte_regex_octeontx2.so' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so'
'./librte_regex_octeontx2.so.21' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so.21'
'./librte_regex_octeontx2.so.21.1' -> 'dpdk/pmds-21.1/librte_regex_octeontx2.so.21.1'
'./librte_vdpa_ifc.so' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so'
'./librte_vdpa_ifc.so.21' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so.21'
'./librte_vdpa_ifc.so.21.1' -> 'dpdk/pmds-21.1/librte_vdpa_ifc.so.21.1'
18/12/2020 11:31:17              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc/lib
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: rm -rf x86_64-native-linuxapp-gcc/drivers
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: rm -rf /root/shared_lib_dpdk
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: mv /root/tmp/dpdk_share_lib/usr/local/lib /root/shared_lib_dpdk
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: cat /root/.bashrc | grep LD_LIBRARY_PATH
18/12/2020 11:31:18              dut.10.240.183.70: export LD_LIBRARY_PATH=/root/shared_lib_dpdk
18/12/2020 11:31:18              dut.10.240.183.70: sed -i 's#export LD_LIBRARY_PATH=.*#export LD_LIBRARY_PATH=/root/shared_lib_dpdk#g' /root/.bashrc
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
18/12/2020 11:31:18              dut.10.240.183.70: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
18/12/2020 11:31:18              dut.10.240.183.70: mkdir -p x86_64-native-linuxapp-gcc/kmod
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18              dut.10.240.183.70: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
18/12/2020 11:31:18              dut.10.240.183.70: 
18/12/2020 11:31:18                         tester: rm -rf ./getPackageByTcpdump.cap
18/12/2020 11:31:18                         tester: 
18/12/2020 11:31:18                         tester: tcpdump -i p2p1 ether[12:2] != '0x88cc' -w ./getPackageByTcpdump.cap 2> /dev/null& 
18/12/2020 11:31:18                         tester: [1] 8082
18/12/2020 11:31:18              dut.10.240.183.70: x86_64-native-linuxapp-gcc/app/test/dpdk-test -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111 -n 4   --file-prefix=dpdk_7694_20201218112735   -d /root/shared_lib_dpdk 
18/12/2020 11:31:19              dut.10.240.183.70: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_7694_20201218112735/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: No available hugepages reported in hugepages-2048kB
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:18:00.0 (socket 0)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(4)
EAL: Probe PCI driver: net_i40e (8086:1583) device: 0000:18:00.1 (socket 0)
EAL: No legacy callbacks, legacy socket not created
APP: HPET is not enabled, using TSC as default timer
18/12/2020 11:31:19              dut.10.240.183.70: pmd_perf_autotest
18/12/2020 11:31:36              dut.10.240.183.70: 
Start PMD RXTX cycles cost test.
Allocated mbuf pool on socket 0
Allocated mbuf pool on socket 1
CONFIG RXD=1024 TXD=1024
Performance test runs on lcore 2 socket 0
Port 0 Address:3C:FD:FE:C8:17:B0
Port 1 Address:3C:FD:FE:C8:17:B1
Checking link statuses...
Port 0 Link up at 40 Gbps FDX Autoneg
Port 1 Link up at 40 Gbps FDX Autoneg
IPv4 pktlen 46
UDP pktlen 26
Generate 64 packets @socket 0
inject 32 packet to port 0
inject 32 packet to port 1
Total packets inject to prime ports = 64
Each port will do 59523809 packets per second
Test will stop after at least 238095236 packets received
free 32 (expected 32) mbuf left in port 0
free 32 (expected 32) mbuf left in port 1
238095236 packet, 0 drop, 724332650 idle
Result: 165 cycles per packet
Test OK
18/12/2020 11:31:36              dut.10.240.183.70: quit
18/12/2020 11:31:36              dut.10.240.183.70: 
18/12/2020 11:31:36                         tester: killall tcpdump
18/12/2020 11:31:36                         tester: 
18/12/2020 11:31:36                         tester: tcpdump -nn -e -v -r ./getPackageByTcpdump.cap
18/12/2020 11:31:36                         tester: reading from file ./getPackageByTcpdump.cap, link-type EN10MB (Ethernet)
[1]+  Done                    tcpdump -i p2p1 ether[12:2] != '0x88cc' -w ./getPackageByTcpdump.cap 2> /dev/null
18/12/2020 11:31:36          TestUnitTestsLoopback: Test Case test_loopback_mode Result PASSED:
18/12/2020 11:31:36              dut.10.240.183.70: rm -fr app/test/test_pmd_perf.c
18/12/2020 11:31:36              dut.10.240.183.70: 
18/12/2020 11:31:36              dut.10.240.183.70: cp /tmp/test_pmd_perf.c app/test/test_pmd_perf.c
18/12/2020 11:31:36              dut.10.240.183.70: 
18/12/2020 11:31:36              dut.10.240.183.70: kill_all: called by dut and prefix list has value.
18/12/2020 11:31:37                            dts: 
TEST SUITE ENDED: TestUnitTestsLoopback

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp
  2020-12-18  3:42 ` Ling, WeiX
@ 2020-12-18  5:15   ` Zhao, HaiyangX
  0 siblings, 0 replies; 4+ messages in thread
From: Zhao, HaiyangX @ 2020-12-18  5:15 UTC (permalink / raw)
  To: Ling, WeiX, dts

Acked-by: Haiyang Zhao <haiyangx.zhao@intel.com>

Best Regards,
Zhao Haiyang

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Ling, WeiX
> Sent: Friday, December 18, 2020 11:42
> To: Ling, WeiX <weix.ling@intel.com>; dts@dpdk.org
> Subject: Re: [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before
> cp
> 
> Tested-by: Wei Ling <weix.ling@intel.com>
> 
> Regards,
> Ling Wei
> 
> > -----Original Message-----
> > From: Ling Wei <weix.ling@intel.com>
> > Sent: Friday, December 18, 2020 07:37 PM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V1] tests/unit_tests_loopback:rm exists file before cp


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp
@ 2020-12-18 11:36 Ling Wei
  2020-12-18  3:42 ` Ling, WeiX
  2020-12-21  7:55 ` Tu, Lijuan
  0 siblings, 2 replies; 4+ messages in thread
From: Ling Wei @ 2020-12-18 11:36 UTC (permalink / raw)
  To: dts; +Cc: Ling Wei

rm exists file before cp

Signed-off-by: Ling Wei <weix.ling@intel.com>
---
 tests/TestSuite_unit_tests_loopback.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/TestSuite_unit_tests_loopback.py b/tests/TestSuite_unit_tests_loopback.py
index 6babc2a1..0198a913 100644
--- a/tests/TestSuite_unit_tests_loopback.py
+++ b/tests/TestSuite_unit_tests_loopback.py
@@ -71,6 +71,7 @@ class TestUnitTestsLoopback(TestCase):
         self.max_traffic_burst = self.get_max_traffic_burst()
         self.dut.send_expect("sed -i -e 's/#define MAX_TRAFFIC_BURST              %s/#define MAX_TRAFFIC_BURST              32/' app/test/test_pmd_perf.c" % self.max_traffic_burst, "# ", 30)
         self.tmp_path = '/tmp/test_pmd_perf.c'
+        self.dut.send_expect("rm -fr %s" % self.tmp_path, "# ")
         self.dut.send_expect("cp app/test/test_pmd_perf.c %s" % self.tmp_path, "# ")
 
     def set_up(self):
@@ -133,6 +134,7 @@ class TestUnitTestsLoopback(TestCase):
         """
         Run after each test case.
         """
+        self.dut.send_expect("rm -fr app/test/test_pmd_perf.c", "# ")
         self.dut.send_expect("cp %s app/test/test_pmd_perf.c" % self.tmp_path, "# ")
         self.dut.kill_all()
 
@@ -140,7 +142,6 @@ class TestUnitTestsLoopback(TestCase):
         """
         Run after each test suite.
         """
-        self.dut.send_expect("cp %s app/test/test_pmd_perf.c" % self.tmp_path, "# ")
         self.dut.send_expect("sed -i -e 's/#define MAX_TRAFFIC_BURST              32/#define MAX_TRAFFIC_BURST              %s/' app/test/test_pmd_perf.c" % self.max_traffic_burst, "# ", 30)
         self.dut.build_install_dpdk(self.target)        
         self.dut.kill_all()
-- 
2.25.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp
  2020-12-18 11:36 [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp Ling Wei
  2020-12-18  3:42 ` Ling, WeiX
@ 2020-12-21  7:55 ` Tu, Lijuan
  1 sibling, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2020-12-21  7:55 UTC (permalink / raw)
  To: Ling, WeiX, dts; +Cc: Ling, WeiX

> rm exists file before cp
> 
> Signed-off-by: Ling Wei <weix.ling@intel.com>

Applied with commit message changed

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-12-21  7:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-18 11:36 [dts] [PATCH V1] tests/unit_tests_loopback:rm exists file before cp Ling Wei
2020-12-18  3:42 ` Ling, WeiX
2020-12-18  5:15   ` Zhao, HaiyangX
2020-12-21  7:55 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).