test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api ***
@ 2021-09-29 18:28 Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 1/4] test_plans/generic_filter_test_plan: move case from generic_filter to generic_flow_api Yan Xia
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Yan Xia @ 2021-09-29 18:28 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

*** move case from generic_filter to generic_flow_api ***

Yan Xia (4):
  test_plans/generic_filter_test_plan: move case from generic_filter to
    generic_flow_api
  test_plans/generic_flow_api_test_plan: move case from generic_filter
    to generic_flow_api
  tests/generic_filter: move case from generic_filter to
    generic_flow_api
  tests/generic_flow_api: move case from generic_filter to
    generic_flow_api

 test_plans/generic_filter_test_plan.rst   | 36 -----------
 test_plans/generic_flow_api_test_plan.rst | 37 +++++++++++
 tests/TestSuite_generic_filter.py         | 67 --------------------
 tests/TestSuite_generic_flow_api.py       | 75 +++++++++++++++++++++++
 4 files changed, 112 insertions(+), 103 deletions(-)

-- 
2.32.0


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

* [dts] [PATCH V1 1/4] test_plans/generic_filter_test_plan: move case from generic_filter to generic_flow_api
  2021-09-29 18:28 [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api *** Yan Xia
@ 2021-09-29 18:28 ` Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 2/4] test_plans/generic_flow_api_test_plan: " Yan Xia
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Yan Xia @ 2021-09-29 18:28 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

move case from generic_filter to generic_flow_api

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 test_plans/generic_filter_test_plan.rst | 36 -------------------------
 1 file changed, 36 deletions(-)

diff --git a/test_plans/generic_filter_test_plan.rst b/test_plans/generic_filter_test_plan.rst
index 10043629..e35d0381 100644
--- a/test_plans/generic_filter_test_plan.rst
+++ b/test_plans/generic_filter_test_plan.rst
@@ -396,39 +396,3 @@ Configure the traffic generator to send udp packets and arp packets. Then
 Verify that the packet are not received on the queue 1 and queue 3::
 
     testpmd> quit
-
-Test Case 10: 128 queues
-========================
-
-This case is designed for NIC(niantic). Since NIC(niantic) has 128 transmit
-queues, it should be supports 128 kinds of filter if Hardware have enough
-cores.  
-DPDK enable 64 queues in ixgbe driver by default. Enlarge queue number to 128
-for 128 queues test::
-
-    sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128/' drivers/net/ixgbe/ixgbe_ethdev.h
-
-Launch the app ``testpmd`` with the following arguments::
-
-    ./testpmd -c fffff -n 4 -- -i --disable-rss --rxq=128 --txq=128 --nb-cores=16 --nb-ports=2 --total-num-mbufs=60000
-
-    testpmd>set stat_qmap rx 0 0 0
-    testpmd>set stat_qmap rx 0 64 1
-    testpmd>set stat_qmap rx 0 64 2
-    testpmd>vlan set strip off 0
-    testpmd>vlan set strip off 1
-    testpmd>vlan set filter off 0
-    testpmd>vlan set filter off 1
-
-Enable the 5-tuple Filters with different queues (64,127) on port 0 for
-niantic::
-
-    testpmd> 5tuple_filter 0 add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask 0x1f flags 0x0 priority 3 queue 64 index 1
-    testpmd> 5tuple_filter 0 add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 2 src_port 1 protocol 0x06 mask 0x1f flags 0x0 priority 3 queue 127 index 1
-
-Send packets(`dst_ip` = 2.2.2.5 `src_ip` = 2.2.2.4 `dst_port` = 1 `src_port` =
-1 `protocol` = tcp) and (`dst_ip` = 2.2.2.5 `src_ip` = 2.2.2.4 `dst_port` = 2
-`src_port` = 1 `protocol` = tcp ). Then reading the stats for port 0 after
-sending packets. packets are received on the queue 64 and queue 127 When
-setting 5-tuple Filter with queue(128), it will display failure because the
-number of queues no more than 128.
-- 
2.32.0


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

* [dts] [PATCH V1 2/4] test_plans/generic_flow_api_test_plan: move case from generic_filter to generic_flow_api
  2021-09-29 18:28 [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api *** Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 1/4] test_plans/generic_filter_test_plan: move case from generic_filter to generic_flow_api Yan Xia
@ 2021-09-29 18:28 ` Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 3/4] tests/generic_filter: " Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 4/4] tests/generic_flow_api: " Yan Xia
  3 siblings, 0 replies; 7+ messages in thread
From: Yan Xia @ 2021-09-29 18:28 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

move case from generic_filter to generic_flow_api

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 test_plans/generic_flow_api_test_plan.rst | 37 +++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/test_plans/generic_flow_api_test_plan.rst b/test_plans/generic_flow_api_test_plan.rst
index 760f8e82..d3029430 100644
--- a/test_plans/generic_flow_api_test_plan.rst
+++ b/test_plans/generic_flow_api_test_plan.rst
@@ -2154,3 +2154,40 @@ Configure the traffic generator to send syn packets. Then Verify that
 the packet are not received on the queue 2::
 
     testpmd> stop
+
+Test Case: 128 queues
+========================
+
+This case is designed for NIC(niantic). Since NIC(niantic) has 128 transmit
+queues, it should be supports 128 kinds of filter if Hardware have enough
+cores.
+DPDK enable 64 queues in ixgbe driver by default. Enlarge queue number to 128
+for 128 queues test::
+
+    sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128/' drivers/net/ixgbe/ixgbe_ethdev.h
+
+Launch the app ``testpmd`` with the following arguments::
+
+    ./testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -- -i --disable-rss --rxq=128 --txq=128 --portmask=0x3 --nb-cores=4      --total-num-mbufs=263168
+
+    testpmd>set stat_qmap rx 0 0 0
+    testpmd>set stat_qmap rx 1 0 0
+    testpmd>vlan set strip off 0
+    testpmd>vlan set strip off 1
+    testpmd>vlan set filter off 0
+    testpmd>vlan set filter off 1
+
+Create the 5-tuple Filters with different queues (64,127) on port 0 for
+niantic::
+
+    testpmd> set stat_qmap rx 0 64 1
+    testpmd> flow create 0 ingress pattern eth / ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is 1 src is 1 / end actions queue index 64 / end
+    testpmd> set stat_qmap rx 0 127 2
+    testpmd> flow create 0 ingress pattern eth / ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is 2 src is 1 / end actions queue index 127 / end
+
+Send packets(`dst_ip` = 2.2.2.5 `src_ip` = 2.2.2.4 `dst_port` = 1 `src_port` =
+1 `protocol` = tcp) and (`dst_ip` = 2.2.2.5 `src_ip` = 2.2.2.4 `dst_port` = 2
+`src_port` = 1 `protocol` = tcp ). Then reading the stats for port 0 after
+sending packets. packets are received on the queue 64 and queue 127 When
+setting 5-tuple Filter with queue(128), it will display failure because the
+number of queues no more than 128.
-- 
2.32.0


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

* [dts] [PATCH V1 3/4] tests/generic_filter: move case from generic_filter to generic_flow_api
  2021-09-29 18:28 [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api *** Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 1/4] test_plans/generic_filter_test_plan: move case from generic_filter to generic_flow_api Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 2/4] test_plans/generic_flow_api_test_plan: " Yan Xia
@ 2021-09-29 18:28 ` Yan Xia
  2021-09-29 18:28 ` [dts] [PATCH V1 4/4] tests/generic_flow_api: " Yan Xia
  3 siblings, 0 replies; 7+ messages in thread
From: Yan Xia @ 2021-09-29 18:28 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

move case from generic_filter to generic_flow_api

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 tests/TestSuite_generic_filter.py | 67 -------------------------------
 1 file changed, 67 deletions(-)

diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py
index 173e4f72..e789a928 100644
--- a/tests/TestSuite_generic_filter.py
+++ b/tests/TestSuite_generic_filter.py
@@ -549,73 +549,6 @@ class TestGeneric_filter(TestCase):
         else:
             self.verify(False, "%s nic not support this test" % self.nic)
 
-    def test_128_queues(self):
-        # testpmd can't support assign queue to received packet, so can't test
-        set_filter_flag = 1
-        packet_flag = 1
-        if self.kdriver == "ixgbe":
-            self.dut.send_expect("sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128/' drivers/net/ixgbe/ixgbe_ethdev.h", "# ",30)
-            self.dut.build_install_dpdk(self.target)
-            global valports
-            total_mbufs = self.request_mbufs(128) * len(valports)
-            self.pmdout.start_testpmd(
-                "all", "--disable-rss --rxq=128 --txq=128 --portmask=%s --nb-cores=4 --total-num-mbufs=%d" % (portMask, total_mbufs))
-            self.dut.send_expect(
-                "set stat_qmap rx %s 0 0" % valports[0], "testpmd> ")
-            self.dut.send_expect(
-                "set stat_qmap rx %s 0 0" % valports[1], "testpmd> ")
-            self.dut.send_expect(
-                "vlan set strip off %s" % valports[0], "testpmd> ")
-            self.dut.send_expect(
-                "vlan set strip off %s" % valports[1], "testpmd> ")
-            self.dut.send_expect(
-                "vlan set filter off %s" % valports[0], "testpmd> ")
-            self.dut.send_expect(
-                "vlan set filter off %s" % valports[1], "testpmd> ")
-            queue = ['64', '127', '128']
-
-            for i in [0, 1, 2]:
-                if i == 2:
-                    out = self.dut.send_expect(
-                        "set stat_qmap rx %s %s %s" % (valports[0], queue[i], (i + 1)), "testpmd> ")
-                    if 'Invalid RX queue %s' % (queue[i]) not in out:
-                        set_filter_flag = 0
-                        break
-                    cmd = "flow create {} ingress pattern eth / ".format(
-                        valports[0]) + "ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is {} src is 1 / ".format(
-                        i + 1) + "end actions queue index {} / end".format(queue[i])
-                    out = self.dut.send_expect(cmd, "testpmd> ")
-                    if 'Invalid argument' not in out:
-                        set_filter_flag = 0
-                        break
-                    continue
-                else:
-                    self.dut.send_expect("set stat_qmap rx %s %s %s" %
-                                         (valports[0], queue[i], (i + 1)), "testpmd> ")
-                    cmd = "flow create {} ingress pattern eth / ".format(
-                        valports[0]) + "ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is {} src is 1 / ".format(
-                        i + 1) + "end actions queue index {} / end".format(queue[i])
-                    self.dut.send_expect(cmd, "testpmd> ")
-                    self.dut.send_expect("start", "testpmd> ", 120)
-                global filters_index
-                filters_index = i
-                self.filter_send_packet("packet")
-                time.sleep(1)
-                out = self.dut.send_expect("stop", "testpmd> ")
-                p = re.compile(r"Forward Stats for RX Port= \d+/Queue=(\s?\d+)")
-                res = p.findall(out)
-                queues = [int(i) for i in res]
-                if queues[0] != int(queue[i]):
-                    packet_flag = 0
-                    break
-            self.dut.send_expect("quit", "#", timeout=30)
-            self.dut.send_expect("sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64/' drivers/net/ixgbe/ixgbe_ethdev.h", "# ",30)
-            self.dut.build_install_dpdk(self.target)
-            self.verify(set_filter_flag == 1, "set filters error")
-            self.verify(packet_flag == 1, "packet pass assert error")
-        else:
-            self.verify(False, "%s not support this test" % self.nic)
-
     def tear_down(self):
         """
         Run after each test case.
-- 
2.32.0


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

* [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from generic_filter to generic_flow_api
  2021-09-29 18:28 [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api *** Yan Xia
                   ` (2 preceding siblings ...)
  2021-09-29 18:28 ` [dts] [PATCH V1 3/4] tests/generic_filter: " Yan Xia
@ 2021-09-29 18:28 ` Yan Xia
  2021-09-30  2:09   ` Chen, LingliX
  3 siblings, 1 reply; 7+ messages in thread
From: Yan Xia @ 2021-09-29 18:28 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

move case from generic_filter to generic_flow_api

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 tests/TestSuite_generic_flow_api.py | 75 +++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/tests/TestSuite_generic_flow_api.py b/tests/TestSuite_generic_flow_api.py
index 32805e46..ee0ee6bb 100644
--- a/tests/TestSuite_generic_flow_api.py
+++ b/tests/TestSuite_generic_flow_api.py
@@ -154,6 +154,12 @@ class TestGeneric_flow_api(TestCase):
             time.sleep(2)
         self.vf_flag = 0
 
+    def request_mbufs(self, queue_num):
+        """
+        default txq/rxq descriptor is 64
+        """
+        return 1024 * queue_num + 512
+
     def verify_result(self, pf_vf, expect_rxpkts, expect_queue, verify_mac):
         """
         verify the packet to the expected queue or be dropped
@@ -2638,6 +2644,75 @@ class TestGeneric_flow_api(TestCase):
         self.tester.send_expect("ifconfig %s mtu %s" % (txItf, 1500), "# ")
         self.tester.send_expect("ifconfig %s mtu %s" % (rxItf, 1500), "# ")
 
+    def test_128_queues(self):
+
+        set_filter_flag = 1
+        packet_flag = 1
+        if self.kdriver == "ixgbe":
+            self.dut.send_expect("sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128/' drivers/net/ixgbe/ixgbe_ethdev.h", "# ",30)
+            self.dut.build_install_dpdk(self.target)
+            global valports
+            total_mbufs = self.request_mbufs(128) * len(valports)
+            self.pmdout.start_testpmd(
+                "all", "--disable-rss --rxq=128 --txq=128 --portmask=%s --nb-cores=4 --total-num-mbufs=%d" % (portMask, total_mbufs))
+            self.dut.send_expect(
+                "set stat_qmap rx %s 0 0" % valports[0], "testpmd> ")
+            self.dut.send_expect(
+                "set stat_qmap rx %s 0 0" % valports[1], "testpmd> ")
+            self.dut.send_expect(
+                "vlan set strip off %s" % valports[0], "testpmd> ")
+            self.dut.send_expect(
+                "vlan set strip off %s" % valports[1], "testpmd> ")
+            self.dut.send_expect(
+                "vlan set filter off %s" % valports[0], "testpmd> ")
+            self.dut.send_expect(
+                "vlan set filter off %s" % valports[1], "testpmd> ")
+            queue = ['64', '127', '128']
+            for i in [0, 1, 2]:
+                if i == 2:
+                    out = self.dut.send_expect(
+                        "set stat_qmap rx %s %s %s" % (valports[0], queue[i], (i + 1)), "testpmd> ")
+                    if 'Invalid RX queue %s' % (queue[i]) not in out:
+                        set_filter_flag = 0
+                        break
+                    cmd = "flow create {} ingress pattern eth / ".format(
+                        valports[0]) + "ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is {} src is 1 / ".format(
+                        i + 1) + "end actions queue index {} / end".format(queue[i])
+                    out = self.dut.send_expect(cmd, "testpmd> ")
+                    if 'Invalid argument' not in out:
+                        set_filter_flag = 0
+                        break
+                    continue
+                else:
+                    self.dut.send_expect("set stat_qmap rx %s %s %s" %
+                                         (valports[0], queue[i], (i + 1)), "testpmd> ")
+                    cmd = "flow create {} ingress pattern eth / ".format(
+                        valports[0]) + "ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is {} src is 1 / ".format(
+                        i + 1) + "end actions queue index {} / end".format(queue[i])
+                    self.dut.send_expect(cmd, "testpmd> ")
+                    self.dut.send_expect("start", "testpmd> ", 120)
+                global filters_index
+                filters_index = i
+                if (filters_index == 0):
+                    self.sendpkt(pktstr='Ether(dst="%s")/IP(src="2.2.2.4",dst="2.2.2.5")/TCP(sport=1,dport=1,flags=0)' % self.pf_mac)
+                if (filters_index == 1):
+                    self.sendpkt(pktstr='Ether(dst="%s")/Dot1Q(prio=3)/IP(src="2.2.2.4",dst="2.2.2.5")/TCP(sport=1,dport=2,flags=0)' % self.pf_mac)
+                time.sleep(1)
+                out = self.dut.send_expect("stop", "testpmd> ")
+                p = re.compile(r"Forward Stats for RX Port= \d+/Queue=(\s?\d+)")
+                res = p.findall(out)
+                queues = [int(i) for i in res]
+                if queues[0] != int(queue[i]):
+                    packet_flag = 0
+                    break
+            self.dut.send_expect("quit", "#", timeout=30)
+            self.dut.send_expect("sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64/' drivers/net/ixgbe/ixgbe_ethdev.h", "# ",30)
+            self.dut.build_install_dpdk(self.target)
+            self.verify(set_filter_flag == 1, "set filters error")
+            self.verify(packet_flag == 1, "packet pass assert error")
+        else:
+            self.verify(False, "%s not support this test" % self.nic)
+
     def tear_down(self):
         """
         Run after each test case.
-- 
2.32.0


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

* Re: [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from generic_filter to generic_flow_api
  2021-09-29 18:28 ` [dts] [PATCH V1 4/4] tests/generic_flow_api: " Yan Xia
@ 2021-09-30  2:09   ` Chen, LingliX
  2021-10-22  9:26     ` Tu, Lijuan
  0 siblings, 1 reply; 7+ messages in thread
From: Chen, LingliX @ 2021-09-30  2:09 UTC (permalink / raw)
  To: dts

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


> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Yan Xia
> Sent: Thursday, September 30, 2021 2:29 AM
> To: dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from
> generic_filter to generic_flow_api
> 
> move case from generic_filter to generic_flow_api
> 
> Signed-off-by: Yan Xia <yanx.xia@intel.com>

Tested-by: Yan Xia <yanx.xia@intel.com>

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

30/09/2021 19:08:59                            dts: 
TEST SUITE : TestGeneric_flow_api
30/09/2021 19:08:59                            dts: NIC :        niantic
30/09/2021 19:08:59             dut.10.240.183.151: 
30/09/2021 19:08:59                         tester: 
30/09/2021 19:09:03           TestGeneric_flow_api: Test Case test_128_queues Begin
30/09/2021 19:09:03             dut.10.240.183.151: 
30/09/2021 19:09:03                         tester: 
30/09/2021 19:09:03             dut.10.240.183.151: kill_all: called by dut and has no prefix list.
30/09/2021 19:09:04             dut.10.240.183.151: sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128/' drivers/net/ixgbe/ixgbe_ethdev.h
30/09/2021 19:09:04             dut.10.240.183.151: 
30/09/2021 19:09:04             dut.10.240.183.151: rm -rf x86_64-native-linuxapp-gcc
30/09/2021 19:09:04             dut.10.240.183.151: 
30/09/2021 19:09:04             dut.10.240.183.151: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
30/09/2021 19:09:15             dut.10.240.183.151: The Meson build system
Version: 0.59.1
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.11.0-rc0
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Message: ## Building in Developer Mode ##
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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: YES
Has header "fdt.h" : YES 
Library libexecinfo found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libarchive found: NO (tried pkgconfig)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:285: 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: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Compiler for C supports arguments -mavx512f: YES 
Checking if "AVX512 checking" compiles: 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__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/kvargs: Defining dependency "kvargs"
Message: lib/telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
Message: lib/eal: Defining dependency "eal"
Message: lib/ring: Defining dependency "ring"
Message: lib/rcu: Defining dependency "rcu"
Message: lib/mempool: Defining dependency "mempool"
Message: lib/mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES (cached)
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/net: Defining dependency "net"
Message: lib/meter: Defining dependency "meter"
Message: lib/ethdev: Defining dependency "ethdev"
Message: lib/pci: Defining dependency "pci"
Message: lib/cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: YES 2.12
Message: lib/metrics: Defining dependency "metrics"
Message: lib/hash: Defining dependency "hash"
Message: lib/timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
Message: lib/acl: Defining dependency "acl"
Message: lib/bbdev: Defining dependency "bbdev"
Message: lib/bitratestats: Defining dependency "bitratestats"
Message: lib/cfgfile: Defining dependency "cfgfile"
Message: lib/compressdev: Defining dependency "compressdev"
Message: lib/cryptodev: Defining dependency "cryptodev"
Message: lib/distributor: Defining dependency "distributor"
Message: lib/efd: Defining dependency "efd"
Message: lib/eventdev: Defining dependency "eventdev"
Message: lib/gro: Defining dependency "gro"
Message: lib/gso: Defining dependency "gso"
Message: lib/ip_frag: Defining dependency "ip_frag"
Message: lib/jobstats: Defining dependency "jobstats"
Message: lib/kni: Defining dependency "kni"
Message: lib/latencystats: Defining dependency "latencystats"
Message: lib/lpm: Defining dependency "lpm"
Message: lib/member: Defining dependency "member"
Compiler for C supports arguments -Wno-cast-qual: YES 
Message: lib/power: Defining dependency "power"
Message: lib/pdump: Defining dependency "pdump"
Message: lib/rawdev: Defining dependency "rawdev"
Message: lib/regexdev: Defining dependency "regexdev"
Message: lib/rib: Defining dependency "rib"
Message: lib/reorder: Defining dependency "reorder"
Message: lib/sched: Defining dependency "sched"
Message: lib/security: Defining dependency "security"
Message: lib/stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/vhost: Defining dependency "vhost"
Message: lib/ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: lib/fib: Defining dependency "fib"
Message: lib/port: Defining dependency "port"
Message: lib/table: Defining dependency "table"
Message: lib/pipeline: Defining dependency "pipeline"
Message: lib/flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: YES 0.176
Message: lib/bpf: Defining dependency "bpf"
Message: lib/graph: Defining dependency "graph"
Message: lib/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 (cached)
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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Message: drivers/bus/auxiliary: Defining dependency "bus_auxiliary"
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"
Message: drivers/common/cnxk: Defining dependency "common_cnxk"
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)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/cnxk: Defining dependency "mempool_cnxk"
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)
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"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Compiler for C supports arguments -DRTE_LIBRTE_BNXT_TF: YES 
Compiler for C supports arguments -DSUPPORT_CFA_HW_ALL=1: YES 
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/bonding: Defining dependency "net_bond"
Compiler for C supports arguments -flax-vector-conversions: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Message: drivers/net/cnxk: Defining dependency "net_cnxk"
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 (cached)
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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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)
Fetching value of define "__AVX512F__" :  (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/i40e: Defining dependency "net_i40e"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (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/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__" :  (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"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Message: drivers/net/ipn3ke: Defining dependency "net_ipn3ke"
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)
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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/ngbe: Defining dependency "net_ngbe"
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 (cached)
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
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)
Library atomic found: YES
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
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/cnxk_bphy: Defining dependency "raw_cnxk_bphy"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency librt found: NO (tried pkgconfig and cmake)
Library librt found: YES
Message: drivers/raw/ifpga: Defining dependency "raw_ifpga"
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)
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)
Message: drivers/crypto/cnxk: Defining dependency "crypto_cnxk"
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
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/crypto/mlx5]: missing internal dependency "common_mlx5"
Run-time dependency libmusdk found: NO (tried pkgconfig)
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)
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)
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/compress/mlx5]: missing internal dependency "common_mlx5"
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"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Message: drivers/event/cnxk: Defining dependency "event_cnxk"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
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"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
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"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
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
Program touch found: YES (/usr/bin/touch)
Program make found: YES (/usr/bin/make)
Program touch found: YES (/usr/bin/touch)
Program make found: YES (/usr/bin/make)
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, cnxk, qat, sfc_efx, 
	
bus:
	auxiliary, dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, cnxk, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
	
net:
	af_packet, ark, atlantic, avp, axgbe, bnx2x, bnxt, bond, 
	cnxk, cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, 
	failsafe, fm10k, hinic, hns3, i40e, iavf, ice, igc, 
	ionic, ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, 
	ngbe, null, octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, 
	ring, sfc, softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, 
	virtio, vmxnet3, 
raw:
	cnxk_bphy, dpaa2_cmdif, dpaa2_qdma, ifpga, ioat, ntb, octeontx2_dma, octeontx2_ep, 
	skeleton, 
crypto:
	bcmfs, caam_jr, cnxk, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, 
	octeontx2, scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	cnxk, dlb2, dpaa, dpaa2, dsw, octeontx2, opdl, skeleton, 
	sw, octeontx, 
baseband:
	acc100, fpga_5gnr_fec, fpga_lte_fec, null, turbo_sw, 

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/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/szedata2:	missing dependency, "libsze2"
	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/mlx5:	missing internal dependency, "common_mlx5"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1081

Found ninja-1.10.2.git.kitware.jobserver-1 at /usr/local/bin/ninja
30/09/2021 19:09:15             dut.10.240.183.151: ninja -C x86_64-native-linuxapp-gcc
30/09/2021 19:10:42             dut.10.240.183.151: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2790] Generating rte_telemetry_mingw with a custom command
[2/2790] Generating rte_telemetry_def with a custom command
[3/2790] Generating rte_kvargs_def with a custom command
[4/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_hypervisor.c.o
[5/2790] Generating rte_kvargs_mingw with a custom command
[6/2790] Generating rte_ring_mingw with a custom command
[7/2790] Generating rte_eal_def with a custom command
[8/2790] Generating rte_eal_mingw with a custom command
[9/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_spinlock.c.o
[10/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_cpuflags.c.o
[11/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_debug.c.o
[12/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_errno.c.o
[13/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_version.c.o
[14/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_hypervisor.c.o
[15/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_class.c.o
[16/2790] Generating rte_rcu_mingw with a custom command
[17/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_string_fns.c.o
[18/2790] Generating rte_rcu_def with a custom command
[19/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_unix_timer.c.o
[20/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_debug.c.o
[21/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_reciprocal.c.o
[22/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_firmware.c.o
[23/2790] Compiling C object lib/librte_eal.a.p/eal_unix_rte_thread.c.o
[24/2790] Generating rte_ring_def with a custom command
[25/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_cpuflags.c.o
[26/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_cpuflags.c.o
[27/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_hexdump.c.o
[28/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry_data.c.o
[29/2790] Generating rte_cfgfile_def with a custom command
[30/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_launch.c.o
[31/2790] Generating rte_cfgfile_mingw with a custom command
[32/2790] Compiling C object lib/librte_kvargs.a.p/kvargs_rte_kvargs.c.o
[33/2790] Generating rte_mempool_mingw with a custom command
[34/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_config.c.o
[35/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_uuid.c.o
[36/2790] Generating rte_mempool_def with a custom command
[37/2790] Linking static target lib/librte_kvargs.a
[38/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_log.c.o
[39/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_tailqs.c.o
[40/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_vfio_mp_sync.c.o
[41/2790] Generating rte_mbuf_mingw with a custom command
[42/2790] Generating rte_mbuf_def with a custom command
[43/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_file.c.o
[44/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_keepalive.c.o
[45/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_timer.c.o
[46/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_lcore.c.o
[47/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_timer.c.o
[48/2790] Generating rte_net_mingw with a custom command
[49/2790] Generating rte_net_def with a custom command
[50/2790] Generating rte_meter_mingw with a custom command
[51/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_power_intrinsics.c.o
[52/2790] Generating rte_meter_def with a custom command
[53/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_cycles.c.o
[54/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_mcfg.c.o
[55/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry_legacy.c.o
[56/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_unix_memory.c.o
[57/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_thread.c.o
[58/2790] Generating rte_ethdev_def with a custom command
[59/2790] Generating rte_ethdev_mingw with a custom command
[60/2790] Generating rte_pci_def with a custom command
[61/2790] Generating rte_pci_mingw with a custom command
[62/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_bus.c.o
[63/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_ctf.c.o
[64/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memalloc.c.o
[65/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_thread.c.o
[66/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_random.c.o
[67/2790] Generating rte_cmdline_def with a custom command
[68/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_points.c.o
[69/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_log.c.o
[70/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_alarm.c.o
[71/2790] Compiling C object lib/librte_eal.a.p/eal_common_hotplug_mp.c.o
[72/2790] Generating rte_cmdline_mingw with a custom command
[73/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_dev.c.o
[74/2790] Generating rte_metrics_def with a custom command
[75/2790] Generating rte_metrics_mingw with a custom command
[76/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_devargs.c.o
[77/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_dynmem.c.o
[78/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_vt100.c.o
[79/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_socket.c.o
[80/2790] Generating rte_hash_def with a custom command
[81/2790] Generating rte_hash_mingw with a custom command
[82/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_lcore.c.o
[83/2790] Compiling C object lib/librte_ring.a.p/ring_rte_ring.c.o
[84/2790] Generating rte_timer_def with a custom command
[85/2790] Generating rte_timer_mingw with a custom command
[86/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace.c.o
[87/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_dev.c.o
[88/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memzone.c.o
[89/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_utils.c.o
[90/2790] Linking static target lib/librte_ring.a
[91/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_portlist.c.o
[92/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_elem.c.o
[93/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_mp.c.o
[94/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_os_unix.c.o
[95/2790] Generating rte_acl_def with a custom command
[96/2790] Generating rte_acl_mingw with a custom command
[97/2790] Compiling C object lib/librte_meter.a.p/meter_rte_meter.c.o
[98/2790] Compiling C object lib/librte_pci.a.p/pci_rte_pci.c.o
[99/2790] Generating rte_bbdev_mingw with a custom command
[100/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_string.c.o
[101/2790] Generating rte_bitratestats_def with a custom command
[102/2790] Linking static target lib/librte_pci.a
[103/2790] Generating rte_bitratestats_mingw with a custom command
[104/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline.c.o
[105/2790] Generating rte_bbdev_def with a custom command
[106/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_hugepage_info.c.o
[107/2790] Linking static target lib/librte_meter.a
[108/2790] Generating rte_compressdev_def with a custom command
[109/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_num.c.o
[110/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_cirbuf.c.o
[111/2790] Generating rte_compressdev_mingw with a custom command
[112/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry.c.o
[113/2790] Linking static target lib/librte_telemetry.a
[114/2790] Compiling C object lib/librte_hash.a.p/hash_rte_fbk_hash.c.o
[115/2790] Compiling C object lib/librte_metrics.a.p/metrics_rte_metrics.c.o
[116/2790] Generating rte_cryptodev_def with a custom command
[117/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memory.c.o
[118/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse.c.o
[119/2790] Generating rte_cryptodev_mingw with a custom command
[120/2790] Generating rte_distributor_mingw with a custom command
[121/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_service.c.o
[122/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_rdline.c.o
[123/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_proc.c.o
[124/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal.c.o
[125/2790] Generating rte_distributor_def with a custom command
[126/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_fbarray.c.o
[127/2790] Generating rte_efd_def with a custom command
[128/2790] Generating rte_efd_mingw with a custom command
[129/2790] Compiling C object lib/librte_mempool.a.p/mempool_mempool_trace_points.c.o
[130/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_interrupts.c.o
[131/2790] Compiling C object lib/net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[132/2790] Compiling C object lib/librte_cfgfile.a.p/cfgfile_rte_cfgfile.c.o
[133/2790] Linking static target lib/librte_cfgfile.a
[134/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_memalloc.c.o
[135/2790] Linking static target lib/net/libnet_crc_avx512_lib.a
[136/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_pool_ops.c.o
[137/2790] Compiling C object lib/librte_net.a.p/net_net_crc_sse.c.o
[138/2790] Compiling C object lib/librte_net.a.p/net_rte_net_crc.c.o
[139/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool_ops_default.c.o
[140/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_ptype.c.o
[141/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_memory.c.o
[142/2790] Generating rte_eventdev_def with a custom command
[143/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_profile.c.o
[144/2790] Generating rte_eventdev_mingw with a custom command
[145/2790] Generating rte_gro_mingw with a custom command
[146/2790] Generating rte_gro_def with a custom command
[147/2790] Compiling C object lib/librte_net.a.p/net_rte_ether.c.o
[148/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_etheraddr.c.o
[149/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_trace_points.c.o
[150/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_private.c.o
[151/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool_ops.c.o
[152/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_ipaddr.c.o
[153/2790] Linking static target lib/librte_cmdline.a
[154/2790] Generating rte_gso_mingw with a custom command
[155/2790] Generating rte_gso_def with a custom command
[156/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_class_eth.c.o
[157/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_vfio.c.o
[158/2790] Compiling C object lib/librte_timer.a.p/timer_rte_timer.c.o
[159/2790] Compiling C object lib/librte_acl.a.p/acl_tb_mem.c.o
[160/2790] Compiling C object lib/librte_net.a.p/net_rte_net.c.o
[161/2790] Compiling C object lib/librte_net.a.p/net_rte_arp.c.o
[162/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_malloc.c.o
[163/2790] Linking static target lib/librte_timer.a
[164/2790] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[165/2790] Linking static target lib/librte_net.a
[166/2790] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[167/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_dyn.c.o
[168/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_mtr.c.o
[169/2790] Generating rte_ip_frag_mingw with a custom command
[170/2790] Generating rte_ip_frag_def with a custom command
[171/2790] Generating rte_jobstats_def with a custom command
[172/2790] Linking target lib/librte_kvargs.so.22.0
[173/2790] Generating rte_jobstats_mingw with a custom command
[174/2790] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[175/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_heap.c.o
[176/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_compressdev_pmd.c.o
[177/2790] Generating rte_kni_def with a custom command
[178/2790] Compiling C object lib/librte_bitratestats.a.p/bitratestats_rte_bitrate.c.o
[179/2790] Generating rte_kni_mingw with a custom command
[180/2790] Linking static target lib/librte_bitratestats.a
[181/2790] Generating rte_latencystats_def with a custom command
[182/2790] Generating rte_latencystats_mingw with a custom command
[183/2790] Compiling C object lib/librte_rcu.a.p/rcu_rte_rcu_qsbr.c.o
[184/2790] Compiling C object lib/librte_acl.a.p/acl_rte_acl.c.o
[185/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_learner.c.o
[186/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_wm.c.o
[187/2790] Linking static target lib/librte_rcu.a
[188/2790] Generating rte_lpm_def with a custom command
[189/2790] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[190/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_cryptodev_pmd.c.o
[191/2790] Generating rte_lpm_mingw with a custom command
[192/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_tm.c.o
[193/2790] Generating rte_member_def with a custom command
[194/2790] Generating rte_member_mingw with a custom command
[195/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_selector.c.o
[196/2790] Compiling C object lib/librte_metrics.a.p/metrics_rte_metrics_telemetry.c.o
[197/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_comp.c.o
[198/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_cryptodev_trace_points.c.o
[199/2790] Linking static target lib/librte_metrics.a
[200/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor_match_sse.c.o
[201/2790] Compiling C object lib/librte_acl.a.p/acl_acl_gen.c.o
[202/2790] Compiling C object lib/librte_regexdev.a.p/regexdev_rte_regexdev.c.o
[203/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_ring.c.o
[204/2790] Generating rte_power_def with a custom command
[205/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_compressdev.c.o
[206/2790] Compiling C object lib/librte_power.a.p/power_power_common.c.o
[207/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_port_in_action.c.o
[208/2790] Linking static target lib/librte_compressdev.a
[209/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool.c.o
[210/2790] Generating rte_power_mingw with a custom command
[211/2790] Linking static target lib/librte_mempool.a
[212/2790] Generating rte_pdump_def with a custom command
[213/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_scalar.c.o
[214/2790] Compiling C object lib/librte_power.a.p/power_power_kvm_vm.c.o
[215/2790] Generating rte_pdump_mingw with a custom command
[216/2790] Compiling C object lib/librte_member.a.p/member_rte_member.c.o
[217/2790] Compiling C object lib/librte_power.a.p/power_guest_channel.c.o
[218/2790] Generating rte_rawdev_def with a custom command
[219/2790] Linking static target lib/librte_regexdev.a
[220/2790] Generating rte_rawdev_mingw with a custom command
[221/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_em.c.o
[222/2790] Generating rte_regexdev_def with a custom command
[223/2790] Generating rte_regexdev_mingw with a custom command
[224/2790] Compiling C object lib/librte_power.a.p/power_rte_power.c.o
[225/2790] Compiling C object lib/librte_hash.a.p/hash_rte_thash.c.o
[226/2790] Generating rte_rib_mingw with a custom command
[227/2790] Generating rte_rib_def with a custom command
[228/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor_single.c.o
[229/2790] Compiling C object lib/librte_bbdev.a.p/bbdev_rte_bbdev.c.o
[230/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor.c.o
[231/2790] Generating rte_reorder_def with a custom command
[232/2790] Generating rte_reorder_mingw with a custom command
[233/2790] Linking static target lib/librte_bbdev.a
[234/2790] Linking static target lib/librte_distributor.a
[235/2790] Generating rte_sched_def with a custom command
[236/2790] Generating rte_sched_mingw with a custom command
[237/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_options.c.o
[238/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tcp4.c.o
[239/2790] Generating rte_security_def with a custom command
[240/2790] Generating rte_security_mingw with a custom command
[241/2790] Linking static target lib/librte_eal.a
[242/2790] Compiling C object lib/librte_gso.a.p/gso_gso_udp4.c.o
[243/2790] Generating symbol file lib/librte_kvargs.so.22.0.p/librte_kvargs.so.22.0.symbols
[244/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_eventdev_trace_points.c.o
[245/2790] Compiling C object lib/librte_power.a.p/power_rte_power_empty_poll.c.o
[246/2790] Compiling C object lib/librte_gso.a.p/gso_rte_gso.c.o
[247/2790] Generating rte_stack_def with a custom command
[248/2790] Generating rte_stack_mingw with a custom command
[249/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tunnel_udp4.c.o
[250/2790] Compiling C object lib/librte_sched.a.p/sched_rte_approx.c.o
[251/2790] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[252/2790] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[253/2790] Compiling C object lib/librte_sched.a.p/sched_rte_red.c.o
[254/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tunnel_tcp4.c.o
[255/2790] Compiling C object lib/librte_jobstats.a.p/jobstats_rte_jobstats.c.o
[256/2790] Generating rte_vhost_def with a custom command
[257/2790] Linking static target lib/librte_jobstats.a
[258/2790] Generating rte_vhost_mingw with a custom command
[259/2790] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[260/2790] Linking target lib/librte_telemetry.so.22.0
[261/2790] Compiling C object lib/librte_gro.a.p/gro_gro_tcp4.c.o
[262/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack_std.c.o
[263/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack_lf.c.o
[264/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv4_reassembly.c.o
[265/2790] Compiling C object lib/librte_gro.a.p/gro_rte_gro.c.o
[266/2790] Compiling C object lib/librte_gro.a.p/gro_gro_udp4.c.o
[267/2790] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[268/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack.c.o
[269/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv6_reassembly.c.o
[270/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_flow.c.o
[271/2790] Linking static target lib/librte_stack.a
[272/2790] Generating rte_ipsec_def with a custom command
[273/2790] Generating rte_ipsec_mingw with a custom command
[274/2790] Compiling C object lib/librte_gro.a.p/gro_gro_vxlan_udp4.c.o
[275/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf.c.o
[276/2790] Compiling C object lib/librte_member.a.p/member_rte_member_vbf.c.o
[277/2790] Generating rte_fib_def with a custom command
[278/2790] Linking static target lib/librte_mbuf.a
[279/2790] Compiling C object lib/librte_gro.a.p/gro_gro_vxlan_tcp4.c.o
[280/2790] Linking static target lib/librte_gro.a
[281/2790] Generating rte_fib_mingw with a custom command
[282/2790] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[283/2790] Compiling C object lib/librte_vhost.a.p/vhost_fd_man.c.o
[284/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv6_fragmentation.c.o
[285/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ip_frag_common.c.o
[286/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_ip_frag_internal.c.o
[287/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv4_fragmentation.c.o
[288/2790] Linking static target lib/librte_ip_frag.a
[289/2790] Compiling C object lib/librte_gso.a.p/gso_gso_common.c.o
[290/2790] Linking static target lib/librte_gso.a
[291/2790] Compiling C object lib/librte_acl.a.p/acl_acl_bld.c.o
[292/2790] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[293/2790] Compiling C object lib/librte_fib.a.p/fib_rte_fib.c.o
[294/2790] Compiling C object lib/librte_latencystats.a.p/latencystats_rte_latencystats.c.o
[295/2790] Linking static target lib/librte_latencystats.a
[296/2790] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[297/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cn9k_mempool_ops.c.o
[298/2790] Compiling C object lib/librte_power.a.p/power_power_acpi_cpufreq.c.o
[299/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_timer_adapter.c.o
[300/2790] Compiling C object lib/librte_power.a.p/power_rte_power_pmd_mgmt.c.o
[301/2790] Compiling C object lib/librte_lpm.a.p/lpm_rte_lpm.c.o
[302/2790] Compiling C object lib/librte_power.a.p/power_power_cppc_cpufreq.c.o
[303/2790] Generating rte_port_mingw with a custom command
[304/2790] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[305/2790] Generating rte_port_def with a custom command
[306/2790] Generating symbol file lib/librte_telemetry.so.22.0.p/librte_telemetry.so.22.0.symbols
[307/2790] Compiling C object lib/librte_power.a.p/power_power_pstate_cpufreq.c.o
[308/2790] Linking static target lib/librte_power.a
[309/2790] Compiling C object lib/librte_security.a.p/security_rte_security.c.o
[310/2790] Compiling C object lib/librte_kni.a.p/kni_rte_kni.c.o
[311/2790] Linking static target lib/librte_security.a
[312/2790] Linking static target lib/librte_kni.a
[313/2790] Compiling C object lib/librte_rib.a.p/rib_rte_rib.c.o
[314/2790] Compiling C object lib/librte_rawdev.a.p/rawdev_rte_rawdev.c.o
[315/2790] Linking static target lib/librte_rawdev.a
[316/2790] Compiling C object lib/librte_reorder.a.p/reorder_rte_reorder.c.o
[317/2790] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[318/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_ses.c.o
[319/2790] Linking static target lib/librte_reorder.a
[320/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[321/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[322/2790] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[323/2790] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[324/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_eth_tx_adapter.c.o
[325/2790] Compiling C object lib/librte_vhost.a.p/vhost_vdpa.c.o
[326/2790] Compiling C object lib/fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[327/2790] Linking static target lib/fib/libtrie_avx512_tmp.a
[328/2790] Compiling C object lib/librte_fib.a.p/fib_rte_fib6.c.o
[329/2790] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[330/2790] Compiling C object lib/fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[331/2790] Generating rte_table_def with a custom command
[332/2790] Linking static target lib/fib/libdir24_8_avx512_tmp.a
[333/2790] Generating rte_table_mingw with a custom command
[334/2790] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[335/2790] Compiling C object lib/librte_efd.a.p/efd_rte_efd.c.o
[336/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_rte_cryptodev.c.o
[337/2790] Linking static target lib/librte_efd.a
[338/2790] Linking static target lib/librte_cryptodev.a
[339/2790] Compiling C object lib/librte_port.a.p/port_rte_port_sched.c.o
[340/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_eventdev.c.o
[341/2790] Compiling C object lib/librte_lpm.a.p/lpm_rte_lpm6.c.o
[342/2790] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[343/2790] Linking static target lib/librte_lpm.a
[344/2790] Compiling C object lib/librte_vhost.a.p/vhost_iotlb.c.o
[345/2790] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[346/2790] Generating rte_pipeline_def with a custom command
[347/2790] Generating rte_pipeline_mingw with a custom command
[348/2790] Compiling C object lib/librte_pdump.a.p/pdump_rte_pdump.c.o
[349/2790] Generating rte_flow_classify_mingw with a custom command
[350/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_sa.c.o
[351/2790] Linking static target lib/librte_pdump.a
[352/2790] Generating rte_flow_classify_def with a custom command
[353/2790] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[354/2790] Compiling C object lib/librte_vhost.a.p/vhost_socket.c.o
[355/2790] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[356/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_crypto_adapter.c.o
[357/2790] Compiling C object lib/librte_port.a.p/port_rte_port_frag.c.o
[358/2790] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[359/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_ipsec_sad.c.o
[360/2790] Generating rte_bpf_def with a custom command
[361/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ras.c.o
[362/2790] Generating rte_bpf_mingw with a custom command
[363/2790] Compiling C object lib/librte_rib.a.p/rib_rte_rib6.c.o
[364/2790] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[365/2790] Linking static target lib/librte_rib.a
[366/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_ethdev.c.o
[367/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_sse.c.o
[368/2790] Compiling C object lib/librte_port.a.p/port_rte_port_fd.c.o
[369/2790] Generating rte_graph_def with a custom command
[370/2790] Generating rte_graph_mingw with a custom command
[371/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_fd.c.o
[372/2790] Compiling C object lib/librte_table.a.p/table_rte_table_array.c.o
[373/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ethdev.c.o
[374/2790] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[375/2790] Compiling C object lib/librte_member.a.p/member_rte_member_ht.c.o
[376/2790] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[377/2790] Compiling C object lib/librte_port.a.p/port_rte_port_kni.c.o
[378/2790] Linking static target lib/librte_member.a
[379/2790] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[380/2790] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[381/2790] Compiling C object lib/librte_table.a.p/table_rte_table_stub.c.o
[382/2790] Compiling C object lib/librte_port.a.p/port_rte_port_sym_crypto.c.o
[383/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_source_sink.c.o
[384/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_cuckoo.c.o
[385/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_ring.c.o
[386/2790] Generating rte_node_def with a custom command
[387/2790] Compiling C object lib/librte_port.a.p/port_rte_port_source_sink.c.o
[388/2790] Compiling C object lib/librte_fib.a.p/fib_trie.c.o
[389/2790] Generating rte_node_mingw with a custom command
[390/2790] Generating rte_common_cpt_mingw with a custom command
[391/2790] Compiling C object lib/librte_table.a.p/table_rte_table_lpm.c.o
[392/2790] Compiling C object lib/librte_table.a.p/table_rte_table_lpm_ipv6.c.o
[393/2790] Compiling C object lib/librte_node.a.p/node_null.c.o
[394/2790] Generating rte_common_cpt_def with a custom command
[395/2790] Compiling C object lib/librte_fib.a.p/fib_dir24_8.c.o
[396/2790] Generating rte_common_dpaax_def with a custom command
[397/2790] Generating rte_common_dpaax_mingw with a custom command
[398/2790] Linking static target lib/librte_fib.a
[399/2790] Compiling C object lib/librte_port.a.p/port_rte_port_eventdev.c.o
[400/2790] Generating rte_common_iavf_def with a custom command
[401/2790] Compiling C object lib/librte_table.a.p/table_rte_table_acl.c.o
[402/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[403/2790] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[404/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[405/2790] Generating rte_common_iavf_mingw with a custom command
[406/2790] Generating rte_common_octeontx_mingw with a custom command
[407/2790] Generating rte_common_octeontx_def with a custom command
[408/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost.c.o
[409/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[410/2790] Generating rte_common_octeontx2_def with a custom command
[411/2790] Generating rte_common_octeontx2_mingw with a custom command
[412/2790] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[413/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf.c.o
[414/2790] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[415/2790] Generating rte_bus_auxiliary_mingw with a custom command
[416/2790] Generating rte_bus_auxiliary_def with a custom command
[417/2790] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[418/2790] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[419/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[420/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_avx2.c.o
[421/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_load.c.o
[422/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_auxiliary_params.c.o
[423/2790] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[424/2790] Linking static target drivers/libtmp_rte_common_octeontx.a
[425/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[426/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[427/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[428/2790] Compiling C object lib/librte_graph.a.p/graph_graph_debug.c.o
[429/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[430/2790] Compiling C object lib/librte_graph.a.p/graph_graph_ops.c.o
[431/2790] Compiling C object lib/librte_flow_classify.a.p/flow_classify_rte_flow_classify_parse.c.o
[432/2790] Generating rte_bus_dpaa_mingw with a custom command
[433/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_load_elf.c.o
[434/2790] Generating rte_bus_dpaa_def with a custom command
[435/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[436/2790] Compiling C object lib/librte_flow_classify.a.p/flow_classify_rte_flow_classify.c.o
[437/2790] Linking static target lib/librte_flow_classify.a
[438/2790] Linking static target drivers/libtmp_rte_common_dpaax.a
[439/2790] Compiling C object lib/librte_graph.a.p/graph_graph_populate.c.o
[440/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_auxiliary_common.c.o
[441/2790] Compiling C object lib/librte_graph.a.p/graph_node.c.o
[442/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key8.c.o
[443/2790] Compiling C object lib/librte_node.a.p/node_ethdev_ctrl.c.o
[444/2790] Generating rte_common_octeontx.pmd.c with a custom command
[445/2790] Compiling C object lib/librte_sched.a.p/sched_rte_sched.c.o
[446/2790] Compiling C object lib/librte_graph.a.p/graph_graph.c.o
[447/2790] Linking static target lib/librte_sched.a
[448/2790] Compiling C object lib/librte_node.a.p/node_log.c.o
[449/2790] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[450/2790] Compiling C object lib/librte_graph.a.p/graph_graph_stats.c.o
[451/2790] Linking static target drivers/librte_common_octeontx.a
[452/2790] Compiling C object drivers/librte_common_octeontx.so.22.0.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[453/2790] Linking static target lib/librte_graph.a
[454/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[455/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[456/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[457/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost_user.c.o
[458/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[459/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[460/2790] Compiling C object lib/librte_node.a.p/node_pkt_drop.c.o
[461/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_exec.c.o
[462/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[463/2790] Generating rte_bus_fslmc_mingw with a custom command
[464/2790] Generating rte_bus_fslmc_def with a custom command
[465/2790] Generating rte_bus_ifpga_def with a custom command
[466/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[467/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_eth_rx_adapter.c.o
[468/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[469/2790] Generating rte_bus_ifpga_mingw with a custom command
[470/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[471/2790] Compiling C object lib/librte_node.a.p/node_ethdev_tx.c.o
[472/2790] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[473/2790] Generating rte_common_dpaax.pmd.c with a custom command
[474/2790] Linking static target lib/librte_eventdev.a
[475/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_esp_outb.c.o
[476/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_esp_inb.c.o
[477/2790] Compiling C object lib/librte_node.a.p/node_ethdev_rx.c.o
[478/2790] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[479/2790] Generating rte_bus_pci_def with a custom command
[480/2790] Linking static target lib/librte_ipsec.a
[481/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key16.c.o
[482/2790] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[483/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_ext.c.o
[484/2790] Generating rte_bus_pci_mingw with a custom command
[485/2790] Linking static target drivers/librte_common_dpaax.a
[486/2790] Compiling C object drivers/librte_common_dpaax.so.22.0.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[487/2790] Generating rte_bus_vdev_mingw with a custom command
[488/2790] Generating rte_bus_vdev_def with a custom command
[489/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_pipeline.c.o
[490/2790] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[491/2790] Compiling C object lib/acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[492/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_pkt.c.o
[493/2790] Linking static target lib/acl/libavx512_tmp.a
[494/2790] Linking static target drivers/libtmp_rte_common_cpt.a
[495/2790] Generating rte_bus_vmbus_def with a custom command
[496/2790] Generating rte_bus_vmbus_mingw with a custom command
[497/2790] Linking static target lib/librte_acl.a
[498/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[499/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[500/2790] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[501/2790] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[502/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_lru.c.o
[503/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_linux_auxiliary.c.o
[504/2790] Linking static target drivers/libtmp_rte_bus_auxiliary.a
[505/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[506/2790] Compiling C object lib/librte_hash.a.p/hash_rte_cuckoo_hash.c.o
[507/2790] Linking static target lib/librte_hash.a
[508/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[509/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[510/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[511/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_validate.c.o
[512/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_ae.c.o
[513/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_pipeline_spec.c.o
[514/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[515/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key32.c.o
[516/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[517/2790] Linking static target lib/librte_table.a
[518/2790] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[519/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[520/2790] Linking static target drivers/libtmp_rte_bus_ifpga.a
[521/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy.c.o
[522/2790] Generating rte_common_cpt.pmd.c with a custom command
[523/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_ae_fpm_tables.c.o
[524/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[525/2790] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[526/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[527/2790] Linking static target drivers/librte_common_cpt.a
[528/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[529/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_ethdev.c.o
[530/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[531/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[532/2790] Compiling C object drivers/librte_common_cpt.so.22.0.p/meson-generated_.._rte_common_cpt.pmd.c.o
[533/2790] Linking static target lib/librte_ethdev.a
[534/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[535/2790] Compiling C object lib/librte_node.a.p/node_pkt_cls.c.o
[536/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ring.c.o
[537/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[538/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_cpt_debug.c.o
[539/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[540/2790] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[541/2790] Linking static target lib/librte_port.a
[542/2790] Linking static target drivers/libtmp_rte_bus_vmbus.a
[543/2790] Linking static target drivers/libtmp_rte_bus_vdev.a
[544/2790] Generating rte_bus_auxiliary.pmd.c with a custom command
[545/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[546/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_idev.c.o
[547/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy_irq.c.o
[548/2790] Compiling C object drivers/librte_bus_auxiliary.a.p/meson-generated_.._rte_bus_auxiliary.pmd.c.o
[549/2790] Compiling C object drivers/librte_bus_auxiliary.so.22.0.p/meson-generated_.._rte_bus_auxiliary.pmd.c.o
[550/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[551/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_hash.c.o
[552/2790] Linking static target drivers/librte_bus_auxiliary.a
[553/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy_cgx.c.o
[554/2790] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[555/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[556/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_model.c.o
[557/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_irq.c.o
[558/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[559/2790] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[560/2790] Generating rte_bus_ifpga.pmd.c with a custom command
[561/2790] Linking static target drivers/libtmp_rte_common_iavf.a
[562/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_mcast.c.o
[563/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[564/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[565/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_npc.c.o
[566/2790] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[567/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[568/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[569/2790] Linking static target drivers/libtmp_rte_common_octeontx2.a
[570/2790] Compiling C object drivers/librte_bus_ifpga.so.22.0.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[571/2790] Linking static target drivers/librte_bus_ifpga.a
[572/2790] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[573/2790] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[574/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_ptp.c.o
[575/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_fc.c.o
[576/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_cpt.c.o
[577/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[578/2790] Generating rte_common_cnxk_mingw with a custom command
[579/2790] Generating rte_bus_vdev.pmd.c with a custom command
[580/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[581/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_irq.c.o
[582/2790] Compiling C object lib/librte_node.a.p/node_ip4_lookup.c.o
[583/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix.c.o
[584/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_jit_x86.c.o
[585/2790] Generating rte_common_cnxk_def with a custom command
[586/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_rss.c.o
[587/2790] Linking static target lib/librte_bpf.a
[588/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[589/2790] Compiling C object drivers/librte_bus_vdev.so.22.0.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[590/2790] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[591/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_mac.c.o
[592/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa_irq.c.o
[593/2790] Generating rte_common_qat_def with a custom command
[594/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_vlan.c.o
[595/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_mbox.c.o
[596/2790] Generating rte_bus_vmbus.pmd.c with a custom command
[597/2790] Linking static target drivers/librte_bus_vdev.a
[598/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[599/2790] Generating rte_raw_ioat_mingw with a custom command
[600/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_ctl.c.o
[601/2790] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[602/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_ops.c.o
[603/2790] Generating rte_common_qat_mingw with a custom command
[604/2790] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[605/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[606/2790] Generating rte_raw_ntb_def with a custom command
[607/2790] Linking static target drivers/librte_bus_vmbus.a
[608/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_platform.c.o
[609/2790] Compiling C object drivers/librte_bus_vmbus.so.22.0.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[610/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa_debug.c.o
[611/2790] Generating rte_common_iavf.pmd.c with a custom command
[612/2790] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[613/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[614/2790] Linking static target drivers/librte_common_iavf.a
[615/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[616/2790] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[617/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_tim_irq.c.o
[618/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso_debug.c.o
[619/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_stats.c.o
[620/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso_irq.c.o
[621/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_dev.c.o
[622/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_utils.c.o
[623/2790] Compiling C object drivers/librte_common_iavf.so.22.0.p/meson-generated_.._rte_common_iavf.pmd.c.o
[624/2790] Generating rte_common_octeontx2.pmd.c with a custom command
[625/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[626/2790] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[627/2790] Compiling C object drivers/librte_common_octeontx2.so.22.0.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[628/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[629/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_se.c.o
[630/2790] Linking static target drivers/libtmp_rte_bus_pci.a
[631/2790] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[632/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_mcam_dump.c.o
[633/2790] Linking static target drivers/librte_common_octeontx2.a
[634/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_parse.c.o
[635/2790] Compiling C object lib/librte_node.a.p/node_ip4_rewrite.c.o
[636/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_tim.c.o
[637/2790] Linking static target lib/librte_node.a
[638/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa.c.o
[639/2790] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[640/2790] Generating rte_bus_auxiliary.sym_chk with a custom command (wrapped by meson to capture output)
[641/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso.c.o
[642/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm_ops.c.o
[643/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_queue.c.o
[644/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm_utils.c.o
[645/2790] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[646/2790] Generating rte_bus_pci.pmd.c with a custom command
[647/2790] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[648/2790] Linking static target drivers/librte_bus_pci.a
[649/2790] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[650/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_debug.c.o
[651/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[652/2790] Compiling C object drivers/librte_bus_pci.so.22.0.p/meson-generated_.._rte_bus_pci.pmd.c.o
[653/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[654/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[655/2790] Linking static target drivers/libtmp_rte_bus_fslmc.a
[656/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_pf2vf.c.o
[657/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc.c.o
[658/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[659/2790] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[660/2790] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[661/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_utils.c.o
[662/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[663/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[664/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_mcam.c.o
[665/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[666/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[667/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[668/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[669/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[670/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[671/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[672/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[673/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[674/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_cnxk_security.c.o
[675/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[676/2790] Generating rte_common_sfc_efx_def with a custom command
[677/2790] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[678/2790] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[679/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm.c.o
[680/2790] Generating rte_common_sfc_efx_mingw with a custom command
[681/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[682/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[683/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[684/2790] Generating rte_mempool_bucket_def with a custom command
[685/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[686/2790] Linking static target drivers/libtmp_rte_common_cnxk.a
[687/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_virtio.c.o
[688/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[689/2790] Generating rte_mempool_bucket_mingw with a custom command
[690/2790] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[691/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[692/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[693/2790] Generating rte_mempool_cnxk_def with a custom command
[694/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[695/2790] Generating rte_mempool_cnxk_mingw with a custom command
[696/2790] Generating rte_mempool_dpaa_def with a custom command
[697/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[698/2790] Generating rte_mempool_dpaa_mingw with a custom command
[699/2790] Generating rte_mempool_dpaa2_def with a custom command
[700/2790] Generating rte_mempool_dpaa2_mingw with a custom command
[701/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[702/2790] Generating rte_mempool_octeontx_def with a custom command
[703/2790] Generating rte_mempool_octeontx_mingw with a custom command
[704/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[705/2790] Generating rte_mempool_octeontx2_mingw with a custom command
[706/2790] Generating rte_mempool_octeontx2_def with a custom command
[707/2790] Generating rte_mempool_ring_def with a custom command
[708/2790] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[709/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[710/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[711/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[712/2790] Generating rte_mempool_ring_mingw with a custom command
[713/2790] Generating rte_mempool_stack_def with a custom command
[714/2790] Generating rte_mempool_stack_mingw with a custom command
[715/2790] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[716/2790] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[717/2790] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[718/2790] Generating rte_net_af_packet_def with a custom command
[719/2790] Generating rte_net_af_packet_mingw with a custom command
[720/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[721/2790] Generating rte_bus_fslmc.pmd.c with a custom command
[722/2790] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[723/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[724/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[725/2790] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[726/2790] Compiling C object drivers/librte_bus_fslmc.so.22.0.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[727/2790] Linking static target drivers/librte_bus_fslmc.a
[728/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cnxk_mempool.c.o
[729/2790] Generating rte_net_ark_def with a custom command
[730/2790] Generating rte_net_ark_mingw with a custom command
[731/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[732/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[733/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[734/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[735/2790] Generating rte_net_atlantic_mingw with a custom command
[736/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[737/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[738/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[739/2790] Generating rte_net_vmxnet3_def with a custom command
[740/2790] Generating rte_net_vmxnet3_mingw with a custom command
[741/2790] Generating rte_net_atlantic_def with a custom command
[742/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[743/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[744/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[745/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[746/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[747/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[748/2790] Generating rte_net_avp_mingw with a custom command
[749/2790] Generating rte_net_avp_def with a custom command
[750/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[751/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[752/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[753/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[754/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[755/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[756/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[757/2790] Generating rte_net_axgbe_def with a custom command
[758/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[759/2790] Generating rte_net_axgbe_mingw with a custom command
[760/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[761/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[762/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[763/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[764/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[765/2790] Linking static target drivers/libtmp_rte_common_qat.a
[766/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[767/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[768/2790] Generating rte_net_bnx2x_def with a custom command
[769/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_virtio.c.o
[770/2790] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[771/2790] Generating rte_net_bnx2x_mingw with a custom command
[772/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[773/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[774/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[775/2790] Generating rte_common_cnxk.pmd.c with a custom command
[776/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[777/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[778/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[779/2790] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[780/2790] Compiling C object drivers/librte_common_cnxk.a.p/meson-generated_.._rte_common_cnxk.pmd.c.o
[781/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[782/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[783/2790] Compiling C object drivers/librte_common_cnxk.so.22.0.p/meson-generated_.._rte_common_cnxk.pmd.c.o
[784/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[785/2790] Linking static target drivers/librte_common_cnxk.a
[786/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[787/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[788/2790] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[789/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cnxk_mempool_ops.c.o
[790/2790] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[791/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[792/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[793/2790] Linking static target drivers/libtmp_rte_bus_dpaa.a
[794/2790] Generating rte_common_qat.pmd.c with a custom command
[795/2790] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[796/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[797/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cn10k_mempool_ops.c.o
[798/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[799/2790] Linking static target drivers/librte_common_qat.a
[800/2790] Linking static target drivers/libtmp_rte_mempool_cnxk.a
[801/2790] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[802/2790] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[803/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[804/2790] Compiling C object drivers/librte_common_qat.so.22.0.p/meson-generated_.._rte_common_qat.pmd.c.o
[805/2790] Linking static target drivers/libtmp_rte_mempool_stack.a
[806/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[807/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[808/2790] Linking static target drivers/libtmp_rte_net_ark.a
[809/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[810/2790] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[811/2790] Generating rte_common_sfc_efx.pmd.c with a custom command
[812/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[813/2790] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[814/2790] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[815/2790] Compiling C object drivers/librte_common_sfc_efx.so.22.0.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[816/2790] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[817/2790] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[818/2790] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[819/2790] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[820/2790] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[821/2790] Linking static target drivers/librte_common_sfc_efx.a
[822/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[823/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[824/2790] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[825/2790] Generating rte_mempool_stack.pmd.c with a custom command
[826/2790] Generating rte_mempool_cnxk.pmd.c with a custom command
[827/2790] Generating rte_bus_dpaa.pmd.c with a custom command
[828/2790] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[829/2790] Compiling C object drivers/librte_mempool_cnxk.a.p/meson-generated_.._rte_mempool_cnxk.pmd.c.o
[830/2790] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[831/2790] Compiling C object drivers/librte_bus_dpaa.so.22.0.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[832/2790] Compiling C object drivers/librte_mempool_cnxk.so.22.0.p/meson-generated_.._rte_mempool_cnxk.pmd.c.o
[833/2790] Linking static target drivers/librte_bus_dpaa.a
[834/2790] Linking static target drivers/librte_mempool_stack.a
[835/2790] Linking static target drivers/librte_mempool_cnxk.a
[836/2790] Generating rte_mempool_dpaa2.pmd.c with a custom command
[837/2790] Generating rte_net_ark.pmd.c with a custom command
[838/2790] Generating rte_mempool_dpaa.pmd.c with a custom command
[839/2790] Generating rte_mempool_octeontx.pmd.c with a custom command
[840/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[841/2790] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[842/2790] Compiling C object drivers/librte_mempool_dpaa2.so.22.0.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[843/2790] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[844/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[845/2790] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[846/2790] Linking static target drivers/librte_mempool_dpaa2.a
[847/2790] Compiling C object drivers/librte_mempool_dpaa.so.22.0.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[848/2790] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[849/2790] Compiling C object drivers/librte_mempool_octeontx.so.22.0.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[850/2790] Compiling C object drivers/librte_mempool_stack.so.22.0.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[851/2790] Linking static target drivers/librte_mempool_dpaa.a
[852/2790] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[853/2790] Linking static target drivers/librte_mempool_octeontx.a
[854/2790] Linking static target drivers/librte_net_ark.a
[855/2790] Compiling C object drivers/librte_net_ark.so.22.0.p/meson-generated_.._rte_net_ark.pmd.c.o
[856/2790] Generating rte_mempool_octeontx2.pmd.c with a custom command
[857/2790] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[858/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[859/2790] Linking static target drivers/librte_mempool_octeontx2.a
[860/2790] Compiling C object drivers/librte_mempool_octeontx2.so.22.0.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[861/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[862/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[863/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[864/2790] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[865/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[866/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[867/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[868/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[869/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[870/2790] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[871/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[872/2790] Linking static target drivers/libtmp_rte_net_af_packet.a
[873/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[874/2790] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[875/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[876/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[877/2790] Linking static target drivers/libtmp_rte_mempool_ring.a
[878/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[879/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[880/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[881/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[882/2790] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[883/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[884/2790] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[885/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[886/2790] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[887/2790] Generating rte_mempool_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[888/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[889/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[890/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[891/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[892/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[893/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[894/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_gen_tbl.c.o
[895/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[896/2790] Generating rte_net_af_packet.pmd.c with a custom command
[897/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[898/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[899/2790] Generating rte_mempool_ring.pmd.c with a custom command
[900/2790] Compiling C object drivers/librte_net_af_packet.so.22.0.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[901/2790] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[902/2790] Linking static target drivers/librte_net_af_packet.a
[903/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[904/2790] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[905/2790] Compiling C object drivers/librte_mempool_ring.so.22.0.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[906/2790] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[907/2790] Linking static target drivers/librte_mempool_ring.a
[908/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_tf_pmd_shim.c.o
[909/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[910/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[911/2790] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[912/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[913/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[914/2790] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[915/2790] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[916/2790] Generating rte_net_bnxt_def with a custom command
[917/2790] Generating rte_net_bnxt_mingw with a custom command
[918/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[919/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_common.c.o
[920/2790] Generating rte_net_bond_mingw with a custom command
[921/2790] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[922/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_ha_mgr.c.o
[923/2790] Generating rte_net_bond_def with a custom command
[924/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[925/2790] Linking static target drivers/libtmp_rte_net_atlantic.a
[926/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[927/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[928/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_p58.c.o
[929/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_handler_tbl.c.o
[930/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_p4.c.o
[931/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[932/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_act.c.o
[933/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[934/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_tbl.c.o
[935/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_class.c.o
[936/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_gen_hash.c.o
[937/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_wh_plus_act.c.o
[938/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[939/2790] Linking static target drivers/libtmp_rte_net_axgbe.a
[940/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_thor_act.c.o
[941/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[942/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_thor_class.c.o
[943/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_wh_plus_class.c.o
[944/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[945/2790] Generating rte_net_atlantic.pmd.c with a custom command
[946/2790] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[947/2790] Compiling C object drivers/librte_net_atlantic.so.22.0.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[948/2790] Linking static target drivers/librte_net_atlantic.a
[949/2790] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[950/2790] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[951/2790] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[952/2790] Linking static target drivers/libtmp_rte_net_avp.a
[953/2790] Generating rte_net_axgbe.pmd.c with a custom command
[954/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_hash_internal.c.o
[955/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[956/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_dpool.c.o
[957/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[958/2790] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[959/2790] Compiling C object drivers/librte_net_axgbe.so.22.0.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[960/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[961/2790] Linking static target drivers/librte_net_axgbe.a
[962/2790] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[963/2790] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[964/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[965/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[966/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[967/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[968/2790] Generating rte_net_cnxk_def with a custom command
[969/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[970/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p58.c.o
[971/2790] Generating rte_net_cnxk_mingw with a custom command
[972/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[973/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[974/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[975/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_link.c.o
[976/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[977/2790] Generating rte_net_avp.pmd.c with a custom command
[978/2790] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[979/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[980/2790] Linking static target drivers/librte_net_avp.a
[981/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[982/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev_devargs.c.o
[983/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[984/2790] Compiling C object drivers/librte_net_avp.so.22.0.p/meson-generated_.._rte_net_avp.pmd.c.o
[985/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[986/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[987/2790] Generating rte_net_cxgbe_def with a custom command
[988/2790] Generating rte_net_vmxnet3.pmd.c with a custom command
[989/2790] Generating rte_net_cxgbe_mingw with a custom command
[990/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_lookup.c.o
[991/2790] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[992/2790] Linking static target drivers/libtmp_rte_mempool_bucket.a
[993/2790] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[994/2790] Linking static target drivers/librte_net_vmxnet3.a
[995/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[996/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[997/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[998/2790] Generating rte_net_dpaa_def with a custom command
[999/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_ethdev.c.o
[1000/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ptp.c.o
[1001/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_vec_mseg.c.o
[1002/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_rte_flow.c.o
[1003/2790] Generating rte_net_dpaa_mingw with a custom command
[1004/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[1005/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_vec_mseg.c.o
[1006/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_vec.c.o
[1007/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rte_flow.c.o
[1008/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam_shared.c.o
[1009/2790] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[1010/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev_ops.c.o
[1011/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1012/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_stats.c.o
[1013/2790] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1014/2790] Generating rte_mempool_bucket.pmd.c with a custom command
[1015/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_pipeline.c.o
[1016/2790] Generating rte_net_dpaa2_mingw with a custom command
[1017/2790] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[1018/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[1019/2790] Generating rte_net_dpaa2_def with a custom command
[1020/2790] Linking static target drivers/librte_mempool_bucket.a
[1021/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_vec.c.o
[1022/2790] Compiling C object drivers/librte_mempool_bucket.so.22.0.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[1023/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rte_flow.c.o
[1024/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1025/2790] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[1026/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1027/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1028/2790] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[1029/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1030/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1031/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_ethdev.c.o
[1032/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev.c.o
[1033/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_vec_mseg.c.o
[1034/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1035/2790] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[1036/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1037/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1038/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1039/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1040/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1041/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1042/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1043/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1044/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[1045/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1046/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1047/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_avx2.c.o
[1048/2790] Generating rte_net_e1000_mingw with a custom command
[1049/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1050/2790] Generating rte_net_e1000_def with a custom command
[1051/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1052/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1053/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1054/2790] Generating rte_net_ena_def with a custom command
[1055/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_vec.c.o
[1056/2790] Generating rte_net_ena_mingw with a custom command
[1057/2790] Generating rte_net_enetc_def with a custom command
[1058/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1059/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_vec.c.o
[1060/2790] Generating rte_net_enetc_mingw with a custom command
[1061/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1062/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_vec_mseg.c.o
[1063/2790] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[1064/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1065/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1066/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1067/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1068/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1069/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1070/2790] Generating rte_net_enic_mingw with a custom command
[1071/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1072/2790] Generating rte_net_enic_def with a custom command
[1073/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1074/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1075/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1076/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1077/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1078/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1079/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1080/2790] Generating rte_net_failsafe_def with a custom command
[1081/2790] Generating rte_net_failsafe_mingw with a custom command
[1082/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1083/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1084/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1085/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1086/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1087/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1088/2790] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[1089/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1090/2790] Generating rte_net_fm10k_def with a custom command
[1091/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1092/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1093/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1094/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1095/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[1096/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1097/2790] Generating rte_net_fm10k_mingw with a custom command
[1098/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_rss.c.o
[1099/2790] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1100/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1101/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1102/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1103/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1104/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[1105/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1106/2790] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1107/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1108/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1109/2790] Generating rte_net_hinic_def with a custom command
[1110/2790] Generating rte_net_hinic_mingw with a custom command
[1111/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1112/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx.c.o
[1113/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1114/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1115/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1116/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1117/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1118/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1119/2790] Linking static target drivers/libtmp_rte_net_bond.a
[1120/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1121/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1122/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1123/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1124/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1125/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1126/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1127/2790] Generating rte_net_hns3_def with a custom command
[1128/2790] Generating rte_net_hns3_mingw with a custom command
[1129/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1130/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1131/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1132/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1133/2790] Generating rte_net_bond.pmd.c with a custom command
[1134/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1135/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1136/2790] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1137/2790] Compiling C object drivers/librte_net_bond.so.22.0.p/meson-generated_.._rte_net_bond.pmd.c.o
[1138/2790] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1139/2790] Linking static target drivers/librte_net_bond.a
[1140/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1141/2790] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1142/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1143/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1144/2790] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1145/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1146/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1147/2790] Linking static target drivers/libtmp_rte_net_enetc.a
[1148/2790] Linking static target drivers/net/e1000/base/libe1000_base.a
[1149/2790] Linking static target drivers/libtmp_rte_net_bnxt.a
[1150/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1151/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1152/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1153/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1154/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1155/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1156/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1157/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1158/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1159/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1160/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1161/2790] Linking static target drivers/libtmp_rte_net_ena.a
[1162/2790] Generating rte_net_i40e_mingw with a custom command
[1163/2790] Generating rte_net_i40e_def with a custom command
[1164/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1165/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1166/2790] Generating rte_net_enetc.pmd.c with a custom command
[1167/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1168/2790] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1169/2790] Compiling C object drivers/librte_net_enetc.so.22.0.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1170/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1171/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1172/2790] Linking static target drivers/librte_net_enetc.a
[1173/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1174/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1175/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1176/2790] Generating rte_net_cxgbe.pmd.c with a custom command
[1177/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1178/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_mseg.c.o
[1179/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ptp.c.o
[1180/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1181/2790] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1182/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx.c.o
[1183/2790] Compiling C object drivers/librte_net_cxgbe.so.22.0.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1184/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1185/2790] Linking static target drivers/net/hinic/base/libhinic_base.a
[1186/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1187/2790] Linking static target drivers/librte_net_cxgbe.a
[1188/2790] Generating rte_net_iavf_def with a custom command
[1189/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1190/2790] Linking static target drivers/libtmp_rte_net_enic.a
[1191/2790] Generating rte_net_ena.pmd.c with a custom command
[1192/2790] Generating rte_net_iavf_mingw with a custom command
[1193/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1194/2790] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1195/2790] Linking static target drivers/librte_net_ena.a
[1196/2790] Compiling C object drivers/librte_net_ena.so.22.0.p/meson-generated_.._rte_net_ena.pmd.c.o
[1197/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_mseg.c.o
[1198/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1199/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1200/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1201/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1202/2790] Generating rte_net_enic.pmd.c with a custom command
[1203/2790] Generating rte_net_bnxt.pmd.c with a custom command
[1204/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1205/2790] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1206/2790] Linking static target drivers/librte_net_enic.a
[1207/2790] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1208/2790] Compiling C object drivers/librte_net_bnxt.so.22.0.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1209/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1210/2790] Linking static target drivers/librte_net_bnxt.a
[1211/2790] Compiling C object drivers/librte_net_enic.so.22.0.p/meson-generated_.._rte_net_enic.pmd.c.o
[1212/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1213/2790] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1214/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1215/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1216/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1217/2790] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1218/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1219/2790] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1220/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_tm.c.o
[1221/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1222/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1223/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1224/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1225/2790] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1226/2790] Generating rte_net_ice_def with a custom command
[1227/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1228/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1229/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1230/2790] Generating rte_net_ice_mingw with a custom command
[1231/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1232/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1233/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1234/2790] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[1235/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1236/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1237/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1238/2790] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1239/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1240/2790] Linking target lib/librte_eal.so.22.0
[1241/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1242/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1243/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1244/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1245/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1246/2790] Generating rte_net_igc_def with a custom command
[1247/2790] Generating rte_net_igc_mingw with a custom command
[1248/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1249/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1250/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1251/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1252/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1253/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1254/2790] Generating rte_net_ionic_def with a custom command
[1255/2790] Generating rte_net_ionic_mingw with a custom command
[1256/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1257/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1258/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1259/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx.c.o
[1260/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1261/2790] Generating rte_net_ipn3ke_def with a custom command
[1262/2790] Generating rte_net_ipn3ke_mingw with a custom command
[1263/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1264/2790] Generating symbol file lib/librte_eal.so.22.0.p/librte_eal.so.22.0.symbols
[1265/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1266/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1267/2790] Linking target lib/librte_ring.so.22.0
[1268/2790] Linking target lib/librte_meter.so.22.0
[1269/2790] Linking target lib/librte_pci.so.22.0
[1270/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1271/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1272/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_ptp_hw.c.o
[1273/2790] Linking target lib/librte_timer.so.22.0
[1274/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1275/2790] Linking target lib/librte_acl.so.22.0
[1276/2790] Linking target lib/librte_cfgfile.so.22.0
[1277/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1278/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1279/2790] Linking target lib/librte_jobstats.so.22.0
[1280/2790] Linking target lib/librte_rawdev.so.22.0
[1281/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1282/2790] Linking target lib/librte_stack.so.22.0
[1283/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_mseg.c.o
[1284/2790] Linking target lib/librte_graph.so.22.0
[1285/2790] Linking target drivers/librte_common_dpaax.so.22.0
[1286/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1287/2790] Linking target drivers/librte_common_iavf.so.22.0
[1288/2790] Linking target drivers/librte_common_octeontx.so.22.0
[1289/2790] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1290/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1291/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_sched.c.o
[1292/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1293/2790] Linking static target drivers/net/i40e/base/libi40e_base.a
[1294/2790] Linking target drivers/librte_bus_auxiliary.so.22.0
[1295/2790] Linking target drivers/librte_bus_vdev.so.22.0
[1296/2790] Linking target drivers/librte_bus_vmbus.so.22.0
[1297/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1298/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1299/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1300/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1301/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1302/2790] Linking static target drivers/libtmp_rte_net_hinic.a
[1303/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1304/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1305/2790] Generating symbol file lib/librte_meter.so.22.0.p/librte_meter.so.22.0.symbols
[1306/2790] Linking static target drivers/net/igc/base/libigc_base.a
[1307/2790] Generating symbol file lib/librte_ring.so.22.0.p/librte_ring.so.22.0.symbols
[1308/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1309/2790] Generating symbol file lib/librte_pci.so.22.0.p/librte_pci.so.22.0.symbols
[1310/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1311/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1312/2790] Linking static target drivers/libtmp_rte_net_failsafe.a
[1313/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1314/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_mseg.c.o
[1315/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1316/2790] Linking static target drivers/libtmp_rte_net_fm10k.a
[1317/2790] Linking target lib/librte_mempool.so.22.0
[1318/2790] Linking static target drivers/libtmp_rte_net_e1000.a
[1319/2790] Linking target lib/librte_rcu.so.22.0
[1320/2790] Generating symbol file lib/librte_timer.so.22.0.p/librte_timer.so.22.0.symbols
[1321/2790] Linking target drivers/librte_bus_pci.so.22.0
[1322/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1323/2790] Generating symbol file lib/librte_rawdev.so.22.0.p/librte_rawdev.so.22.0.symbols
[1324/2790] Generating symbol file lib/librte_acl.so.22.0.p/librte_acl.so.22.0.symbols
[1325/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_ethdev.c.o
[1326/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1327/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1328/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1329/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1330/2790] Generating symbol file lib/librte_stack.so.22.0.p/librte_stack.so.22.0.symbols
[1331/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1332/2790] Generating rte_net_hinic.pmd.c with a custom command
[1333/2790] Linking target drivers/librte_bus_ifpga.so.22.0
[1334/2790] Generating rte_net_ixgbe_mingw with a custom command
[1335/2790] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1336/2790] Generating rte_net_ixgbe_def with a custom command
[1337/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1338/2790] Generating symbol file drivers/librte_common_octeontx.so.22.0.p/librte_common_octeontx.so.22.0.symbols
[1339/2790] Generating symbol file lib/librte_graph.so.22.0.p/librte_graph.so.22.0.symbols
[1340/2790] Linking static target drivers/librte_net_hinic.a
[1341/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1342/2790] Compiling C object drivers/librte_net_hinic.so.22.0.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1343/2790] Generating rte_net_kni_def with a custom command
[1344/2790] Generating rte_net_kni_mingw with a custom command
[1345/2790] Generating symbol file drivers/librte_bus_vdev.so.22.0.p/librte_bus_vdev.so.22.0.symbols
[1346/2790] Generating rte_net_failsafe.pmd.c with a custom command
[1347/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_flow.c.o
[1348/2790] Generating rte_net_liquidio_mingw with a custom command
[1349/2790] Generating symbol file drivers/librte_bus_vmbus.so.22.0.p/librte_bus_vmbus.so.22.0.symbols
[1350/2790] Generating rte_net_liquidio_def with a custom command
[1351/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1352/2790] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1353/2790] Compiling C object drivers/librte_net_failsafe.so.22.0.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1354/2790] Linking static target drivers/librte_net_failsafe.a
[1355/2790] Generating rte_net_memif_def with a custom command
[1356/2790] Generating rte_net_memif_mingw with a custom command
[1357/2790] Generating rte_net_e1000.pmd.c with a custom command
[1358/2790] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1359/2790] Linking static target drivers/librte_net_e1000.a
[1360/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1361/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1362/2790] Linking static target drivers/libtmp_rte_net_hns3.a
[1363/2790] Compiling C object drivers/librte_net_e1000.so.22.0.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1364/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1365/2790] Generating symbol file drivers/librte_common_iavf.so.22.0.p/librte_common_iavf.so.22.0.symbols
[1366/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1367/2790] Generating symbol file lib/librte_rcu.so.22.0.p/librte_rcu.so.22.0.symbols
[1368/2790] Generating symbol file drivers/librte_bus_ifpga.so.22.0.p/librte_bus_ifpga.so.22.0.symbols
[1369/2790] Generating rte_net_netvsc_def with a custom command
[1370/2790] Generating rte_net_netvsc_mingw with a custom command
[1371/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1372/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_representor.c.o
[1373/2790] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1374/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1375/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1376/2790] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1377/2790] Generating symbol file drivers/librte_common_dpaax.so.22.0.p/librte_common_dpaax.so.22.0.symbols
[1378/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1379/2790] Generating rte_net_fm10k.pmd.c with a custom command
[1380/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1381/2790] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1382/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1383/2790] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1384/2790] Compiling C object drivers/librte_net_fm10k.so.22.0.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1385/2790] Linking static target drivers/librte_net_fm10k.a
[1386/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1387/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1388/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1389/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1390/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1391/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1392/2790] Generating rte_net_nfp_def with a custom command
[1393/2790] Generating symbol file lib/librte_mempool.so.22.0.p/librte_mempool.so.22.0.symbols
[1394/2790] Generating symbol file drivers/librte_bus_pci.so.22.0.p/librte_bus_pci.so.22.0.symbols
[1395/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1396/2790] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1397/2790] Linking target lib/librte_rib.so.22.0
[1398/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1399/2790] Linking target lib/librte_mbuf.so.22.0
[1400/2790] Linking target drivers/librte_mempool_bucket.so.22.0
[1401/2790] Linking target drivers/librte_mempool_ring.so.22.0
[1402/2790] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1403/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1404/2790] Linking static target drivers/libtmp_rte_net_kni.a
[1405/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1406/2790] Generating rte_net_nfp_mingw with a custom command
[1407/2790] Linking target drivers/librte_mempool_stack.so.22.0
[1408/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1409/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1410/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1411/2790] Linking static target drivers/libtmp_rte_net_ionic.a
[1412/2790] Linking static target drivers/libtmp_rte_net_dpaa.a
[1413/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1414/2790] Generating rte_net_ngbe_def with a custom command
[1415/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1416/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1417/2790] Linking static target drivers/libtmp_rte_net_igc.a
[1418/2790] Generating rte_net_ngbe_mingw with a custom command
[1419/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1420/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1421/2790] Generating rte_net_null_def with a custom command
[1422/2790] Generating rte_net_null_mingw with a custom command
[1423/2790] Generating rte_net_kni.pmd.c with a custom command
[1424/2790] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1425/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1426/2790] Generating rte_net_dpaa.pmd.c with a custom command
[1427/2790] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1428/2790] Compiling C object drivers/librte_net_kni.so.22.0.p/meson-generated_.._rte_net_kni.pmd.c.o
[1429/2790] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1430/2790] Linking static target drivers/librte_net_kni.a
[1431/2790] Compiling C object drivers/librte_net_dpaa.so.22.0.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1432/2790] Linking static target drivers/librte_net_dpaa.a
[1433/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1434/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1435/2790] Generating symbol file lib/librte_rib.so.22.0.p/librte_rib.so.22.0.symbols
[1436/2790] Generating rte_net_igc.pmd.c with a custom command
[1437/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1438/2790] Generating rte_net_octeontx_def with a custom command
[1439/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1440/2790] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1441/2790] Compiling C object drivers/librte_net_igc.so.22.0.p/meson-generated_.._rte_net_igc.pmd.c.o
[1442/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_mng.c.o
[1443/2790] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1444/2790] Generating rte_net_octeontx_mingw with a custom command
[1445/2790] Linking target lib/librte_fib.so.22.0
[1446/2790] Linking static target drivers/librte_net_igc.a
[1447/2790] Generating symbol file lib/librte_mbuf.so.22.0.p/librte_mbuf.so.22.0.symbols
[1448/2790] Linking static target drivers/net/ice/libice_avx512_lib.a
[1449/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1450/2790] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1451/2790] Generating rte_net_hns3.pmd.c with a custom command
[1452/2790] Linking target lib/librte_cryptodev.so.22.0
[1453/2790] Linking target lib/librte_net.so.22.0
[1454/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1455/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1456/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1457/2790] Linking target lib/librte_compressdev.so.22.0
[1458/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1459/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1460/2790] Linking target lib/librte_bbdev.so.22.0
[1461/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_ethdev_vf.c.o
[1462/2790] Linking target lib/librte_distributor.so.22.0
[1463/2790] Linking target lib/librte_reorder.so.22.0
[1464/2790] Linking static target drivers/libtmp_rte_net_liquidio.a
[1465/2790] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1466/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1467/2790] Linking target drivers/librte_mempool_octeontx.so.22.0
[1468/2790] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1469/2790] Compiling C object drivers/librte_net_hns3.so.22.0.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1470/2790] Linking static target drivers/librte_net_hns3.a
[1471/2790] Linking target lib/librte_regexdev.so.22.0
[1472/2790] Linking target lib/librte_sched.so.22.0
[1473/2790] Generating rte_net_ionic.pmd.c with a custom command
[1474/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_rtl.c.o
[1475/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy.c.o
[1476/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_mvl.c.o
[1477/2790] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1478/2790] Compiling C object drivers/librte_net_ionic.so.22.0.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1479/2790] Linking static target drivers/librte_net_ionic.a
[1480/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_hw.c.o
[1481/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_yt.c.o
[1482/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1483/2790] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1484/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1485/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_common.c.o
[1486/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1487/2790] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1488/2790] Generating rte_net_liquidio.pmd.c with a custom command
[1489/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1490/2790] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1491/2790] Linking static target drivers/librte_net_liquidio.a
[1492/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_tm.c.o
[1493/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1494/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1495/2790] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1496/2790] Linking static target drivers/libtmp_rte_net_ipn3ke.a
[1497/2790] Compiling C object drivers/librte_net_liquidio.so.22.0.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1498/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1499/2790] Generating symbol file lib/librte_cryptodev.so.22.0.p/librte_cryptodev.so.22.0.symbols
[1500/2790] Generating rte_net_octeontx2_def with a custom command
[1501/2790] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1502/2790] Generating symbol file lib/librte_net.so.22.0.p/librte_net.so.22.0.symbols
[1503/2790] Generating symbol file lib/librte_compressdev.so.22.0.p/librte_compressdev.so.22.0.symbols
[1504/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_rxtx.c.o
[1505/2790] Linking target lib/librte_security.so.22.0
[1506/2790] Linking target drivers/librte_common_cpt.so.22.0
[1507/2790] Generating rte_net_octeontx2_mingw with a custom command
[1508/2790] Generating symbol file drivers/librte_mempool_octeontx.so.22.0.p/librte_mempool_octeontx.so.22.0.symbols
[1509/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1510/2790] Linking target lib/librte_ethdev.so.22.0
[1511/2790] Linking target lib/librte_cmdline.so.22.0
[1512/2790] Generating symbol file lib/librte_sched.so.22.0.p/librte_sched.so.22.0.symbols
[1513/2790] Linking target lib/librte_hash.so.22.0
[1514/2790] Linking target drivers/librte_common_qat.so.22.0
[1515/2790] Generating rte_net_ipn3ke.pmd.c with a custom command
[1516/2790] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1517/2790] Generating symbol file lib/librte_regexdev.so.22.0.p/librte_regexdev.so.22.0.symbols
[1518/2790] Compiling C object drivers/librte_net_ipn3ke.a.p/meson-generated_.._rte_net_ipn3ke.pmd.c.o
[1519/2790] Generating rte_net_octeontx_ep_mingw with a custom command
[1520/2790] Compiling C object drivers/librte_net_ipn3ke.so.22.0.p/meson-generated_.._rte_net_ipn3ke.pmd.c.o
[1521/2790] Linking static target drivers/librte_net_ipn3ke.a
[1522/2790] Linking static target drivers/libtmp_rte_net_memif.a
[1523/2790] Generating rte_net_octeontx_ep_def with a custom command
[1524/2790] Generating rte_net_pcap_def with a custom command
[1525/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1526/2790] Generating symbol file lib/librte_reorder.so.22.0.p/librte_reorder.so.22.0.symbols
[1527/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1528/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1529/2790] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1530/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1531/2790] Generating rte_net_pcap_mingw with a custom command
[1532/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1533/2790] Linking static target drivers/libtmp_rte_net_null.a
[1534/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_eeprom.c.o
[1535/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1536/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1537/2790] Linking static target drivers/net/ngbe/base/libngbe_base.a
[1538/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1539/2790] Generating rte_net_pfe_def with a custom command
[1540/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1541/2790] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1542/2790] Generating rte_net_pfe_mingw with a custom command
[1543/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1544/2790] Linking static target drivers/libtmp_rte_net_netvsc.a
[1545/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1546/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1547/2790] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1548/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_cpp_bridge.c.o
[1549/2790] Generating rte_net_memif.pmd.c with a custom command
[1550/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1551/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1552/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1553/2790] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1554/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1555/2790] Linking static target drivers/librte_net_memif.a
[1556/2790] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1557/2790] Compiling C object drivers/librte_net_memif.so.22.0.p/meson-generated_.._rte_net_memif.pmd.c.o
[1558/2790] Generating symbol file lib/librte_bbdev.so.22.0.p/librte_bbdev.so.22.0.symbols
[1559/2790] Generating symbol file lib/librte_security.so.22.0.p/librte_security.so.22.0.symbols
[1560/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1561/2790] Generating symbol file drivers/librte_common_cpt.so.22.0.p/librte_common_cpt.so.22.0.symbols
[1562/2790] Generating symbol file lib/librte_hash.so.22.0.p/librte_hash.so.22.0.symbols
[1563/2790] Generating symbol file lib/librte_ethdev.so.22.0.p/librte_ethdev.so.22.0.symbols
[1564/2790] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1565/2790] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1566/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1567/2790] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1568/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1569/2790] Generating rte_net_null.pmd.c with a custom command
[1570/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1571/2790] Linking target lib/librte_efd.so.22.0
[1572/2790] Linking target lib/librte_metrics.so.22.0
[1573/2790] Linking target lib/librte_ip_frag.so.22.0
[1574/2790] Linking target lib/librte_gso.so.22.0
[1575/2790] Linking target lib/librte_gro.so.22.0
[1576/2790] Linking target lib/librte_member.so.22.0
[1577/2790] Linking target lib/librte_lpm.so.22.0
[1578/2790] Linking target lib/librte_eventdev.so.22.0
[1579/2790] Linking target lib/librte_kni.so.22.0
[1580/2790] Linking target lib/librte_power.so.22.0
[1581/2790] Generating rte_net_ipn3ke.sym_chk with a custom command (wrapped by meson to capture output)
[1582/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1583/2790] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_pcap_osdep_linux.c.o
[1584/2790] Generating rte_net_bnx2x.pmd.c with a custom command
[1585/2790] Linking target lib/librte_ipsec.so.22.0
[1586/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1587/2790] Linking target lib/librte_bpf.so.22.0
[1588/2790] Linking target drivers/librte_net_af_packet.so.22.0
[1589/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1590/2790] Linking target drivers/librte_common_octeontx2.so.22.0
[1591/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1592/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1593/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_ethdev.c.o
[1594/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1595/2790] Linking target drivers/librte_net_ark.so.22.0
[1596/2790] Linking target drivers/librte_net_atlantic.so.22.0
[1597/2790] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1598/2790] Compiling C object drivers/libtmp_rte_net_ngbe.a.p/net_ngbe_ngbe_rxtx.c.o
[1599/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1600/2790] Linking target drivers/librte_net_avp.so.22.0
[1601/2790] Compiling C object drivers/librte_net_bnx2x.so.22.0.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1602/2790] Linking target drivers/librte_net_axgbe.so.22.0
[1603/2790] Linking static target drivers/librte_net_bnx2x.a
[1604/2790] Linking target drivers/librte_common_sfc_efx.so.22.0
[1605/2790] Linking target drivers/librte_net_cxgbe.so.22.0
[1606/2790] Generating rte_net_netvsc.pmd.c with a custom command
[1607/2790] Linking target drivers/librte_net_ena.so.22.0
[1608/2790] Linking target drivers/librte_net_enic.so.22.0
[1609/2790] Linking target drivers/librte_net_e1000.so.22.0
[1610/2790] Linking target drivers/librte_net_failsafe.so.22.0
[1611/2790] Linking target drivers/librte_net_bnxt.so.22.0
[1612/2790] Linking static target drivers/libtmp_rte_net_nfp.a
[1613/2790] Linking target drivers/librte_net_hinic.so.22.0
[1614/2790] Compiling C object drivers/librte_net_netvsc.so.22.0.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1615/2790] Linking target drivers/librte_net_igc.so.22.0
[1616/2790] Linking target lib/librte_pdump.so.22.0
[1617/2790] Linking target drivers/librte_net_fm10k.so.22.0
[1618/2790] Compiling C object drivers/librte_net_null.so.22.0.p/meson-generated_.._rte_net_null.pmd.c.o
[1619/2790] Linking target drivers/librte_net_ionic.so.22.0
[1620/2790] Linking target drivers/librte_net_ipn3ke.so.22.0
[1621/2790] Linking target drivers/librte_net_liquidio.so.22.0
[1622/2790] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1623/2790] Generating rte_net_qede_def with a custom command
[1624/2790] Generating rte_common_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[1625/2790] Generating rte_net_qede_mingw with a custom command
[1626/2790] Linking static target drivers/librte_net_netvsc.a
[1627/2790] Generating rte_net_ring_def with a custom command
[1628/2790] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1629/2790] Generating symbol file lib/librte_ip_frag.so.22.0.p/librte_ip_frag.so.22.0.symbols
[1630/2790] Linking static target drivers/librte_net_null.a
[1631/2790] Linking target drivers/librte_net_enetc.so.22.0
[1632/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1633/2790] Generating rte_net_ring_mingw with a custom command
[1634/2790] Linking target drivers/librte_common_cnxk.so.22.0
[1635/2790] Linking target drivers/librte_net_hns3.so.22.0
[1636/2790] Linking target drivers/librte_net_bond.so.22.0
[1637/2790] Generating symbol file lib/librte_kni.so.22.0.p/librte_kni.so.22.0.symbols
[1638/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1639/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx.c.o
[1640/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1641/2790] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1642/2790] Generating symbol file lib/librte_lpm.so.22.0.p/librte_lpm.so.22.0.symbols
[1643/2790] Linking target drivers/librte_net_kni.so.22.0
[1644/2790] Compiling C object drivers/libtmp_rte_net_ngbe.a.p/net_ngbe_ngbe_ethdev.c.o
[1645/2790] Linking static target drivers/libtmp_rte_net_cnxk.a
[1646/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1647/2790] Generating symbol file lib/librte_eventdev.so.22.0.p/librte_eventdev.so.22.0.symbols
[1648/2790] Linking static target drivers/libtmp_rte_net_ngbe.a
[1649/2790] Generating symbol file drivers/librte_common_octeontx2.so.22.0.p/librte_common_octeontx2.so.22.0.symbols
[1650/2790] Linking target lib/librte_node.so.22.0
[1651/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1652/2790] Linking target drivers/librte_bus_dpaa.so.22.0
[1653/2790] Linking target lib/librte_port.so.22.0
[1654/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1655/2790] Generating rte_net_nfp.pmd.c with a custom command
[1656/2790] Linking target drivers/librte_bus_fslmc.so.22.0
[1657/2790] Linking target drivers/librte_mempool_octeontx2.so.22.0
[1658/2790] Generating symbol file lib/librte_gso.so.22.0.p/librte_gso.so.22.0.symbols
[1659/2790] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1660/2790] Generating symbol file lib/librte_metrics.so.22.0.p/librte_metrics.so.22.0.symbols
[1661/2790] Linking static target drivers/librte_net_nfp.a
[1662/2790] Generating symbol file drivers/librte_common_sfc_efx.so.22.0.p/librte_common_sfc_efx.so.22.0.symbols
[1663/2790] Compiling C object drivers/librte_net_nfp.so.22.0.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1664/2790] Generating symbol file drivers/librte_net_ipn3ke.so.22.0.p/librte_net_ipn3ke.so.22.0.symbols
[1665/2790] Linking target lib/librte_bitratestats.so.22.0
[1666/2790] Linking target lib/librte_latencystats.so.22.0
[1667/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1668/2790] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1669/2790] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1670/2790] Compiling C object drivers/librte_net_octeontx_ep.so.22.0.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1671/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1672/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1673/2790] Linking target drivers/librte_net_memif.so.22.0
[1674/2790] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1675/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1676/2790] Linking static target drivers/librte_net_octeontx_ep.a
[1677/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1678/2790] Generating rte_net_ngbe.pmd.c with a custom command
[1679/2790] Linking static target drivers/libtmp_rte_net_octeontx.a
[1680/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1681/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1682/2790] Compiling C object drivers/librte_net_ngbe.a.p/meson-generated_.._rte_net_ngbe.pmd.c.o
[1683/2790] Compiling C object drivers/librte_net_ngbe.so.22.0.p/meson-generated_.._rte_net_ngbe.pmd.c.o
[1684/2790] Linking static target drivers/librte_net_ngbe.a
[1685/2790] Generating symbol file drivers/librte_common_cnxk.so.22.0.p/librte_common_cnxk.so.22.0.symbols
[1686/2790] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1687/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1688/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1689/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1690/2790] Generating rte_net_cnxk.pmd.c with a custom command
[1691/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1692/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1693/2790] Linking target drivers/librte_mempool_cnxk.so.22.0
[1694/2790] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1695/2790] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1696/2790] Linking static target drivers/libtmp_rte_net_pfe.a
[1697/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1698/2790] Compiling C object drivers/librte_net_cnxk.a.p/meson-generated_.._rte_net_cnxk.pmd.c.o
[1699/2790] Compiling C object drivers/librte_net_cnxk.so.22.0.p/meson-generated_.._rte_net_cnxk.pmd.c.o
[1700/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1701/2790] Linking static target drivers/librte_net_cnxk.a
[1702/2790] Generating symbol file drivers/librte_bus_dpaa.so.22.0.p/librte_bus_dpaa.so.22.0.symbols
[1703/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1704/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1705/2790] Linking target drivers/librte_net_netvsc.so.22.0
[1706/2790] Generating rte_net_sfc_def with a custom command
[1707/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1708/2790] Generating rte_net_sfc_mingw with a custom command
[1709/2790] Generating symbol file lib/librte_port.so.22.0.p/librte_port.so.22.0.symbols
[1710/2790] Generating rte_net_softnic_mingw with a custom command
[1711/2790] Linking target drivers/librte_net_null.so.22.0
[1712/2790] Linking target drivers/librte_mempool_dpaa.so.22.0
[1713/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1714/2790] Linking target drivers/librte_net_bnx2x.so.22.0
[1715/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1716/2790] Linking static target drivers/libtmp_rte_net_iavf.a
[1717/2790] Linking target lib/librte_table.so.22.0
[1718/2790] Generating rte_net_octeontx.pmd.c with a custom command
[1719/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1720/2790] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1721/2790] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1722/2790] Compiling C object drivers/librte_net_octeontx.so.22.0.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1723/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1724/2790] Linking static target drivers/librte_net_octeontx.a
[1725/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1726/2790] Generating symbol file drivers/librte_mempool_octeontx2.so.22.0.p/librte_mempool_octeontx2.so.22.0.symbols
[1727/2790] Linking target drivers/librte_net_nfp.so.22.0
[1728/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1729/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1730/2790] Generating symbol file drivers/librte_bus_fslmc.so.22.0.p/librte_bus_fslmc.so.22.0.symbols
[1731/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1732/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1733/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_service.c.o
[1734/2790] Generating rte_net_softnic_def with a custom command
[1735/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1736/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1737/2790] Linking target drivers/librte_mempool_dpaa2.so.22.0
[1738/2790] Generating rte_net_tap_def with a custom command
[1739/2790] Generating rte_net_tap_mingw with a custom command
[1740/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1741/2790] Generating symbol file drivers/librte_mempool_cnxk.so.22.0.p/librte_mempool_cnxk.so.22.0.symbols
[1742/2790] Generating rte_net_pfe.pmd.c with a custom command
[1743/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1744/2790] Generating rte_net_ngbe.sym_chk with a custom command (wrapped by meson to capture output)
[1745/2790] Generating rte_net_iavf.pmd.c with a custom command
[1746/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1747/2790] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1748/2790] Compiling C object drivers/librte_net_pfe.so.22.0.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1749/2790] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1750/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae_counter.c.o
[1751/2790] Compiling C object drivers/librte_net_iavf.so.22.0.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1752/2790] Generating rte_net_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[1753/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1754/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1755/2790] Linking static target drivers/librte_net_pfe.a
[1756/2790] Generating rte_net_thunderx_def with a custom command
[1757/2790] Generating rte_net_thunderx_mingw with a custom command
[1758/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1759/2790] Linking target drivers/librte_net_ngbe.so.22.0
[1760/2790] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1761/2790] Linking target drivers/librte_net_cnxk.so.22.0
[1762/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1763/2790] Linking target drivers/librte_net_octeontx_ep.so.22.0
[1764/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1765/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1766/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1767/2790] Generating symbol file lib/librte_table.so.22.0.p/librte_table.so.22.0.symbols
[1768/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1769/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1770/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sw_stats.c.o
[1771/2790] Generating rte_net_txgbe_def with a custom command
[1772/2790] Generating rte_net_txgbe_mingw with a custom command
[1773/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1774/2790] Generating rte_net_vdev_netvsc_def with a custom command
[1775/2790] Generating rte_net_vhost_def with a custom command
[1776/2790] Generating symbol file drivers/librte_mempool_dpaa.so.22.0.p/librte_mempool_dpaa.so.22.0.symbols
[1777/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1778/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1779/2790] Linking target lib/librte_flow_classify.so.22.0
[1780/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1781/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1782/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1783/2790] Linking target drivers/librte_net_dpaa.so.22.0
[1784/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1785/2790] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_pcap_ethdev.c.o
[1786/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1787/2790] Linking static target drivers/libtmp_rte_net_pcap.a
[1788/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1789/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1790/2790] Generating rte_net_vdev_netvsc_mingw with a custom command
[1791/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1792/2790] Generating symbol file drivers/librte_net_cnxk.so.22.0.p/librte_net_cnxk.so.22.0.symbols
[1793/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1794/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1795/2790] Generating rte_net_vhost_mingw with a custom command
[1796/2790] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1797/2790] Generating rte_net_virtio_def with a custom command
[1798/2790] Compiling C object drivers/librte_net_vmxnet3.so.22.0.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1799/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1800/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1801/2790] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1802/2790] Linking target drivers/librte_net_pfe.so.22.0
[1803/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1804/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1805/2790] Generating rte_net_virtio_mingw with a custom command
[1806/2790] Linking target drivers/librte_net_octeontx.so.22.0
[1807/2790] Linking target drivers/librte_net_vmxnet3.so.22.0
[1808/2790] Generating rte_raw_cnxk_bphy_def with a custom command
[1809/2790] Generating rte_raw_cnxk_bphy_mingw with a custom command
[1810/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1811/2790] Generating symbol file drivers/librte_net_dpaa.so.22.0.p/librte_net_dpaa.so.22.0.symbols
[1812/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1813/2790] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1814/2790] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1815/2790] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1816/2790] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1817/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1818/2790] Generating symbol file drivers/librte_mempool_dpaa2.so.22.0.p/librte_mempool_dpaa2.so.22.0.symbols
[1819/2790] Generating rte_raw_dpaa2_qdma_def with a custom command
[1820/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1821/2790] Generating rte_net_pcap.pmd.c with a custom command
[1822/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_cgx_test.c.o
[1823/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1824/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy.c.o
[1825/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_irq.c.o
[1826/2790] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1827/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1828/2790] Compiling C object drivers/librte_net_pcap.so.22.0.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1829/2790] Linking static target drivers/librte_net_pcap.a
[1830/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1831/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1832/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1833/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1834/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1835/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_cgx.c.o
[1836/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1837/2790] Linking static target drivers/libtmp_rte_raw_cnxk_bphy.a
[1838/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1839/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1840/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1841/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1842/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1843/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1844/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1845/2790] Generating rte_raw_ifpga_mingw with a custom command
[1846/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1847/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1848/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1849/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1850/2790] Generating rte_raw_ifpga_def with a custom command
[1851/2790] Generating rte_net_dpaa2.pmd.c with a custom command
[1852/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1853/2790] Generating symbol file drivers/librte_net_octeontx.so.22.0.p/librte_net_octeontx.so.22.0.symbols
[1854/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[1855/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1856/2790] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1857/2790] Generating rte_raw_ioat_def with a custom command
[1858/2790] Linking static target drivers/net/ice/base/libice_base.a
[1859/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1860/2790] Linking static target drivers/libtmp_rte_net_ice.a
[1861/2790] Linking static target drivers/librte_net_dpaa2.a
[1862/2790] Compiling C object drivers/librte_net_dpaa2.so.22.0.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1863/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1864/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1865/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1866/2790] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1867/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port.c.o
[1868/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port_error.c.o
[1869/2790] Generating rte_raw_octeontx2_dma_def with a custom command
[1870/2790] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1871/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_error.c.o
[1872/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1873/2790] Generating rte_raw_ntb_mingw with a custom command
[1874/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_dperf.c.o
[1875/2790] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1876/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1877/2790] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1878/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_feature_dev.c.o
[1879/2790] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1880/2790] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1881/2790] Linking static target drivers/libtmp_rte_net_i40e.a
[1882/2790] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1883/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi.c.o
[1884/2790] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1885/2790] Linking static target drivers/libtmp_rte_net_ring.a
[1886/2790] Linking static target drivers/libtmp_rte_net_vhost.a
[1887/2790] Generating rte_raw_skeleton_def with a custom command
[1888/2790] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1889/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_rsu.c.o
[1890/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1891/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_hw_api.c.o
[1892/2790] Linking target drivers/librte_net_pcap.so.22.0
[1893/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1894/2790] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1895/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_sec_mgr.c.o
[1896/2790] Generating rte_raw_octeontx2_ep_def with a custom command
[1897/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_eth_group.c.o
[1898/2790] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1899/2790] Generating rte_raw_skeleton_mingw with a custom command
[1900/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1901/2790] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.22.0.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1902/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme.c.o
[1903/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1904/2790] Generating rte_raw_cnxk_bphy.pmd.c with a custom command
[1905/2790] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1906/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1907/2790] Generating rte_crypto_bcmfs_mingw with a custom command
[1908/2790] Generating rte_crypto_bcmfs_def with a custom command
[1909/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1910/2790] Compiling C object drivers/librte_raw_cnxk_bphy.so.22.0.p/meson-generated_.._rte_raw_cnxk_bphy.pmd.c.o
[1911/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1912/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_intel_max10.c.o
[1913/2790] Compiling C object drivers/librte_raw_cnxk_bphy.a.p/meson-generated_.._rte_raw_cnxk_bphy.pmd.c.o
[1914/2790] Generating rte_crypto_caam_jr_mingw with a custom command
[1915/2790] Generating rte_net_ring.pmd.c with a custom command
[1916/2790] Generating rte_net_vhost.pmd.c with a custom command
[1917/2790] Generating rte_crypto_caam_jr_def with a custom command
[1918/2790] Linking static target drivers/librte_raw_cnxk_bphy.a
[1919/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_bus.c.o
[1920/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1921/2790] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1922/2790] Compiling C object drivers/librte_net_ring.so.22.0.p/meson-generated_.._rte_net_ring.pmd.c.o
[1923/2790] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1924/2790] Compiling C object drivers/librte_net_vhost.so.22.0.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1925/2790] Linking static target drivers/librte_net_ring.a
[1926/2790] Linking static target drivers/librte_net_vhost.a
[1927/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1928/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1929/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1930/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1931/2790] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1932/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1933/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[1934/2790] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1935/2790] Linking static target drivers/libtmp_rte_net_qede.a
[1936/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1937/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_api.c.o
[1938/2790] Linking static target drivers/libtmp_rte_raw_ntb.a
[1939/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1940/2790] Generating rte_crypto_cnxk_def with a custom command
[1941/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1942/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1943/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_debug.c.o
[1944/2790] Generating rte_crypto_cnxk_mingw with a custom command
[1945/2790] Generating rte_crypto_dpaa_sec_def with a custom command
[1946/2790] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1947/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_iperf.c.o
[1948/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1949/2790] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1950/2790] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1951/2790] Linking static target drivers/libtmp_rte_net_thunderx.a
[1952/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_pr.c.o
[1953/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1954/2790] Generating rte_crypto_dpaa2_sec_def with a custom command
[1955/2790] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1956/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_enumerate.c.o
[1957/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1958/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_ifpga_hw_api.c.o
[1959/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_at24_eeprom.c.o
[1960/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1961/2790] Generating rte_net_i40e.pmd.c with a custom command
[1962/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1963/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1964/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1965/2790] Generating rte_crypto_nitrox_mingw with a custom command
[1966/2790] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1967/2790] Generating rte_net_ice.pmd.c with a custom command
[1968/2790] Compiling C object drivers/librte_net_i40e.so.22.0.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1969/2790] Generating rte_crypto_nitrox_def with a custom command
[1970/2790] Generating rte_crypto_null_mingw with a custom command
[1971/2790] Linking static target drivers/librte_net_i40e.a
[1972/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1973/2790] Generating rte_crypto_null_def with a custom command
[1974/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1975/2790] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1976/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost_crypto.c.o
[1977/2790] Compiling C object drivers/librte_net_ice.so.22.0.p/meson-generated_.._rte_net_ice.pmd.c.o
[1978/2790] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1979/2790] Generating rte_crypto_octeontx_mingw with a custom command
[1980/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1981/2790] Linking static target drivers/librte_net_ice.a
[1982/2790] Generating rte_crypto_octeontx_def with a custom command
[1983/2790] Generating rte_raw_ntb.pmd.c with a custom command
[1984/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1985/2790] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[1986/2790] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1987/2790] Linking static target drivers/libtmp_rte_net_softnic.a
[1988/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1989/2790] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1990/2790] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1991/2790] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1992/2790] Compiling C object drivers/librte_raw_ntb.so.22.0.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1993/2790] Linking static target drivers/librte_raw_ntb.a
[1994/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1995/2790] Linking target drivers/librte_raw_dpaa2_cmdif.so.22.0
[1996/2790] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1997/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1998/2790] Generating rte_crypto_octeontx2_mingw with a custom command
[1999/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[2000/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[2001/2790] Generating rte_crypto_octeontx2_def with a custom command
[2002/2790] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[2003/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_cryptodev.c.o
[2004/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[2005/2790] Generating rte_raw_skeleton.pmd.c with a custom command
[2006/2790] Generating rte_net_softnic.pmd.c with a custom command
[2007/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi_transaction.c.o
[2008/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[2009/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[2010/2790] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[2011/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev.c.o
[2012/2790] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[2013/2790] Compiling C object drivers/librte_raw_skeleton.so.22.0.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[2014/2790] Linking static target drivers/librte_raw_skeleton.a
[2015/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_cryptodev.c.o
[2016/2790] Linking static target drivers/librte_net_softnic.a
[2017/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_ipsec.c.o
[2018/2790] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2019/2790] Generating rte_crypto_scheduler_def with a custom command
[2020/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_capabilities.c.o
[2021/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[2022/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[2023/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_ipsec.c.o
[2024/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[2025/2790] Generating rte_crypto_virtio_mingw with a custom command
[2026/2790] Compiling C object drivers/librte_net_softnic.so.22.0.p/meson-generated_.._rte_net_softnic.pmd.c.o
[2027/2790] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[2028/2790] Generating rte_crypto_virtio_def with a custom command
[2029/2790] Generating rte_raw_cnxk_bphy.sym_chk with a custom command (wrapped by meson to capture output)
[2030/2790] Generating rte_compress_octeontx_mingw with a custom command
[2031/2790] Generating rte_net_ixgbe.pmd.c with a custom command
[2032/2790] Generating rte_crypto_scheduler_mingw with a custom command
[2033/2790] Generating rte_compress_octeontx_def with a custom command
[2034/2790] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[2035/2790] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[2036/2790] Compiling C object drivers/librte_raw_octeontx2_dma.so.22.0.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[2037/2790] Linking target drivers/librte_raw_cnxk_bphy.so.22.0
[2038/2790] Compiling C object drivers/librte_net_ixgbe.so.22.0.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[2039/2790] Linking static target drivers/librte_net_ixgbe.a
[2040/2790] Linking static target drivers/librte_raw_octeontx2_dma.a
[2041/2790] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[2042/2790] Linking target drivers/librte_net_dpaa2.so.22.0
[2043/2790] Generating rte_net_qede.pmd.c with a custom command
[2044/2790] Generating rte_compress_zlib_mingw with a custom command
[2045/2790] Generating rte_net_thunderx.pmd.c with a custom command
[2046/2790] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2047/2790] Generating rte_compress_zlib_def with a custom command
[2048/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[2049/2790] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[2050/2790] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[2051/2790] Compiling C object drivers/librte_net_thunderx.so.22.0.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[2052/2790] Compiling C object drivers/librte_net_qede.so.22.0.p/meson-generated_.._rte_net_qede.pmd.c.o
[2053/2790] Linking static target drivers/librte_net_vdev_netvsc.a
[2054/2790] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[2055/2790] Linking static target drivers/librte_net_thunderx.a
[2056/2790] Compiling C object drivers/librte_net_vdev_netvsc.so.22.0.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[2057/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_i2c.c.o
[2058/2790] Compiling C object drivers/libtmp_rte_raw_ifpga.a.p/raw_ifpga_rte_pmd_ifpga.c.o
[2059/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[2060/2790] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[2061/2790] Linking static target drivers/raw/ifpga/base/libifpga_rawdev_base.a
[2062/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[2063/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[2064/2790] Compiling C object lib/librte_vhost.a.p/vhost_virtio_net.c.o
[2065/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[2066/2790] Linking target drivers/librte_raw_ntb.so.22.0
[2067/2790] Linking static target lib/librte_vhost.a
[2068/2790] Compiling C object drivers/librte_raw_octeontx2_ep.so.22.0.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[2069/2790] Generating rte_regex_octeontx2_def with a custom command
[2070/2790] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[2071/2790] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[2072/2790] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[2073/2790] Generating rte_regex_octeontx2_mingw with a custom command
[2074/2790] Linking static target drivers/librte_raw_octeontx2_ep.a
[2075/2790] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[2076/2790] Generating rte_vdpa_ifc_mingw with a custom command
[2077/2790] Generating rte_vdpa_ifc_def with a custom command
[2078/2790] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[2079/2790] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2080/2790] Linking target drivers/librte_net_ring.so.22.0
[2081/2790] Linking target drivers/librte_net_ice.so.22.0
[2082/2790] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2083/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[2084/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[2085/2790] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[2086/2790] Linking static target drivers/libtmp_rte_net_sfc.a
[2087/2790] Linking target drivers/librte_raw_skeleton.so.22.0
[2088/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[2089/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_ops.c.o
[2090/2790] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[2091/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[2092/2790] Linking static target drivers/libtmp_rte_net_virtio.a
[2093/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[2094/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[2095/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_sec.c.o
[2096/2790] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[2097/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[2098/2790] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[2099/2790] Linking static target drivers/librte_raw_dpaa2_qdma.a
[2100/2790] Compiling C object drivers/librte_raw_dpaa2_qdma.so.22.0.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[2101/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[2102/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[2103/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[2104/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[2105/2790] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[2106/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[2107/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[2108/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[2109/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[2110/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[2111/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[2112/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[2113/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[2114/2790] Generating rte_net_virtio.pmd.c with a custom command
[2115/2790] Generating rte_net_sfc.pmd.c with a custom command
[2116/2790] Generating rte_event_cnxk_def with a custom command
[2117/2790] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[2118/2790] Linking static target drivers/librte_net_sfc.a
[2119/2790] Compiling C object drivers/librte_net_sfc.so.22.0.p/meson-generated_.._rte_net_sfc.pmd.c.o
[2120/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[2121/2790] Compiling C object drivers/librte_net_virtio.so.22.0.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2122/2790] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[2123/2790] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2124/2790] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[2125/2790] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[2126/2790] Linking static target drivers/librte_net_virtio.a
[2127/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[2128/2790] Generating rte_event_cnxk_mingw with a custom command
[2129/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[2130/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[2131/2790] Linking static target drivers/libtmp_rte_crypto_virtio.a
[2132/2790] Linking target drivers/librte_raw_octeontx2_dma.so.22.0
[2133/2790] Generating symbol file drivers/librte_net_dpaa2.so.22.0.p/librte_net_dpaa2.so.22.0.symbols
[2134/2790] Compiling C object drivers/libtmp_rte_raw_ifpga.a.p/raw_ifpga_ifpga_rawdev.c.o
[2135/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[2136/2790] Linking target drivers/librte_net_i40e.so.22.0
[2137/2790] Generating rte_crypto_bcmfs.pmd.c with a custom command
[2138/2790] Linking static target drivers/libtmp_rte_raw_ifpga.a
[2139/2790] Linking static target drivers/net/qede/base/libqede_base.a
[2140/2790] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[2141/2790] Linking static target drivers/librte_net_qede.a
[2142/2790] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[2143/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[2144/2790] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[2145/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[2146/2790] Linking static target drivers/librte_crypto_bcmfs.a
[2147/2790] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[2148/2790] Compiling C object drivers/librte_crypto_bcmfs.so.22.0.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[2149/2790] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[2150/2790] Linking target drivers/librte_raw_dpaa2_qdma.so.22.0
[2151/2790] Linking target drivers/librte_net_vdev_netvsc.so.22.0
[2152/2790] Generating rte_event_dlb2_mingw with a custom command
[2153/2790] Generating rte_event_dlb2_def with a custom command
[2154/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_eventdev.c.o
[2155/2790] Linking target drivers/librte_net_thunderx.so.22.0
[2156/2790] Generating rte_event_dpaa_def with a custom command
[2157/2790] Generating rte_event_dpaa_mingw with a custom command
[2158/2790] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[2159/2790] Generating rte_event_dpaa2_mingw with a custom command
[2160/2790] Generating rte_event_dpaa2_def with a custom command
[2161/2790] Generating rte_crypto_virtio.pmd.c with a custom command
[2162/2790] Generating rte_event_dsw_def with a custom command
[2163/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[2164/2790] Linking target drivers/librte_raw_octeontx2_ep.so.22.0
[2165/2790] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[2166/2790] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[2167/2790] Compiling C object drivers/librte_crypto_virtio.so.22.0.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[2168/2790] Linking static target drivers/librte_crypto_virtio.a
[2169/2790] Generating rte_raw_ifpga.pmd.c with a custom command
[2170/2790] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[2171/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[2172/2790] Compiling C object drivers/librte_raw_ifpga.a.p/meson-generated_.._rte_raw_ifpga.pmd.c.o
[2173/2790] Compiling C object drivers/librte_raw_ifpga.so.22.0.p/meson-generated_.._rte_raw_ifpga.pmd.c.o
[2174/2790] Linking static target drivers/librte_raw_ifpga.a
[2175/2790] Generating rte_event_dsw_mingw with a custom command
[2176/2790] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[2177/2790] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[2178/2790] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[2179/2790] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[2180/2790] Linking static target drivers/libtmp_rte_compress_zlib.a
[2181/2790] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[2182/2790] Linking static target drivers/libtmp_rte_compress_octeontx.a
[2183/2790] Linking target drivers/librte_net_sfc.so.22.0
[2184/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_stats.c.o
[2185/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[2186/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_adptr.c.o
[2187/2790] Generating rte_compress_zlib.pmd.c with a custom command
[2188/2790] Generating rte_vdpa_ifc.pmd.c with a custom command
[2189/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_burst.c.o
[2190/2790] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2191/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[2192/2790] Compiling C object drivers/librte_compress_zlib.so.22.0.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2193/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_tim_evdev.c.o
[2194/2790] Linking static target drivers/librte_compress_zlib.a
[2195/2790] Linking static target drivers/libtmp_rte_raw_ioat.a
[2196/2790] Compiling C object drivers/librte_vdpa_ifc.so.22.0.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2197/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[2198/2790] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2199/2790] Generating symbol file drivers/librte_net_i40e.so.22.0.p/librte_net_i40e.so.22.0.symbols
[2200/2790] Linking static target drivers/librte_vdpa_ifc.a
[2201/2790] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2202/2790] Generating rte_event_octeontx2_def with a custom command
[2203/2790] Generating rte_crypto_nitrox.pmd.c with a custom command
[2204/2790] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[2205/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[2206/2790] Compiling C object drivers/librte_crypto_nitrox.so.22.0.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[2207/2790] Linking static target drivers/librte_crypto_nitrox.a
[2208/2790] Linking target drivers/librte_net_virtio.so.22.0
[2209/2790] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[2210/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker.c.o
[2211/2790] Generating rte_event_octeontx2_mingw with a custom command
[2212/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[2213/2790] Generating rte_compress_octeontx.pmd.c with a custom command
[2214/2790] Generating rte_raw_ioat.pmd.c with a custom command
[2215/2790] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[2216/2790] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[2217/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_burst.c.o
[2218/2790] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2219/2790] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2220/2790] Compiling C object drivers/librte_raw_ioat.so.22.0.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[2221/2790] Linking static target drivers/librte_compress_octeontx.a
[2222/2790] Linking static target drivers/libtmp_rte_event_dpaa.a
[2223/2790] Linking target drivers/librte_net_qede.so.22.0
[2224/2790] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[2225/2790] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2226/2790] Linking static target drivers/librte_raw_ioat.a
[2227/2790] Compiling C object drivers/librte_compress_octeontx.so.22.0.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2228/2790] Linking target drivers/librte_crypto_bcmfs.so.22.0
[2229/2790] Generating rte_event_opdl_mingw with a custom command
[2230/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2231/2790] Generating rte_event_skeleton_def with a custom command
[2232/2790] Generating rte_event_opdl_def with a custom command
[2233/2790] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[2234/2790] Linking static target drivers/libtmp_rte_crypto_null.a
[2235/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[2236/2790] Linking target drivers/librte_net_ixgbe.so.22.0
[2237/2790] Generating rte_regex_octeontx2.pmd.c with a custom command
[2238/2790] Linking static target drivers/libtmp_rte_net_tap.a
[2239/2790] Generating rte_event_skeleton_mingw with a custom command
[2240/2790] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2241/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2242/2790] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2243/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker.c.o
[2244/2790] Compiling C object drivers/librte_regex_octeontx2.so.22.0.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2245/2790] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[2246/2790] Linking static target drivers/librte_regex_octeontx2.a
[2247/2790] Generating rte_event_sw_def with a custom command
[2248/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2249/2790] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2250/2790] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2251/2790] Linking target drivers/librte_crypto_nitrox.so.22.0
[2252/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_burst.c.o
[2253/2790] Generating rte_event_sw_mingw with a custom command
[2254/2790] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2255/2790] Generating rte_event_dpaa.pmd.c with a custom command
[2256/2790] Linking target drivers/librte_crypto_virtio.so.22.0
[2257/2790] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2258/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2259/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2260/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_tim_worker.c.o
[2261/2790] Linking static target drivers/librte_event_dpaa.a
[2262/2790] Compiling C object drivers/librte_event_dpaa.so.22.0.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2263/2790] Linking target drivers/librte_compress_zlib.so.22.0
[2264/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_eventdev.c.o
[2265/2790] Generating rte_raw_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[2266/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2267/2790] Generating rte_event_octeontx_mingw with a custom command
[2268/2790] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2269/2790] Generating rte_net_tap.pmd.c with a custom command
[2270/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev.c.o
[2271/2790] Generating rte_crypto_null.pmd.c with a custom command
[2272/2790] Linking target drivers/librte_raw_ifpga.so.22.0
[2273/2790] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2274/2790] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[2275/2790] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[2276/2790] Compiling C object drivers/librte_net_tap.so.22.0.p/meson-generated_.._rte_net_tap.pmd.c.o
[2277/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[2278/2790] Compiling C object drivers/librte_crypto_null.so.22.0.p/meson-generated_.._rte_crypto_null.pmd.c.o
[2279/2790] Linking static target drivers/librte_crypto_null.a
[2280/2790] Compiling C object drivers/librte_crypto_caam_jr.so.22.0.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2281/2790] Linking static target drivers/librte_net_tap.a
[2282/2790] Generating rte_baseband_acc100_mingw with a custom command
[2283/2790] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2284/2790] Generating rte_event_octeontx_def with a custom command
[2285/2790] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2286/2790] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2287/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2288/2790] Linking static target drivers/librte_crypto_caam_jr.a
[2289/2790] Linking target drivers/librte_compress_octeontx.so.22.0
[2290/2790] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2291/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[2292/2790] Generating rte_baseband_acc100_def with a custom command
[2293/2790] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2294/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2295/2790] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2296/2790] Generating rte_baseband_null_def with a custom command
[2297/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[2298/2790] Generating rte_baseband_null_mingw with a custom command
[2299/2790] Generating rte_baseband_turbo_sw_def with a custom command
[2300/2790] Generating rte_baseband_turbo_sw_mingw with a custom command
[2301/2790] Generating rte_crypto_scheduler.pmd.c with a custom command
[2302/2790] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2303/2790] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2304/2790] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2305/2790] Compiling C object drivers/librte_crypto_scheduler.so.22.0.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2306/2790] Linking static target drivers/librte_crypto_scheduler.a
[2307/2790] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2308/2790] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[2309/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2310/2790] Linking target drivers/librte_raw_ioat.so.22.0
[2311/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2312/2790] Linking target lib/librte_vhost.so.22.0
[2313/2790] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2314/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2315/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2316/2790] Linking target drivers/librte_regex_octeontx2.so.22.0
[2317/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2318/2790] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2319/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2320/2790] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[2321/2790] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2322/2790] Linking static target drivers/libtmp_rte_event_skeleton.a
[2323/2790] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[2324/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2325/2790] Linking target drivers/librte_crypto_null.so.22.0
[2326/2790] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2327/2790] Generating rte_event_dpaa2.pmd.c with a custom command
[2328/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2329/2790] Linking target drivers/librte_net_tap.so.22.0
[2330/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2331/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2332/2790] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2333/2790] Linking target drivers/librte_crypto_caam_jr.so.22.0
[2334/2790] Linking static target drivers/librte_event_dpaa2.a
[2335/2790] Generating symbol file lib/librte_vhost.so.22.0.p/librte_vhost.so.22.0.symbols
[2336/2790] Compiling C object drivers/librte_event_dpaa2.so.22.0.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2337/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2338/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2339/2790] Generating rte_event_skeleton.pmd.c with a custom command
[2340/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2341/2790] Linking target drivers/librte_net_vhost.so.22.0
[2342/2790] Linking target drivers/librte_vdpa_ifc.so.22.0
[2343/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_selftest.c.o
[2344/2790] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2345/2790] Compiling C object drivers/librte_event_skeleton.so.22.0.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2346/2790] Linking static target drivers/librte_event_skeleton.a
[2347/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2348/2790] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2349/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2350/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2351/2790] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2352/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2353/2790] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[2354/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2355/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2356/2790] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2357/2790] Linking static target drivers/librte_net_iavf.a
[2358/2790] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[2359/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2360/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2361/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2362/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2363/2790] Linking static target drivers/libtmp_rte_event_opdl.a
[2364/2790] Linking static target drivers/libtmp_rte_event_dlb2.a
[2365/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2366/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2367/2790] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2368/2790] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2369/2790] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2370/2790] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2371/2790] Generating rte_event_opdl.pmd.c with a custom command
[2372/2790] Linking target drivers/librte_crypto_scheduler.so.22.0
[2373/2790] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2374/2790] Linking target drivers/librte_event_skeleton.so.22.0
[2375/2790] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2376/2790] Compiling C object drivers/librte_event_opdl.so.22.0.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2377/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq.c.o
[2378/2790] Linking static target drivers/librte_event_opdl.a
[2379/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq.c.o
[2380/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2381/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2382/2790] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.22.0.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2383/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2384/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2385/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2386/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2387/2790] Linking static target drivers/libtmp_rte_event_octeontx.a
[2388/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_tx_enq.c.o
[2389/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2390/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2391/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2392/2790] Generating rte_event_dlb2.pmd.c with a custom command
[2393/2790] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2394/2790] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2395/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2396/2790] Compiling C object drivers/librte_event_dlb2.so.22.0.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2397/2790] Linking static target drivers/librte_event_dlb2.a
[2398/2790] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2399/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_cryptodev_ops.c.o
[2400/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2401/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2402/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2403/2790] Generating rte_event_octeontx.pmd.c with a custom command
[2404/2790] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2405/2790] Linking static target drivers/libtmp_rte_net_txgbe.a
[2406/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2407/2790] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2408/2790] Compiling C object drivers/librte_event_octeontx.so.22.0.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2409/2790] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2410/2790] Linking static target drivers/librte_event_octeontx.a
[2411/2790] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2412/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_cryptodev_ops.c.o
[2413/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2414/2790] Linking static target drivers/libtmp_rte_crypto_cnxk.a
[2415/2790] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2416/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2417/2790] Linking target drivers/librte_event_opdl.so.22.0
[2418/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2419/2790] Generating rte_crypto_cnxk.pmd.c with a custom command
[2420/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_tmo.c.o
[2421/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2422/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2423/2790] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2424/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2425/2790] Compiling C object drivers/librte_crypto_cnxk.a.p/meson-generated_.._rte_crypto_cnxk.pmd.c.o
[2426/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2427/2790] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2428/2790] Linking static target drivers/librte_crypto_cnxk.a
[2429/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2430/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2431/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2432/2790] Compiling C object drivers/librte_crypto_cnxk.so.22.0.p/meson-generated_.._rte_crypto_cnxk.pmd.c.o
[2433/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2434/2790] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2435/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2436/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_tx_enq.c.o
[2437/2790] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[2438/2790] Linking target drivers/librte_baseband_fpga_lte_fec.so.22.0
[2439/2790] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2440/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2441/2790] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2442/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2443/2790] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2444/2790] Compiling C object drivers/librte_crypto_dpaa2_sec.so.22.0.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2445/2790] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2446/2790] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.22.0.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2447/2790] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2448/2790] Linking target drivers/librte_net_iavf.so.22.0
[2449/2790] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2450/2790] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2451/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2452/2790] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2453/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2454/2790] Generating rte_net_txgbe.pmd.c with a custom command
[2455/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2456/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2457/2790] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2458/2790] Compiling C object drivers/librte_net_txgbe.so.22.0.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2459/2790] Linking static target drivers/librte_net_txgbe.a
[2460/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2461/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2462/2790] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2463/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2464/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2465/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2466/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2467/2790] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2468/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2469/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_tx_enq_seg.c.o
[2470/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2471/2790] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2472/2790] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2473/2790] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2474/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2475/2790] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2476/2790] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2477/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2478/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2479/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2480/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2481/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2482/2790] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2483/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2484/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2485/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2486/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2487/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2488/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2489/2790] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2490/2790] Generating rte_baseband_acc100.pmd.c with a custom command
[2491/2790] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2492/2790] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2493/2790] Generating rte_crypto_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[2494/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2495/2790] Linking target drivers/librte_event_dlb2.so.22.0
[2496/2790] Linking target drivers/librte_crypto_cnxk.so.22.0
[2497/2790] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2498/2790] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2499/2790] Compiling C object drivers/librte_baseband_acc100.so.22.0.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2500/2790] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2501/2790] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2502/2790] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2503/2790] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2504/2790] Linking target drivers/librte_net_txgbe.so.22.0
[2505/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2506/2790] Linking static target drivers/librte_baseband_acc100.a
[2507/2790] Linking static target drivers/libtmp_rte_baseband_null.a
[2508/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_tmo.c.o
[2509/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2510/2790] Compiling C object app/test/dpdk-test.p/test.c.o
[2511/2790] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2512/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2513/2790] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2514/2790] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2515/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2516/2790] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2517/2790] Generating rte_baseband_null.pmd.c with a custom command
[2518/2790] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2519/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2520/2790] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2521/2790] Linking static target drivers/librte_baseband_null.a
[2522/2790] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2523/2790] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.22.0
[2524/2790] Compiling C object drivers/librte_baseband_null.so.22.0.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2525/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2526/2790] Generating symbol file drivers/librte_crypto_cnxk.so.22.0.p/librte_crypto_cnxk.so.22.0.symbols
[2527/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2528/2790] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2529/2790] Compiling C object drivers/librte_crypto_dpaa_sec.so.22.0.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2530/2790] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2531/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2532/2790] Linking static target drivers/librte_crypto_dpaa_sec.a
[2533/2790] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2534/2790] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2535/2790] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2536/2790] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2537/2790] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2538/2790] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2539/2790] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2540/2790] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2541/2790] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2542/2790] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2543/2790] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2544/2790] Linking target drivers/librte_crypto_dpaa2_sec.so.22.0
[2545/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2546/2790] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2547/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2548/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2549/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2550/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2551/2790] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2552/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2553/2790] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2554/2790] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2555/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2556/2790] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2557/2790] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2558/2790] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2559/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2560/2790] Compiling C object app/test/dpdk-test.p/commands.c.o
[2561/2790] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2562/2790] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2563/2790] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2564/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2565/2790] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2566/2790] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2567/2790] Linking target drivers/librte_baseband_null.so.22.0
[2568/2790] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2569/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2570/2790] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2571/2790] Linking static target drivers/libtmp_rte_event_dsw.a
[2572/2790] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2573/2790] Linking target drivers/librte_crypto_dpaa_sec.so.22.0
[2574/2790] Compiling C object drivers/librte_crypto_octeontx2.so.22.0.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2575/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2576/2790] Linking static target drivers/librte_crypto_octeontx2.a
[2577/2790] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2578/2790] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.22.0.p/librte_crypto_dpaa2_sec.so.22.0.symbols
[2579/2790] Linking target drivers/librte_event_dpaa2.so.22.0
[2580/2790] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2581/2790] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2582/2790] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2583/2790] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2584/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2585/2790] Generating rte_event_dsw.pmd.c with a custom command
[2586/2790] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2587/2790] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2588/2790] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2589/2790] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2590/2790] Linking static target drivers/librte_event_dsw.a
[2591/2790] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2592/2790] Compiling C object drivers/librte_event_dsw.so.22.0.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2593/2790] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2594/2790] Linking target drivers/librte_baseband_acc100.so.22.0
[2595/2790] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2596/2790] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2597/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2598/2790] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2599/2790] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2600/2790] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2601/2790] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2602/2790] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2603/2790] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2604/2790] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2605/2790] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2606/2790] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2607/2790] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2608/2790] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2609/2790] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2610/2790] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2611/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq.c.o
[2612/2790] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2613/2790] Compiling C object drivers/librte_baseband_turbo_sw.so.22.0.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2614/2790] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2615/2790] Linking static target drivers/librte_baseband_turbo_sw.a
[2616/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2617/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2618/2790] Compiling C object app/test/dpdk-test.p/test_pflock.c.o
[2619/2790] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2620/2790] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2621/2790] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2622/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2623/2790] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2624/2790] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2625/2790] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2626/2790] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2627/2790] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2628/2790] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2629/2790] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2630/2790] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2631/2790] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2632/2790] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2633/2790] Linking target drivers/librte_crypto_octeontx2.so.22.0
[2634/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2635/2790] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2636/2790] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2637/2790] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2638/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2639/2790] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2640/2790] Generating symbol file drivers/librte_crypto_dpaa_sec.so.22.0.p/librte_crypto_dpaa_sec.so.22.0.symbols
[2641/2790] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2642/2790] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2643/2790] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2644/2790] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2645/2790] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2646/2790] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2647/2790] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2648/2790] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2649/2790] Linking target drivers/librte_event_dpaa.so.22.0
[2650/2790] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2651/2790] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2652/2790] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2653/2790] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2654/2790] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2655/2790] Generating rte_kni_makefile with a custom command
[2656/2790] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2657/2790] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2658/2790] Generating igb_uio_makefile with a custom command
[2659/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2660/2790] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2661/2790] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2662/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_tmo.c.o
[2663/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2664/2790] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2665/2790] Linking static target drivers/libtmp_rte_event_sw.a
[2666/2790] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2667/2790] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2668/2790] Linking target drivers/librte_baseband_turbo_sw.so.22.0
[2669/2790] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2670/2790] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2671/2790] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2672/2790] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2673/2790] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2674/2790] Linking target drivers/librte_event_dsw.so.22.0
[2675/2790] Generating symbol file drivers/librte_crypto_octeontx2.so.22.0.p/librte_crypto_octeontx2.so.22.0.symbols
[2676/2790] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2677/2790] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2678/2790] Generating rte_event_sw.pmd.c with a custom command
[2679/2790] Compiling C object drivers/librte_event_sw.so.22.0.p/meson-generated_.._rte_event_sw.pmd.c.o
[2680/2790] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2681/2790] Linking static target drivers/librte_event_sw.a
[2682/2790] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2683/2790] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2684/2790] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2685/2790] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2686/2790] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2687/2790] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2688/2790] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2689/2790] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2690/2790] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2691/2790] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2692/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_ca.c.o
[2693/2790] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2694/2790] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2695/2790] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2696/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2697/2790] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2698/2790] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2699/2790] Compiling C object app/test/dpdk-test.p/test_cksum.c.o
[2700/2790] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2701/2790] Linking target drivers/librte_event_sw.so.22.0
[2702/2790] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2703/2790] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2704/2790] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2705/2790] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2706/2790] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2707/2790] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2708/2790] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2709/2790] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2710/2790] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2711/2790] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2712/2790] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2713/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_ca.c.o
[2714/2790] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2715/2790] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2716/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2717/2790] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2718/2790] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2719/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_tx_enq_seg.c.o
[2720/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2721/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2722/2790] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2723/2790] Generating igb_uio with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-86-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC [M]  /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/linux-headers-5.4.0-86-generic'
[2724/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2725/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_ca.c.o
[2726/2790] Generating rte_net_octeontx2.pmd.c with a custom command
[2727/2790] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2728/2790] Compiling C object drivers/librte_net_octeontx2.so.22.0.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2729/2790] Linking static target drivers/librte_net_octeontx2.a
[2730/2790] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-86-generic'
  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 [M]  /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/linux-headers-5.4.0-86-generic'
[2731/2790] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2732/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2733/2790] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2734/2790] Linking target drivers/librte_net_octeontx2.so.22.0
[2735/2790] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2736/2790] Generating rte_crypto_octeontx.pmd.c with a custom command
[2737/2790] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2738/2790] Compiling C object drivers/librte_crypto_octeontx.so.22.0.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2739/2790] Linking static target drivers/librte_crypto_octeontx.a
[2740/2790] Generating symbol file drivers/librte_net_octeontx2.so.22.0.p/librte_net_octeontx2.so.22.0.symbols
[2741/2790] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2742/2790] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2743/2790] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2744/2790] Linking target drivers/librte_crypto_octeontx.so.22.0
[2745/2790] Generating symbol file drivers/librte_crypto_octeontx.so.22.0.p/librte_crypto_octeontx.so.22.0.symbols
[2746/2790] Linking target drivers/librte_event_octeontx.so.22.0
[2747/2790] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2748/2790] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2749/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2750/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_table_action.c.o
[2751/2790] Linking static target lib/librte_pipeline.a
[2752/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_tx_enq.c.o
[2753/2790] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2754/2790] Linking target lib/librte_pipeline.so.22.0
[2755/2790] Generating symbol file lib/librte_pipeline.so.22.0.p/librte_pipeline.so.22.0.symbols
[2756/2790] Linking target drivers/librte_net_softnic.so.22.0
[2757/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_tx_enq_seg.c.o
[2758/2790] Linking static target drivers/libtmp_rte_event_cnxk.a
[2759/2790] Generating rte_event_cnxk.pmd.c with a custom command
[2760/2790] Compiling C object drivers/librte_event_cnxk.a.p/meson-generated_.._rte_event_cnxk.pmd.c.o
[2761/2790] Compiling C object drivers/librte_event_cnxk.so.22.0.p/meson-generated_.._rte_event_cnxk.pmd.c.o
[2762/2790] Linking static target drivers/librte_event_cnxk.a
[2763/2790] Generating rte_event_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[2764/2790] Linking target drivers/librte_event_cnxk.so.22.0
[2765/2790] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2766/2790] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2767/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2768/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2769/2790] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2770/2790] Generating rte_event_octeontx2.pmd.c with a custom command
[2771/2790] Compiling C object drivers/librte_event_octeontx2.so.22.0.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2772/2790] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2773/2790] Linking static target drivers/librte_event_octeontx2.a
[2774/2790] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2775/2790] Linking target drivers/librte_event_octeontx2.so.22.0
[2776/2790] Linking target app/dpdk-test-crypto-perf
[2777/2790] Linking target app/dpdk-test-cmdline
[2778/2790] Linking target app/test/dpdk-test
[2779/2790] Linking target app/dpdk-test-bbdev
[2780/2790] Linking target app/dpdk-pdump
[2781/2790] Linking target app/dpdk-test-acl
[2782/2790] Linking target app/dpdk-test-fib
[2783/2790] Linking target app/dpdk-proc-info
[2784/2790] Linking target app/dpdk-test-compress-perf
[2785/2790] Linking target app/dpdk-test-regex
[2786/2790] Linking target app/dpdk-test-sad
[2787/2790] Linking target app/dpdk-test-pipeline
[2788/2790] Linking target app/dpdk-test-eventdev
[2789/2790] Linking target app/dpdk-test-flow-perf
[2790/2790] Linking target app/dpdk-testpmd
30/09/2021 19:10:42             dut.10.240.183.151: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
30/09/2021 19:10:42             dut.10.240.183.151: ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
30/09/2021 19:10:42             dut.10.240.183.151: mkdir -p x86_64-native-linuxapp-gcc/kmod
30/09/2021 19:10:42             dut.10.240.183.151: 
30/09/2021 19:10:42             dut.10.240.183.151: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
30/09/2021 19:10:42             dut.10.240.183.151: 
30/09/2021 19:10:42             dut.10.240.183.151: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
30/09/2021 19:10:42             dut.10.240.183.151: 
30/09/2021 19:10:42             dut.10.240.183.151: x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -n 4 -a 0000:82:00.0 -a 0000:82:00.1 --file-prefix=dpdk_9380_20210930190846   -- -i --disable-rss --rxq=128 --txq=128 --portmask=0x3 --nb-cores=4 --total-num-mbufs=263168
30/09/2021 19:10:45             dut.10.240.183.151: EAL: Detected CPU lcores: 72
EAL: Detected NUMA nodes: 2
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/dpdk_9380_20210930190846/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: VFIO support initialized
EAL: Using IOMMU type 1 (Type 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(2)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:10fb) device: 0000:82:00.0 (socket 1)
EAL: Ignore mapping IO port bar(1)
EAL: Ignore mapping IO port bar(2)
EAL: Ignore mapping IO port bar(5)
EAL: Probe PCI driver: net_ixgbe (8086:10fb) device: 0000:82:00.1 (socket 1)
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=263168, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mb_pool_1>: n=263168, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc
Configuring Port 0 (socket 1)
Port 0: 90:E2:BA:36:99:34
Configuring Port 1 (socket 1)
Port 1: 90:E2:BA:36:99:35
Checking link statuses...
Done
30/09/2021 19:10:55             dut.10.240.183.151: set stat_qmap rx 0 0 0
30/09/2021 19:10:55             dut.10.240.183.151: 
30/09/2021 19:10:55             dut.10.240.183.151: set stat_qmap rx 1 0 0
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: vlan set strip off 0
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: vlan set strip off 1
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: vlan set filter off 0
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: vlan set filter off 1
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: set stat_qmap rx 0 64 1
30/09/2021 19:10:56             dut.10.240.183.151: 
30/09/2021 19:10:56             dut.10.240.183.151: flow create 0 ingress pattern eth / ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is 1 src is 1 / end actions queue index 64 / end
30/09/2021 19:10:56             dut.10.240.183.151: 
Flow rule #0 created
30/09/2021 19:10:56             dut.10.240.183.151: start
30/09/2021 19:10:56             dut.10.240.183.151: 
io packet forwarding - ports=2 - cores=4 - streams=256 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=16 (socket 1) -> TX P=1/Q=16 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=1/Q=17 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=1/Q=18 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=1/Q=19 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=1/Q=20 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=1/Q=21 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=1/Q=22 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=1/Q=23 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=1/Q=24 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=1/Q=25 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=1/Q=26 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=1/Q=27 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=1/Q=28 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=1/Q=29 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=1/Q=30 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=1/Q=31 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=32 (socket 1) -> TX P=1/Q=32 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=32 (socket 1) -> TX P=0/Q=32 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=33 (socket 1) -> TX P=1/Q=33 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=33 (socket 1) -> TX P=0/Q=33 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=34 (socket 1) -> TX P=1/Q=34 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=34 (socket 1) -> TX P=0/Q=34 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=35 (socket 1) -> TX P=1/Q=35 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=35 (socket 1) -> TX P=0/Q=35 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=36 (socket 1) -> TX P=1/Q=36 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=36 (socket 1) -> TX P=0/Q=36 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=37 (socket 1) -> TX P=1/Q=37 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=37 (socket 1) -> TX P=0/Q=37 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=38 (socket 1) -> TX P=1/Q=38 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=38 (socket 1) -> TX P=0/Q=38 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=39 (socket 1) -> TX P=1/Q=39 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=39 (socket 1) -> TX P=0/Q=39 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=40 (socket 1) -> TX P=1/Q=40 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=40 (socket 1) -> TX P=0/Q=40 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=41 (socket 1) -> TX P=1/Q=41 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=41 (socket 1) -> TX P=0/Q=41 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=42 (socket 1) -> TX P=1/Q=42 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=42 (socket 1) -> TX P=0/Q=42 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=43 (socket 1) -> TX P=1/Q=43 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=43 (socket 1) -> TX P=0/Q=43 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=44 (socket 1) -> TX P=1/Q=44 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=44 (socket 1) -> TX P=0/Q=44 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=45 (socket 1) -> TX P=1/Q=45 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=45 (socket 1) -> TX P=0/Q=45 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=46 (socket 1) -> TX P=1/Q=46 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=46 (socket 1) -> TX P=0/Q=46 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=47 (socket 1) -> TX P=1/Q=47 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=47 (socket 1) -> TX P=0/Q=47 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=48 (socket 1) -> TX P=1/Q=48 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=48 (socket 1) -> TX P=0/Q=48 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=49 (socket 1) -> TX P=1/Q=49 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=49 (socket 1) -> TX P=0/Q=49 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=50 (socket 1) -> TX P=1/Q=50 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=50 (socket 1) -> TX P=0/Q=50 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=51 (socket 1) -> TX P=1/Q=51 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=51 (socket 1) -> TX P=0/Q=51 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=52 (socket 1) -> TX P=1/Q=52 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=52 (socket 1) -> TX P=0/Q=52 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=53 (socket 1) -> TX P=1/Q=53 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=53 (socket 1) -> TX P=0/Q=53 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=54 (socket 1) -> TX P=1/Q=54 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=54 (socket 1) -> TX P=0/Q=54 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=55 (socket 1) -> TX P=1/Q=55 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=55 (socket 1) -> TX P=0/Q=55 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=56 (socket 1) -> TX P=1/Q=56 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=56 (socket 1) -> TX P=0/Q=56 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=57 (socket 1) -> TX P=1/Q=57 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=57 (socket 1) -> TX P=0/Q=57 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=58 (socket 1) -> TX P=1/Q=58 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=58 (socket 1) -> TX P=0/Q=58 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=59 (socket 1) -> TX P=1/Q=59 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=59 (socket 1) -> TX P=0/Q=59 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=60 (socket 1) -> TX P=1/Q=60 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=60 (socket 1) -> TX P=0/Q=60 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=61 (socket 1) -> TX P=1/Q=61 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=61 (socket 1) -> TX P=0/Q=61 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=62 (socket 1) -> TX P=1/Q=62 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=62 (socket 1) -> TX P=0/Q=62 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=63 (socket 1) -> TX P=1/Q=63 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=63 (socket 1) -> TX P=0/Q=63 (socket 1) peer=02:00:00:00:00:00
Logical Core 4 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=64 (socket 1) -> TX P=1/Q=64 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=64 (socket 1) -> TX P=0/Q=64 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=65 (socket 1) -> TX P=1/Q=65 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=65 (socket 1) -> TX P=0/Q=65 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=66 (socket 1) -> TX P=1/Q=66 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=66 (socket 1) -> TX P=0/Q=66 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=67 (socket 1) -> TX P=1/Q=67 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=67 (socket 1) -> TX P=0/Q=67 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=68 (socket 1) -> TX P=1/Q=68 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=68 (socket 1) -> TX P=0/Q=68 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=69 (socket 1) -> TX P=1/Q=69 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=69 (socket 1) -> TX P=0/Q=69 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=70 (socket 1) -> TX P=1/Q=70 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=70 (socket 1) -> TX P=0/Q=70 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=71 (socket 1) -> TX P=1/Q=71 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=71 (socket 1) -> TX P=0/Q=71 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=72 (socket 1) -> TX P=1/Q=72 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=72 (socket 1) -> TX P=0/Q=72 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=73 (socket 1) -> TX P=1/Q=73 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=73 (socket 1) -> TX P=0/Q=73 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=74 (socket 1) -> TX P=1/Q=74 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=74 (socket 1) -> TX P=0/Q=74 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=75 (socket 1) -> TX P=1/Q=75 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=75 (socket 1) -> TX P=0/Q=75 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=76 (socket 1) -> TX P=1/Q=76 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=76 (socket 1) -> TX P=0/Q=76 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=77 (socket 1) -> TX P=1/Q=77 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=77 (socket 1) -> TX P=0/Q=77 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=78 (socket 1) -> TX P=1/Q=78 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=78 (socket 1) -> TX P=0/Q=78 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=79 (socket 1) -> TX P=1/Q=79 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=79 (socket 1) -> TX P=0/Q=79 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=80 (socket 1) -> TX P=1/Q=80 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=80 (socket 1) -> TX P=0/Q=80 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=81 (socket 1) -> TX P=1/Q=81 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=81 (socket 1) -> TX P=0/Q=81 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=82 (socket 1) -> TX P=1/Q=82 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=82 (socket 1) -> TX P=0/Q=82 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=83 (socket 1) -> TX P=1/Q=83 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=83 (socket 1) -> TX P=0/Q=83 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=84 (socket 1) -> TX P=1/Q=84 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=84 (socket 1) -> TX P=0/Q=84 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=85 (socket 1) -> TX P=1/Q=85 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=85 (socket 1) -> TX P=0/Q=85 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=86 (socket 1) -> TX P=1/Q=86 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=86 (socket 1) -> TX P=0/Q=86 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=87 (socket 1) -> TX P=1/Q=87 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=87 (socket 1) -> TX P=0/Q=87 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=88 (socket 1) -> TX P=1/Q=88 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=88 (socket 1) -> TX P=0/Q=88 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=89 (socket 1) -> TX P=1/Q=89 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=89 (socket 1) -> TX P=0/Q=89 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=90 (socket 1) -> TX P=1/Q=90 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=90 (socket 1) -> TX P=0/Q=90 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=91 (socket 1) -> TX P=1/Q=91 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=91 (socket 1) -> TX P=0/Q=91 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=92 (socket 1) -> TX P=1/Q=92 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=92 (socket 1) -> TX P=0/Q=92 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=93 (socket 1) -> TX P=1/Q=93 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=93 (socket 1) -> TX P=0/Q=93 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=94 (socket 1) -> TX P=1/Q=94 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=94 (socket 1) -> TX P=0/Q=94 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=95 (socket 1) -> TX P=1/Q=95 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=95 (socket 1) -> TX P=0/Q=95 (socket 1) peer=02:00:00:00:00:00
Logical Core 5 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=96 (socket 1) -> TX P=1/Q=96 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=96 (socket 1) -> TX P=0/Q=96 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=97 (socket 1) -> TX P=1/Q=97 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=97 (socket 1) -> TX P=0/Q=97 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=98 (socket 1) -> TX P=1/Q=98 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=98 (socket 1) -> TX P=0/Q=98 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=99 (socket 1) -> TX P=1/Q=99 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=99 (socket 1) -> TX P=0/Q=99 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=100 (socket 1) -> TX P=1/Q=100 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=100 (socket 1) -> TX P=0/Q=100 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=101 (socket 1) -> TX P=1/Q=101 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=101 (socket 1) -> TX P=0/Q=101 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=102 (socket 1) -> TX P=1/Q=102 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=102 (socket 1) -> TX P=0/Q=102 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=103 (socket 1) -> TX P=1/Q=103 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=103 (socket 1) -> TX P=0/Q=103 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=104 (socket 1) -> TX P=1/Q=104 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=104 (socket 1) -> TX P=0/Q=104 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=105 (socket 1) -> TX P=1/Q=105 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=105 (socket 1) -> TX P=0/Q=105 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=106 (socket 1) -> TX P=1/Q=106 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=106 (socket 1) -> TX P=0/Q=106 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=107 (socket 1) -> TX P=1/Q=107 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=107 (socket 1) -> TX P=0/Q=107 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=108 (socket 1) -> TX P=1/Q=108 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=108 (socket 1) -> TX P=0/Q=108 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=109 (socket 1) -> TX P=1/Q=109 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=109 (socket 1) -> TX P=0/Q=109 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=110 (socket 1) -> TX P=1/Q=110 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=110 (socket 1) -> TX P=0/Q=110 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=111 (socket 1) -> TX P=1/Q=111 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=111 (socket 1) -> TX P=0/Q=111 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=112 (socket 1) -> TX P=1/Q=112 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=112 (socket 1) -> TX P=0/Q=112 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=113 (socket 1) -> TX P=1/Q=113 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=113 (socket 1) -> TX P=0/Q=113 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=114 (socket 1) -> TX P=1/Q=114 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=114 (socket 1) -> TX P=0/Q=114 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=115 (socket 1) -> TX P=1/Q=115 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=115 (socket 1) -> TX P=0/Q=115 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=116 (socket 1) -> TX P=1/Q=116 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=116 (socket 1) -> TX P=0/Q=116 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=117 (socket 1) -> TX P=1/Q=117 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=117 (socket 1) -> TX P=0/Q=117 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=118 (socket 1) -> TX P=1/Q=118 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=118 (socket 1) -> TX P=0/Q=118 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=119 (socket 1) -> TX P=1/Q=119 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=119 (socket 1) -> TX P=0/Q=119 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=120 (socket 1) -> TX P=1/Q=120 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=120 (socket 1) -> TX P=0/Q=120 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=121 (socket 1) -> TX P=1/Q=121 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=121 (socket 1) -> TX P=0/Q=121 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=122 (socket 1) -> TX P=1/Q=122 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=122 (socket 1) -> TX P=0/Q=122 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=123 (socket 1) -> TX P=1/Q=123 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=123 (socket 1) -> TX P=0/Q=123 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=124 (socket 1) -> TX P=1/Q=124 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=124 (socket 1) -> TX P=0/Q=124 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=125 (socket 1) -> TX P=1/Q=125 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=125 (socket 1) -> TX P=0/Q=125 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=126 (socket 1) -> TX P=1/Q=126 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=126 (socket 1) -> TX P=0/Q=126 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=127 (socket 1) -> TX P=1/Q=127 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=127 (socket 1) -> TX P=0/Q=127 (socket 1) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=4 - nb forwarding ports=2
  port 0: RX queue number: 128 Tx queue number: 128
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=256 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=256 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 128 Tx queue number: 128
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=256 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=256 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
30/09/2021 19:10:57             dut.10.240.183.151: stop
30/09/2021 19:10:57             dut.10.240.183.151: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=64 -> TX Port= 1/Queue=64 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
30/09/2021 19:10:57             dut.10.240.183.151: set stat_qmap rx 0 127 2
30/09/2021 19:10:57             dut.10.240.183.151: 
30/09/2021 19:10:57             dut.10.240.183.151: flow create 0 ingress pattern eth / ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is 2 src is 1 / end actions queue index 127 / end
30/09/2021 19:10:57             dut.10.240.183.151: 
Flow rule #1 created
30/09/2021 19:10:57             dut.10.240.183.151: start
30/09/2021 19:10:57             dut.10.240.183.151: 
io packet forwarding - ports=2 - cores=4 - streams=256 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=0 (socket 1) -> TX P=1/Q=0 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=0 (socket 1) -> TX P=0/Q=0 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 1) -> TX P=1/Q=1 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=1 (socket 1) -> TX P=0/Q=1 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 1) -> TX P=1/Q=2 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=2 (socket 1) -> TX P=0/Q=2 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 1) -> TX P=1/Q=3 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=3 (socket 1) -> TX P=0/Q=3 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 1) -> TX P=1/Q=4 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=4 (socket 1) -> TX P=0/Q=4 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 1) -> TX P=1/Q=5 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=5 (socket 1) -> TX P=0/Q=5 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 1) -> TX P=1/Q=6 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=6 (socket 1) -> TX P=0/Q=6 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 1) -> TX P=1/Q=7 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=7 (socket 1) -> TX P=0/Q=7 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 1) -> TX P=1/Q=8 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=8 (socket 1) -> TX P=0/Q=8 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 1) -> TX P=1/Q=9 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=9 (socket 1) -> TX P=0/Q=9 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 1) -> TX P=1/Q=10 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=10 (socket 1) -> TX P=0/Q=10 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 1) -> TX P=1/Q=11 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=11 (socket 1) -> TX P=0/Q=11 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 1) -> TX P=1/Q=12 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=12 (socket 1) -> TX P=0/Q=12 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 1) -> TX P=1/Q=13 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=13 (socket 1) -> TX P=0/Q=13 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 1) -> TX P=1/Q=14 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=14 (socket 1) -> TX P=0/Q=14 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 1) -> TX P=1/Q=15 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=15 (socket 1) -> TX P=0/Q=15 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=16 (socket 1) -> TX P=1/Q=16 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=16 (socket 1) -> TX P=0/Q=16 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=17 (socket 1) -> TX P=1/Q=17 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=17 (socket 1) -> TX P=0/Q=17 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=18 (socket 1) -> TX P=1/Q=18 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=18 (socket 1) -> TX P=0/Q=18 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=19 (socket 1) -> TX P=1/Q=19 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=19 (socket 1) -> TX P=0/Q=19 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=20 (socket 1) -> TX P=1/Q=20 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=20 (socket 1) -> TX P=0/Q=20 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=21 (socket 1) -> TX P=1/Q=21 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=21 (socket 1) -> TX P=0/Q=21 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=22 (socket 1) -> TX P=1/Q=22 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=22 (socket 1) -> TX P=0/Q=22 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=23 (socket 1) -> TX P=1/Q=23 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=23 (socket 1) -> TX P=0/Q=23 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=24 (socket 1) -> TX P=1/Q=24 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=24 (socket 1) -> TX P=0/Q=24 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=25 (socket 1) -> TX P=1/Q=25 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=25 (socket 1) -> TX P=0/Q=25 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=26 (socket 1) -> TX P=1/Q=26 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=26 (socket 1) -> TX P=0/Q=26 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=27 (socket 1) -> TX P=1/Q=27 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=27 (socket 1) -> TX P=0/Q=27 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=28 (socket 1) -> TX P=1/Q=28 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=28 (socket 1) -> TX P=0/Q=28 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=29 (socket 1) -> TX P=1/Q=29 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=29 (socket 1) -> TX P=0/Q=29 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=30 (socket 1) -> TX P=1/Q=30 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=30 (socket 1) -> TX P=0/Q=30 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=31 (socket 1) -> TX P=1/Q=31 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=31 (socket 1) -> TX P=0/Q=31 (socket 1) peer=02:00:00:00:00:00
Logical Core 3 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=32 (socket 1) -> TX P=1/Q=32 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=32 (socket 1) -> TX P=0/Q=32 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=33 (socket 1) -> TX P=1/Q=33 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=33 (socket 1) -> TX P=0/Q=33 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=34 (socket 1) -> TX P=1/Q=34 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=34 (socket 1) -> TX P=0/Q=34 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=35 (socket 1) -> TX P=1/Q=35 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=35 (socket 1) -> TX P=0/Q=35 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=36 (socket 1) -> TX P=1/Q=36 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=36 (socket 1) -> TX P=0/Q=36 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=37 (socket 1) -> TX P=1/Q=37 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=37 (socket 1) -> TX P=0/Q=37 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=38 (socket 1) -> TX P=1/Q=38 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=38 (socket 1) -> TX P=0/Q=38 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=39 (socket 1) -> TX P=1/Q=39 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=39 (socket 1) -> TX P=0/Q=39 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=40 (socket 1) -> TX P=1/Q=40 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=40 (socket 1) -> TX P=0/Q=40 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=41 (socket 1) -> TX P=1/Q=41 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=41 (socket 1) -> TX P=0/Q=41 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=42 (socket 1) -> TX P=1/Q=42 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=42 (socket 1) -> TX P=0/Q=42 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=43 (socket 1) -> TX P=1/Q=43 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=43 (socket 1) -> TX P=0/Q=43 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=44 (socket 1) -> TX P=1/Q=44 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=44 (socket 1) -> TX P=0/Q=44 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=45 (socket 1) -> TX P=1/Q=45 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=45 (socket 1) -> TX P=0/Q=45 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=46 (socket 1) -> TX P=1/Q=46 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=46 (socket 1) -> TX P=0/Q=46 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=47 (socket 1) -> TX P=1/Q=47 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=47 (socket 1) -> TX P=0/Q=47 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=48 (socket 1) -> TX P=1/Q=48 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=48 (socket 1) -> TX P=0/Q=48 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=49 (socket 1) -> TX P=1/Q=49 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=49 (socket 1) -> TX P=0/Q=49 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=50 (socket 1) -> TX P=1/Q=50 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=50 (socket 1) -> TX P=0/Q=50 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=51 (socket 1) -> TX P=1/Q=51 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=51 (socket 1) -> TX P=0/Q=51 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=52 (socket 1) -> TX P=1/Q=52 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=52 (socket 1) -> TX P=0/Q=52 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=53 (socket 1) -> TX P=1/Q=53 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=53 (socket 1) -> TX P=0/Q=53 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=54 (socket 1) -> TX P=1/Q=54 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=54 (socket 1) -> TX P=0/Q=54 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=55 (socket 1) -> TX P=1/Q=55 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=55 (socket 1) -> TX P=0/Q=55 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=56 (socket 1) -> TX P=1/Q=56 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=56 (socket 1) -> TX P=0/Q=56 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=57 (socket 1) -> TX P=1/Q=57 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=57 (socket 1) -> TX P=0/Q=57 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=58 (socket 1) -> TX P=1/Q=58 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=58 (socket 1) -> TX P=0/Q=58 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=59 (socket 1) -> TX P=1/Q=59 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=59 (socket 1) -> TX P=0/Q=59 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=60 (socket 1) -> TX P=1/Q=60 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=60 (socket 1) -> TX P=0/Q=60 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=61 (socket 1) -> TX P=1/Q=61 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=61 (socket 1) -> TX P=0/Q=61 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=62 (socket 1) -> TX P=1/Q=62 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=62 (socket 1) -> TX P=0/Q=62 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=63 (socket 1) -> TX P=1/Q=63 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=63 (socket 1) -> TX P=0/Q=63 (socket 1) peer=02:00:00:00:00:00
Logical Core 4 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=64 (socket 1) -> TX P=1/Q=64 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=64 (socket 1) -> TX P=0/Q=64 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=65 (socket 1) -> TX P=1/Q=65 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=65 (socket 1) -> TX P=0/Q=65 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=66 (socket 1) -> TX P=1/Q=66 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=66 (socket 1) -> TX P=0/Q=66 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=67 (socket 1) -> TX P=1/Q=67 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=67 (socket 1) -> TX P=0/Q=67 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=68 (socket 1) -> TX P=1/Q=68 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=68 (socket 1) -> TX P=0/Q=68 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=69 (socket 1) -> TX P=1/Q=69 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=69 (socket 1) -> TX P=0/Q=69 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=70 (socket 1) -> TX P=1/Q=70 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=70 (socket 1) -> TX P=0/Q=70 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=71 (socket 1) -> TX P=1/Q=71 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=71 (socket 1) -> TX P=0/Q=71 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=72 (socket 1) -> TX P=1/Q=72 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=72 (socket 1) -> TX P=0/Q=72 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=73 (socket 1) -> TX P=1/Q=73 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=73 (socket 1) -> TX P=0/Q=73 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=74 (socket 1) -> TX P=1/Q=74 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=74 (socket 1) -> TX P=0/Q=74 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=75 (socket 1) -> TX P=1/Q=75 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=75 (socket 1) -> TX P=0/Q=75 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=76 (socket 1) -> TX P=1/Q=76 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=76 (socket 1) -> TX P=0/Q=76 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=77 (socket 1) -> TX P=1/Q=77 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=77 (socket 1) -> TX P=0/Q=77 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=78 (socket 1) -> TX P=1/Q=78 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=78 (socket 1) -> TX P=0/Q=78 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=79 (socket 1) -> TX P=1/Q=79 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=79 (socket 1) -> TX P=0/Q=79 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=80 (socket 1) -> TX P=1/Q=80 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=80 (socket 1) -> TX P=0/Q=80 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=81 (socket 1) -> TX P=1/Q=81 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=81 (socket 1) -> TX P=0/Q=81 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=82 (socket 1) -> TX P=1/Q=82 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=82 (socket 1) -> TX P=0/Q=82 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=83 (socket 1) -> TX P=1/Q=83 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=83 (socket 1) -> TX P=0/Q=83 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=84 (socket 1) -> TX P=1/Q=84 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=84 (socket 1) -> TX P=0/Q=84 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=85 (socket 1) -> TX P=1/Q=85 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=85 (socket 1) -> TX P=0/Q=85 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=86 (socket 1) -> TX P=1/Q=86 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=86 (socket 1) -> TX P=0/Q=86 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=87 (socket 1) -> TX P=1/Q=87 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=87 (socket 1) -> TX P=0/Q=87 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=88 (socket 1) -> TX P=1/Q=88 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=88 (socket 1) -> TX P=0/Q=88 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=89 (socket 1) -> TX P=1/Q=89 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=89 (socket 1) -> TX P=0/Q=89 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=90 (socket 1) -> TX P=1/Q=90 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=90 (socket 1) -> TX P=0/Q=90 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=91 (socket 1) -> TX P=1/Q=91 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=91 (socket 1) -> TX P=0/Q=91 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=92 (socket 1) -> TX P=1/Q=92 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=92 (socket 1) -> TX P=0/Q=92 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=93 (socket 1) -> TX P=1/Q=93 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=93 (socket 1) -> TX P=0/Q=93 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=94 (socket 1) -> TX P=1/Q=94 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=94 (socket 1) -> TX P=0/Q=94 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=95 (socket 1) -> TX P=1/Q=95 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=95 (socket 1) -> TX P=0/Q=95 (socket 1) peer=02:00:00:00:00:00
Logical Core 5 (socket 0) forwards packets on 64 streams:
  RX P=0/Q=96 (socket 1) -> TX P=1/Q=96 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=96 (socket 1) -> TX P=0/Q=96 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=97 (socket 1) -> TX P=1/Q=97 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=97 (socket 1) -> TX P=0/Q=97 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=98 (socket 1) -> TX P=1/Q=98 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=98 (socket 1) -> TX P=0/Q=98 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=99 (socket 1) -> TX P=1/Q=99 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=99 (socket 1) -> TX P=0/Q=99 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=100 (socket 1) -> TX P=1/Q=100 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=100 (socket 1) -> TX P=0/Q=100 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=101 (socket 1) -> TX P=1/Q=101 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=101 (socket 1) -> TX P=0/Q=101 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=102 (socket 1) -> TX P=1/Q=102 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=102 (socket 1) -> TX P=0/Q=102 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=103 (socket 1) -> TX P=1/Q=103 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=103 (socket 1) -> TX P=0/Q=103 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=104 (socket 1) -> TX P=1/Q=104 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=104 (socket 1) -> TX P=0/Q=104 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=105 (socket 1) -> TX P=1/Q=105 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=105 (socket 1) -> TX P=0/Q=105 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=106 (socket 1) -> TX P=1/Q=106 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=106 (socket 1) -> TX P=0/Q=106 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=107 (socket 1) -> TX P=1/Q=107 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=107 (socket 1) -> TX P=0/Q=107 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=108 (socket 1) -> TX P=1/Q=108 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=108 (socket 1) -> TX P=0/Q=108 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=109 (socket 1) -> TX P=1/Q=109 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=109 (socket 1) -> TX P=0/Q=109 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=110 (socket 1) -> TX P=1/Q=110 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=110 (socket 1) -> TX P=0/Q=110 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=111 (socket 1) -> TX P=1/Q=111 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=111 (socket 1) -> TX P=0/Q=111 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=112 (socket 1) -> TX P=1/Q=112 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=112 (socket 1) -> TX P=0/Q=112 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=113 (socket 1) -> TX P=1/Q=113 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=113 (socket 1) -> TX P=0/Q=113 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=114 (socket 1) -> TX P=1/Q=114 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=114 (socket 1) -> TX P=0/Q=114 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=115 (socket 1) -> TX P=1/Q=115 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=115 (socket 1) -> TX P=0/Q=115 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=116 (socket 1) -> TX P=1/Q=116 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=116 (socket 1) -> TX P=0/Q=116 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=117 (socket 1) -> TX P=1/Q=117 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=117 (socket 1) -> TX P=0/Q=117 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=118 (socket 1) -> TX P=1/Q=118 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=118 (socket 1) -> TX P=0/Q=118 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=119 (socket 1) -> TX P=1/Q=119 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=119 (socket 1) -> TX P=0/Q=119 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=120 (socket 1) -> TX P=1/Q=120 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=120 (socket 1) -> TX P=0/Q=120 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=121 (socket 1) -> TX P=1/Q=121 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=121 (socket 1) -> TX P=0/Q=121 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=122 (socket 1) -> TX P=1/Q=122 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=122 (socket 1) -> TX P=0/Q=122 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=123 (socket 1) -> TX P=1/Q=123 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=123 (socket 1) -> TX P=0/Q=123 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=124 (socket 1) -> TX P=1/Q=124 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=124 (socket 1) -> TX P=0/Q=124 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=125 (socket 1) -> TX P=1/Q=125 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=125 (socket 1) -> TX P=0/Q=125 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=126 (socket 1) -> TX P=1/Q=126 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=126 (socket 1) -> TX P=0/Q=126 (socket 1) peer=02:00:00:00:00:00
  RX P=0/Q=127 (socket 1) -> TX P=1/Q=127 (socket 1) peer=02:00:00:00:00:01
  RX P=1/Q=127 (socket 1) -> TX P=0/Q=127 (socket 1) peer=02:00:00:00:00:00

  io packet forwarding packets/burst=32
  nb forwarding cores=4 - nb forwarding ports=2
  port 0: RX queue number: 128 Tx queue number: 128
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=256 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=256 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
  port 1: RX queue number: 128 Tx queue number: 128
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=256 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=256 - TX free threshold=32
      TX threshold registers: pthresh=32 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
30/09/2021 19:10:58             dut.10.240.183.151: stop
30/09/2021 19:10:59             dut.10.240.183.151: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=127 -> TX Port= 1/Queue=127 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  ---------------------- Forward statistics for port 1  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 1              RX-dropped: 0             RX-total: 1
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
30/09/2021 19:10:59             dut.10.240.183.151: set stat_qmap rx 0 128 3
30/09/2021 19:10:59             dut.10.240.183.151: 
Invalid RX queue 128 (must be < nb_rxq=128)
30/09/2021 19:10:59             dut.10.240.183.151: flow create 0 ingress pattern eth / ipv4 dst is 2.2.2.5 src is 2.2.2.4 / tcp dst is 3 src is 1 / end actions queue index 128 / end
30/09/2021 19:10:59             dut.10.240.183.151: 
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create flow.: Invalid argument
30/09/2021 19:10:59             dut.10.240.183.151: quit
30/09/2021 19:11:00             dut.10.240.183.151: 

Stopping port 0...
Stopping ports...
Done

Stopping port 1...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Port 0 is closed
Done

Shutting down port 1...
Closing ports...
Port 1 is closed
Done

Bye...
30/09/2021 19:11:00             dut.10.240.183.151: sed -i -e 's/#define IXGBE_NONE_MODE_TX_NB_QUEUES 128$/#define IXGBE_NONE_MODE_TX_NB_QUEUES 64/' drivers/net/ixgbe/ixgbe_ethdev.h
30/09/2021 19:11:00             dut.10.240.183.151: 
30/09/2021 19:11:00             dut.10.240.183.151: rm -rf x86_64-native-linuxapp-gcc
30/09/2021 19:11:01             dut.10.240.183.151: 
30/09/2021 19:11:01             dut.10.240.183.151: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
30/09/2021 19:11:11             dut.10.240.183.151: The Meson build system
Version: 0.59.1
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.11.0-rc0
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Message: ## Building in Developer Mode ##
Program pkg-config found: YES (/usr/bin/pkg-config)
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)
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: YES
Has header "fdt.h" : YES 
Library libexecinfo found: NO
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency libarchive found: NO (tried pkgconfig)
Run-time dependency libbsd found: NO (tried pkgconfig)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:285: 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: YES 
Compiler for C supports arguments -Wno-packed-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers: YES 
Compiler for C supports arguments -mavx512f: YES 
Checking if "AVX512 checking" compiles: 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__" :  
Fetching value of define "__AVX512CD__" :  
Fetching value of define "__AVX512DQ__" :  
Fetching value of define "__AVX512F__" :  
Fetching value of define "__AVX512VL__" :  
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" :  
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation: YES 
Message: lib/kvargs: Defining dependency "kvargs"
Message: lib/telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
Message: lib/eal: Defining dependency "eal"
Message: lib/ring: Defining dependency "ring"
Message: lib/rcu: Defining dependency "rcu"
Message: lib/mempool: Defining dependency "mempool"
Message: lib/mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES (cached)
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/net: Defining dependency "net"
Message: lib/meter: Defining dependency "meter"
Message: lib/ethdev: Defining dependency "ethdev"
Message: lib/pci: Defining dependency "pci"
Message: lib/cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: YES 2.12
Message: lib/metrics: Defining dependency "metrics"
Message: lib/hash: Defining dependency "hash"
Message: lib/timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512VL__" :  (cached)
Fetching value of define "__AVX512CD__" :  (cached)
Fetching value of define "__AVX512BW__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512vl -mavx512cd -mavx512bw: YES 
Message: lib/acl: Defining dependency "acl"
Message: lib/bbdev: Defining dependency "bbdev"
Message: lib/bitratestats: Defining dependency "bitratestats"
Message: lib/cfgfile: Defining dependency "cfgfile"
Message: lib/compressdev: Defining dependency "compressdev"
Message: lib/cryptodev: Defining dependency "cryptodev"
Message: lib/distributor: Defining dependency "distributor"
Message: lib/efd: Defining dependency "efd"
Message: lib/eventdev: Defining dependency "eventdev"
Message: lib/gro: Defining dependency "gro"
Message: lib/gso: Defining dependency "gso"
Message: lib/ip_frag: Defining dependency "ip_frag"
Message: lib/jobstats: Defining dependency "jobstats"
Message: lib/kni: Defining dependency "kni"
Message: lib/latencystats: Defining dependency "latencystats"
Message: lib/lpm: Defining dependency "lpm"
Message: lib/member: Defining dependency "member"
Compiler for C supports arguments -Wno-cast-qual: YES 
Message: lib/power: Defining dependency "power"
Message: lib/pdump: Defining dependency "pdump"
Message: lib/rawdev: Defining dependency "rawdev"
Message: lib/regexdev: Defining dependency "regexdev"
Message: lib/rib: Defining dependency "rib"
Message: lib/reorder: Defining dependency "reorder"
Message: lib/sched: Defining dependency "sched"
Message: lib/security: Defining dependency "security"
Message: lib/stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/vhost: Defining dependency "vhost"
Message: lib/ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (cached)
Fetching value of define "__AVX512DQ__" :  (cached)
Compiler for C supports arguments -mavx512f -mavx512dq: YES 
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: lib/fib: Defining dependency "fib"
Message: lib/port: Defining dependency "port"
Message: lib/table: Defining dependency "table"
Message: lib/pipeline: Defining dependency "pipeline"
Message: lib/flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: YES 0.176
Message: lib/bpf: Defining dependency "bpf"
Message: lib/graph: Defining dependency "graph"
Message: lib/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 (cached)
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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Message: drivers/bus/auxiliary: Defining dependency "bus_auxiliary"
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"
Message: drivers/common/cnxk: Defining dependency "common_cnxk"
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)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig)
Message: drivers/common/qat: Defining dependency "common_qat"
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"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/cnxk: Defining dependency "mempool_cnxk"
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)
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"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Compiler for C supports arguments -DRTE_LIBRTE_BNXT_TF: YES 
Compiler for C supports arguments -DSUPPORT_CFA_HW_ALL=1: YES 
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/bonding: Defining dependency "net_bond"
Compiler for C supports arguments -flax-vector-conversions: YES 
Compiler for C supports arguments -Wno-strict-aliasing: YES 
Message: drivers/net/cnxk: Defining dependency "net_cnxk"
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 (cached)
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"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
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)
Fetching value of define "__AVX512F__" :  (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/i40e: Defining dependency "net_i40e"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (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/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__" :  (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"
Message: drivers/net/ionic: Defining dependency "net_ionic"
Message: drivers/net/ipn3ke: Defining dependency "net_ipn3ke"
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)
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"
Run-time dependency libmusdk found: NO (tried pkgconfig)
Run-time dependency libmusdk found: NO (tried pkgconfig)
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/ngbe: Defining dependency "net_ngbe"
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 (cached)
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/octeontx_ep: Defining dependency "net_octeontx_ep"
Message: drivers/net/pcap: Defining dependency "net_pcap"
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)
Library atomic found: YES
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig)
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/cnxk_bphy: Defining dependency "raw_cnxk_bphy"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency librt found: NO (tried pkgconfig and cmake)
Library librt found: YES
Message: drivers/raw/ifpga: Defining dependency "raw_ifpga"
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)
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)
Message: drivers/crypto/cnxk: Defining dependency "crypto_cnxk"
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
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/crypto/mlx5]: missing internal dependency "common_mlx5"
Run-time dependency libmusdk found: NO (tried pkgconfig)
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)
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)
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/compress/mlx5]: missing internal dependency "common_mlx5"
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"
Compiler for C supports arguments -flax-vector-conversions: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing: YES (cached)
Message: drivers/event/cnxk: Defining dependency "event_cnxk"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Compiler for C supports arguments -Wno-format-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
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"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
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"
Compiler for C supports arguments -Wno-format-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
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
Program touch found: YES (/usr/bin/touch)
Program make found: YES (/usr/bin/make)
Program touch found: YES (/usr/bin/touch)
Program make found: YES (/usr/bin/make)
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, cnxk, qat, sfc_efx, 
	
bus:
	auxiliary, dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, cnxk, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
	
net:
	af_packet, ark, atlantic, avp, axgbe, bnx2x, bnxt, bond, 
	cnxk, cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, 
	failsafe, fm10k, hinic, hns3, i40e, iavf, ice, igc, 
	ionic, ipn3ke, ixgbe, kni, liquidio, memif, netvsc, nfp, 
	ngbe, null, octeontx, octeontx2, octeontx_ep, pcap, pfe, qede, 
	ring, sfc, softnic, tap, thunderx, txgbe, vdev_netvsc, vhost, 
	virtio, vmxnet3, 
raw:
	cnxk_bphy, dpaa2_cmdif, dpaa2_qdma, ifpga, ioat, ntb, octeontx2_dma, octeontx2_ep, 
	skeleton, 
crypto:
	bcmfs, caam_jr, cnxk, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, 
	octeontx2, scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2, 
vdpa:
	ifc, 
event:
	cnxk, dlb2, dpaa, dpaa2, dsw, octeontx2, opdl, skeleton, 
	sw, octeontx, 
baseband:
	acc100, fpga_5gnr_fec, fpga_lte_fec, null, turbo_sw, 

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/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/szedata2:	missing dependency, "libsze2"
	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/mlx5:	missing internal dependency, "common_mlx5"
	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"
	compress/mlx5:	missing internal dependency, "common_mlx5"
	regex/mlx5:	missing internal dependency, "common_mlx5"
	vdpa/mlx5:	missing internal dependency, "common_mlx5"
	

Build targets in project: 1081

Found ninja-1.10.2.git.kitware.jobserver-1 at /usr/local/bin/ninja
30/09/2021 19:11:11             dut.10.240.183.151: ninja -C x86_64-native-linuxapp-gcc
30/09/2021 19:12:42             dut.10.240.183.151: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2790] Generating rte_kvargs_def with a custom command
[2/2790] Generating rte_kvargs_mingw with a custom command
[3/2790] Generating rte_telemetry_mingw with a custom command
[4/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_hypervisor.c.o
[5/2790] Generating rte_telemetry_def with a custom command
[6/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_errno.c.o
[7/2790] Generating rte_eal_def with a custom command
[8/2790] Generating rte_eal_mingw with a custom command
[9/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_cpuflags.c.o
[10/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_spinlock.c.o
[11/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_hypervisor.c.o
[12/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_class.c.o
[13/2790] Generating rte_ring_mingw with a custom command
[14/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_debug.c.o
[15/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_version.c.o
[16/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_string_fns.c.o
[17/2790] Generating rte_ring_def with a custom command
[18/2790] Generating rte_rcu_def with a custom command
[19/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_debug.c.o
[20/2790] Generating rte_rcu_mingw with a custom command
[21/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_reciprocal.c.o
[22/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_firmware.c.o
[23/2790] Compiling C object lib/librte_eal.a.p/eal_unix_rte_thread.c.o
[24/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_unix_timer.c.o
[25/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_cpuflags.c.o
[26/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_hexdump.c.o
[27/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_config.c.o
[28/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_cpuflags.c.o
[29/2790] Compiling C object lib/librte_kvargs.a.p/kvargs_rte_kvargs.c.o
[30/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry_data.c.o
[31/2790] Generating rte_cfgfile_def with a custom command
[32/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_uuid.c.o
[33/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_launch.c.o
[34/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_log.c.o
[35/2790] Generating rte_cfgfile_mingw with a custom command
[36/2790] Generating rte_mempool_mingw with a custom command
[37/2790] Linking static target lib/librte_kvargs.a
[38/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_vfio_mp_sync.c.o
[39/2790] Generating rte_mbuf_def with a custom command
[40/2790] Generating rte_mempool_def with a custom command
[41/2790] Generating rte_mbuf_mingw with a custom command
[42/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_timer.c.o
[43/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_file.c.o
[44/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_tailqs.c.o
[45/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_timer.c.o
[46/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_keepalive.c.o
[47/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_lcore.c.o
[48/2790] Generating rte_net_def with a custom command
[49/2790] Generating rte_net_mingw with a custom command
[50/2790] Generating rte_meter_def with a custom command
[51/2790] Generating rte_meter_mingw with a custom command
[52/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_mcfg.c.o
[53/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_cycles.c.o
[54/2790] Compiling C object lib/librte_eal.a.p/eal_x86_rte_power_intrinsics.c.o
[55/2790] Compiling C object lib/librte_eal.a.p/eal_unix_eal_unix_memory.c.o
[56/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_bus.c.o
[57/2790] Generating rte_ethdev_def with a custom command
[58/2790] Generating rte_ethdev_mingw with a custom command
[59/2790] Generating rte_pci_def with a custom command
[60/2790] Generating rte_pci_mingw with a custom command
[61/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_thread.c.o
[62/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry_legacy.c.o
[63/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memalloc.c.o
[64/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_ctf.c.o
[65/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_random.c.o
[66/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_points.c.o
[67/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_log.c.o
[68/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_thread.c.o
[69/2790] Generating rte_cmdline_mingw with a custom command
[70/2790] Generating rte_cmdline_def with a custom command
[71/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_alarm.c.o
[72/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace.c.o
[73/2790] Compiling C object lib/librte_eal.a.p/eal_common_hotplug_mp.c.o
[74/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_dynmem.c.o
[75/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_dev.c.o
[76/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_devargs.c.o
[77/2790] Generating rte_metrics_def with a custom command
[78/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_vt100.c.o
[79/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memzone.c.o
[80/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_trace_utils.c.o
[81/2790] Generating rte_metrics_mingw with a custom command
[82/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_socket.c.o
[83/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_lcore.c.o
[84/2790] Generating rte_hash_def with a custom command
[85/2790] Compiling C object lib/librte_ring.a.p/ring_rte_ring.c.o
[86/2790] Generating rte_hash_mingw with a custom command
[87/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_os_unix.c.o
[88/2790] Generating rte_timer_mingw with a custom command
[89/2790] Generating rte_timer_def with a custom command
[90/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_dev.c.o
[91/2790] Linking static target lib/librte_ring.a
[92/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_portlist.c.o
[93/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_elem.c.o
[94/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_mp.c.o
[95/2790] Compiling C object lib/librte_pci.a.p/pci_rte_pci.c.o
[96/2790] Compiling C object lib/librte_meter.a.p/meter_rte_meter.c.o
[97/2790] Generating rte_acl_def with a custom command
[98/2790] Generating rte_acl_mingw with a custom command
[99/2790] Generating rte_bbdev_mingw with a custom command
[100/2790] Generating rte_bbdev_def with a custom command
[101/2790] Linking static target lib/librte_pci.a
[102/2790] Linking static target lib/librte_meter.a
[103/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_string.c.o
[104/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_hugepage_info.c.o
[105/2790] Generating rte_bitratestats_def with a custom command
[106/2790] Generating rte_bitratestats_mingw with a custom command
[107/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline.c.o
[108/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_num.c.o
[109/2790] Generating rte_compressdev_def with a custom command
[110/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_cirbuf.c.o
[111/2790] Generating rte_compressdev_mingw with a custom command
[112/2790] Compiling C object lib/librte_metrics.a.p/metrics_rte_metrics.c.o
[113/2790] Compiling C object lib/librte_hash.a.p/hash_rte_fbk_hash.c.o
[114/2790] Compiling C object lib/librte_telemetry.a.p/telemetry_telemetry.c.o
[115/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_memory.c.o
[116/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse.c.o
[117/2790] Generating rte_cryptodev_def with a custom command
[118/2790] Linking static target lib/librte_telemetry.a
[119/2790] Generating rte_cryptodev_mingw with a custom command
[120/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_service.c.o
[121/2790] Generating rte_distributor_mingw with a custom command
[122/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_proc.c.o
[123/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal.c.o
[124/2790] Generating rte_distributor_def with a custom command
[125/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_rdline.c.o
[126/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_fbarray.c.o
[127/2790] Generating rte_efd_def with a custom command
[128/2790] Generating rte_efd_mingw with a custom command
[129/2790] Compiling C object lib/librte_mempool.a.p/mempool_mempool_trace_points.c.o
[130/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_pool_ops.c.o
[131/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_interrupts.c.o
[132/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool_ops_default.c.o
[133/2790] Compiling C object lib/librte_cfgfile.a.p/cfgfile_rte_cfgfile.c.o
[134/2790] Compiling C object lib/net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[135/2790] Compiling C object lib/librte_net.a.p/net_net_crc_sse.c.o
[136/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_memory.c.o
[137/2790] Linking static target lib/librte_cfgfile.a
[138/2790] Linking static target lib/net/libnet_crc_avx512_lib.a
[139/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_memalloc.c.o
[140/2790] Generating rte_eventdev_def with a custom command
[141/2790] Generating rte_eventdev_mingw with a custom command
[142/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_profile.c.o
[143/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_ptype.c.o
[144/2790] Compiling C object lib/librte_net.a.p/net_rte_ether.c.o
[145/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_etheraddr.c.o
[146/2790] Compiling C object lib/librte_net.a.p/net_rte_net_crc.c.o
[147/2790] Generating rte_gro_def with a custom command
[148/2790] Generating rte_gro_mingw with a custom command
[149/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_trace_points.c.o
[150/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool_ops.c.o
[151/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_class_eth.c.o
[152/2790] Compiling C object lib/librte_cmdline.a.p/cmdline_cmdline_parse_ipaddr.c.o
[153/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_ethdev_private.c.o
[154/2790] Linking static target lib/librte_cmdline.a
[155/2790] Compiling C object lib/librte_timer.a.p/timer_rte_timer.c.o
[156/2790] Generating rte_gso_def with a custom command
[157/2790] Generating rte_gso_mingw with a custom command
[158/2790] Linking static target lib/librte_timer.a
[159/2790] Compiling C object lib/librte_acl.a.p/acl_tb_mem.c.o
[160/2790] Compiling C object lib/librte_eal.a.p/eal_linux_eal_vfio.c.o
[161/2790] Compiling C object lib/librte_net.a.p/net_rte_arp.c.o
[162/2790] Compiling C object lib/librte_net.a.p/net_rte_net.c.o
[163/2790] Compiling C object lib/librte_eal.a.p/eal_common_rte_malloc.c.o
[164/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_mtr.c.o
[165/2790] Generating kvargs.sym_chk with a custom command (wrapped by meson to capture output)
[166/2790] Generating pci.sym_chk with a custom command (wrapped by meson to capture output)
[167/2790] Linking static target lib/librte_net.a
[168/2790] Compiling C object lib/librte_bitratestats.a.p/bitratestats_rte_bitrate.c.o
[169/2790] Generating rte_ip_frag_def with a custom command
[170/2790] Generating rte_ip_frag_mingw with a custom command
[171/2790] Compiling C object lib/librte_acl.a.p/acl_rte_acl.c.o
[172/2790] Linking static target lib/librte_bitratestats.a
[173/2790] Linking target lib/librte_kvargs.so.22.0
[174/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_compressdev_pmd.c.o
[175/2790] Generating meter.sym_chk with a custom command (wrapped by meson to capture output)
[176/2790] Generating rte_jobstats_def with a custom command
[177/2790] Generating rte_jobstats_mingw with a custom command
[178/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf_dyn.c.o
[179/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_wm.c.o
[180/2790] Generating rte_kni_def with a custom command
[181/2790] Generating rte_kni_mingw with a custom command
[182/2790] Generating ring.sym_chk with a custom command (wrapped by meson to capture output)
[183/2790] Compiling C object lib/librte_eal.a.p/eal_common_malloc_heap.c.o
[184/2790] Generating rte_latencystats_def with a custom command
[185/2790] Generating rte_latencystats_mingw with a custom command
[186/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_cryptodev_pmd.c.o
[187/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_tm.c.o
[188/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_learner.c.o
[189/2790] Compiling C object lib/librte_rcu.a.p/rcu_rte_rcu_qsbr.c.o
[190/2790] Generating rte_lpm_def with a custom command
[191/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_cryptodev_trace_points.c.o
[192/2790] Generating rte_lpm_mingw with a custom command
[193/2790] Linking static target lib/librte_rcu.a
[194/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_comp.c.o
[195/2790] Generating rte_member_def with a custom command
[196/2790] Generating rte_member_mingw with a custom command
[197/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor_match_sse.c.o
[198/2790] Compiling C object lib/librte_mempool.a.p/mempool_rte_mempool.c.o
[199/2790] Compiling C object lib/librte_metrics.a.p/metrics_rte_metrics_telemetry.c.o
[200/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_selector.c.o
[201/2790] Linking static target lib/librte_mempool.a
[202/2790] Compiling C object lib/librte_acl.a.p/acl_acl_gen.c.o
[203/2790] Linking static target lib/librte_metrics.a
[204/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_port_in_action.c.o
[205/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_ring.c.o
[206/2790] Compiling C object lib/librte_compressdev.a.p/compressdev_rte_compressdev.c.o
[207/2790] Generating rte_power_def with a custom command
[208/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_scalar.c.o
[209/2790] Generating rte_power_mingw with a custom command
[210/2790] Compiling C object lib/librte_power.a.p/power_power_common.c.o
[211/2790] Linking static target lib/librte_compressdev.a
[212/2790] Compiling C object lib/librte_power.a.p/power_power_kvm_vm.c.o
[213/2790] Compiling C object lib/librte_regexdev.a.p/regexdev_rte_regexdev.c.o
[214/2790] Compiling C object lib/librte_power.a.p/power_guest_channel.c.o
[215/2790] Generating rte_pdump_def with a custom command
[216/2790] Linking static target lib/librte_regexdev.a
[217/2790] Generating rte_pdump_mingw with a custom command
[218/2790] Generating rte_rawdev_def with a custom command
[219/2790] Compiling C object lib/librte_member.a.p/member_rte_member.c.o
[220/2790] Compiling C object lib/librte_table.a.p/table_rte_swx_table_em.c.o
[221/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor.c.o
[222/2790] Compiling C object lib/librte_power.a.p/power_rte_power.c.o
[223/2790] Generating rte_rawdev_mingw with a custom command
[224/2790] Generating rte_regexdev_def with a custom command
[225/2790] Generating rte_regexdev_mingw with a custom command
[226/2790] Generating rte_rib_def with a custom command
[227/2790] Generating rte_rib_mingw with a custom command
[228/2790] Generating rte_reorder_def with a custom command
[229/2790] Generating rte_reorder_mingw with a custom command
[230/2790] Compiling C object lib/librte_bbdev.a.p/bbdev_rte_bbdev.c.o
[231/2790] Compiling C object lib/librte_hash.a.p/hash_rte_thash.c.o
[232/2790] Linking static target lib/librte_bbdev.a
[233/2790] Compiling C object lib/librte_distributor.a.p/distributor_rte_distributor_single.c.o
[234/2790] Generating rte_sched_def with a custom command
[235/2790] Linking static target lib/librte_distributor.a
[236/2790] Generating rte_sched_mingw with a custom command
[237/2790] Generating rte_security_def with a custom command
[238/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_eventdev_trace_points.c.o
[239/2790] Generating rte_security_mingw with a custom command
[240/2790] Compiling C object lib/librte_eal.a.p/eal_common_eal_common_options.c.o
[241/2790] Generating cfgfile.sym_chk with a custom command (wrapped by meson to capture output)
[242/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tunnel_udp4.c.o
[243/2790] Compiling C object lib/librte_gso.a.p/gso_rte_gso.c.o
[244/2790] Compiling C object lib/librte_gso.a.p/gso_gso_udp4.c.o
[245/2790] Linking static target lib/librte_eal.a
[246/2790] Compiling C object lib/librte_power.a.p/power_rte_power_empty_poll.c.o
[247/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tcp4.c.o
[248/2790] Compiling C object lib/librte_sched.a.p/sched_rte_approx.c.o
[249/2790] Generating rte_stack_mingw with a custom command
[250/2790] Generating rte_stack_def with a custom command
[251/2790] Compiling C object lib/librte_sched.a.p/sched_rte_red.c.o
[252/2790] Compiling C object lib/librte_gso.a.p/gso_gso_tunnel_tcp4.c.o
[253/2790] Compiling C object lib/librte_gro.a.p/gro_rte_gro.c.o
[254/2790] Compiling C object lib/librte_gro.a.p/gro_gro_tcp4.c.o
[255/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv4_reassembly.c.o
[256/2790] Generating bitratestats.sym_chk with a custom command (wrapped by meson to capture output)
[257/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack_std.c.o
[258/2790] Generating rte_vhost_def with a custom command
[259/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack_lf.c.o
[260/2790] Generating symbol file lib/librte_kvargs.so.22.0.p/librte_kvargs.so.22.0.symbols
[261/2790] Generating rte_vhost_mingw with a custom command
[262/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_flow.c.o
[263/2790] Generating rte_ipsec_mingw with a custom command
[264/2790] Generating rte_ipsec_def with a custom command
[265/2790] Compiling C object lib/librte_stack.a.p/stack_rte_stack.c.o
[266/2790] Linking static target lib/librte_stack.a
[267/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv6_reassembly.c.o
[268/2790] Generating telemetry.sym_chk with a custom command (wrapped by meson to capture output)
[269/2790] Compiling C object lib/librte_mbuf.a.p/mbuf_rte_mbuf.c.o
[270/2790] Compiling C object lib/librte_jobstats.a.p/jobstats_rte_jobstats.c.o
[271/2790] Compiling C object lib/librte_gro.a.p/gro_gro_udp4.c.o
[272/2790] Compiling C object lib/librte_member.a.p/member_rte_member_vbf.c.o
[273/2790] Linking static target lib/librte_mbuf.a
[274/2790] Linking static target lib/librte_jobstats.a
[275/2790] Linking target lib/librte_telemetry.so.22.0
[276/2790] Generating rte_fib_def with a custom command
[277/2790] Generating net.sym_chk with a custom command (wrapped by meson to capture output)
[278/2790] Generating timer.sym_chk with a custom command (wrapped by meson to capture output)
[279/2790] Compiling C object lib/librte_gro.a.p/gro_gro_vxlan_udp4.c.o
[280/2790] Compiling C object lib/librte_vhost.a.p/vhost_fd_man.c.o
[281/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv6_fragmentation.c.o
[282/2790] Generating rte_fib_mingw with a custom command
[283/2790] Compiling C object lib/librte_gro.a.p/gro_gro_vxlan_tcp4.c.o
[284/2790] Linking static target lib/librte_gro.a
[285/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_ip_frag_internal.c.o
[286/2790] Compiling C object lib/librte_gso.a.p/gso_gso_common.c.o
[287/2790] Linking static target lib/librte_gso.a
[288/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ip_frag_common.c.o
[289/2790] Compiling C object lib/librte_ip_frag.a.p/ip_frag_rte_ipv4_fragmentation.c.o
[290/2790] Compiling C object lib/librte_fib.a.p/fib_rte_fib.c.o
[291/2790] Linking static target lib/librte_ip_frag.a
[292/2790] Generating rcu.sym_chk with a custom command (wrapped by meson to capture output)
[293/2790] Compiling C object lib/librte_acl.a.p/acl_acl_bld.c.o
[294/2790] Compiling C object lib/librte_latencystats.a.p/latencystats_rte_latencystats.c.o
[295/2790] Linking static target lib/librte_latencystats.a
[296/2790] Compiling C object lib/librte_power.a.p/power_power_cppc_cpufreq.c.o
[297/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cn9k_mempool_ops.c.o
[298/2790] Compiling C object lib/librte_power.a.p/power_power_acpi_cpufreq.c.o
[299/2790] Compiling C object lib/librte_lpm.a.p/lpm_rte_lpm.c.o
[300/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_timer_adapter.c.o
[301/2790] Generating metrics.sym_chk with a custom command (wrapped by meson to capture output)
[302/2790] Compiling C object lib/librte_power.a.p/power_rte_power_pmd_mgmt.c.o
[303/2790] Generating rte_port_mingw with a custom command
[304/2790] Generating rte_port_def with a custom command
[305/2790] Compiling C object lib/librte_power.a.p/power_power_pstate_cpufreq.c.o
[306/2790] Linking static target lib/librte_power.a
[307/2790] Generating distributor.sym_chk with a custom command (wrapped by meson to capture output)
[308/2790] Compiling C object lib/librte_security.a.p/security_rte_security.c.o
[309/2790] Linking static target lib/librte_security.a
[310/2790] Compiling C object lib/librte_kni.a.p/kni_rte_kni.c.o
[311/2790] Linking static target lib/librte_kni.a
[312/2790] Generating stack.sym_chk with a custom command (wrapped by meson to capture output)
[313/2790] Compiling C object lib/librte_reorder.a.p/reorder_rte_reorder.c.o
[314/2790] Compiling C object lib/librte_rib.a.p/rib_rte_rib.c.o
[315/2790] Compiling C object lib/librte_cryptodev.a.p/cryptodev_rte_cryptodev.c.o
[316/2790] Linking static target lib/librte_reorder.a
[317/2790] Linking static target lib/librte_cryptodev.a
[318/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_ses.c.o
[319/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[320/2790] Compiling C object lib/librte_rawdev.a.p/rawdev_rte_rawdev.c.o
[321/2790] Linking static target lib/librte_rawdev.a
[322/2790] Compiling C object lib/fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[323/2790] Generating cmdline.sym_chk with a custom command (wrapped by meson to capture output)
[324/2790] Linking static target lib/fib/libtrie_avx512_tmp.a
[325/2790] Generating symbol file lib/librte_telemetry.so.22.0.p/librte_telemetry.so.22.0.symbols
[326/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[327/2790] Compiling C object lib/librte_fib.a.p/fib_rte_fib6.c.o
[328/2790] Compiling C object lib/librte_lpm.a.p/lpm_rte_lpm6.c.o
[329/2790] Compiling C object lib/fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[330/2790] Compiling C object lib/librte_efd.a.p/efd_rte_efd.c.o
[331/2790] Linking static target lib/fib/libdir24_8_avx512_tmp.a
[332/2790] Linking static target lib/librte_lpm.a
[333/2790] Compiling C object lib/librte_vhost.a.p/vhost_vdpa.c.o
[334/2790] Linking static target lib/librte_efd.a
[335/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_eventdev.c.o
[336/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_eth_tx_adapter.c.o
[337/2790] Generating mempool.sym_chk with a custom command (wrapped by meson to capture output)
[338/2790] Generating rte_table_mingw with a custom command
[339/2790] Generating rte_table_def with a custom command
[340/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_sse.c.o
[341/2790] Generating jobstats.sym_chk with a custom command (wrapped by meson to capture output)
[342/2790] Generating gso.sym_chk with a custom command (wrapped by meson to capture output)
[343/2790] Generating regexdev.sym_chk with a custom command (wrapped by meson to capture output)
[344/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_crypto_adapter.c.o
[345/2790] Generating gro.sym_chk with a custom command (wrapped by meson to capture output)
[346/2790] Compiling C object lib/librte_vhost.a.p/vhost_iotlb.c.o
[347/2790] Generating rte_pipeline_mingw with a custom command
[348/2790] Generating rte_pipeline_def with a custom command
[349/2790] Compiling C object lib/librte_port.a.p/port_rte_port_sched.c.o
[350/2790] Generating rte_flow_classify_mingw with a custom command
[351/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_sa.c.o
[352/2790] Generating rte_flow_classify_def with a custom command
[353/2790] Generating latencystats.sym_chk with a custom command (wrapped by meson to capture output)
[354/2790] Compiling C object lib/librte_pdump.a.p/pdump_rte_pdump.c.o
[355/2790] Generating ip_frag.sym_chk with a custom command (wrapped by meson to capture output)
[356/2790] Linking static target lib/librte_pdump.a
[357/2790] Compiling C object lib/librte_rib.a.p/rib_rte_rib6.c.o
[358/2790] Linking static target lib/librte_rib.a
[359/2790] Compiling C object lib/librte_vhost.a.p/vhost_socket.c.o
[360/2790] Generating rte_bpf_def with a custom command
[361/2790] Generating bbdev.sym_chk with a custom command (wrapped by meson to capture output)
[362/2790] Generating compressdev.sym_chk with a custom command (wrapped by meson to capture output)
[363/2790] Generating rte_bpf_mingw with a custom command
[364/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_ipsec_sad.c.o
[365/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ras.c.o
[366/2790] Compiling C object lib/librte_port.a.p/port_rte_port_frag.c.o
[367/2790] Generating reorder.sym_chk with a custom command (wrapped by meson to capture output)
[368/2790] Generating rte_graph_def with a custom command
[369/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_fd.c.o
[370/2790] Compiling C object lib/librte_member.a.p/member_rte_member_ht.c.o
[371/2790] Linking static target lib/librte_member.a
[372/2790] Compiling C object lib/librte_port.a.p/port_rte_port_fd.c.o
[373/2790] Generating mbuf.sym_chk with a custom command (wrapped by meson to capture output)
[374/2790] Generating rte_graph_mingw with a custom command
[375/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ethdev.c.o
[376/2790] Compiling C object lib/librte_table.a.p/table_rte_table_array.c.o
[377/2790] Generating kni.sym_chk with a custom command (wrapped by meson to capture output)
[378/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_ethdev.c.o
[379/2790] Compiling C object lib/librte_port.a.p/port_rte_port_sym_crypto.c.o
[380/2790] Compiling C object lib/librte_node.a.p/node_null.c.o
[381/2790] Compiling C object lib/librte_port.a.p/port_rte_port_kni.c.o
[382/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_cuckoo.c.o
[383/2790] Generating security.sym_chk with a custom command (wrapped by meson to capture output)
[384/2790] Compiling C object lib/librte_fib.a.p/fib_trie.c.o
[385/2790] Compiling C object lib/librte_table.a.p/table_rte_table_stub.c.o
[386/2790] Generating rte_node_def with a custom command
[387/2790] Generating rte_node_mingw with a custom command
[388/2790] Compiling C object lib/librte_port.a.p/port_rte_port_source_sink.c.o
[389/2790] Generating rte_common_cpt_mingw with a custom command
[390/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[391/2790] Generating rte_common_cpt_def with a custom command
[392/2790] Compiling C object lib/librte_table.a.p/table_rte_table_lpm_ipv6.c.o
[393/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost.c.o
[394/2790] Generating efd.sym_chk with a custom command (wrapped by meson to capture output)
[395/2790] Compiling C object lib/librte_table.a.p/table_rte_table_lpm.c.o
[396/2790] Generating rte_common_dpaax_mingw with a custom command
[397/2790] Compiling C object lib/librte_port.a.p/port_rte_port_eventdev.c.o
[398/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_ring.c.o
[399/2790] Generating rte_common_dpaax_def with a custom command
[400/2790] Compiling C object lib/librte_port.a.p/port_rte_swx_port_source_sink.c.o
[401/2790] Generating rte_common_iavf_def with a custom command
[402/2790] Generating rte_common_iavf_mingw with a custom command
[403/2790] Generating rte_common_octeontx_def with a custom command
[404/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[405/2790] Generating rte_common_octeontx_mingw with a custom command
[406/2790] Generating lpm.sym_chk with a custom command (wrapped by meson to capture output)
[407/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf.c.o
[408/2790] Compiling C object lib/librte_fib.a.p/fib_dir24_8.c.o
[409/2790] Linking static target lib/librte_fib.a
[410/2790] Compiling C object lib/librte_table.a.p/table_rte_table_acl.c.o
[411/2790] Generating rte_common_octeontx2_mingw with a custom command
[412/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[413/2790] Generating rte_common_octeontx2_def with a custom command
[414/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_load.c.o
[415/2790] Generating rte_bus_auxiliary_mingw with a custom command
[416/2790] Generating rawdev.sym_chk with a custom command (wrapped by meson to capture output)
[417/2790] Generating rte_bus_auxiliary_def with a custom command
[418/2790] Generating power.sym_chk with a custom command (wrapped by meson to capture output)
[419/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[420/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_auxiliary_params.c.o
[421/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[422/2790] Generating pdump.sym_chk with a custom command (wrapped by meson to capture output)
[423/2790] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[424/2790] Compiling C object lib/librte_flow_classify.a.p/flow_classify_rte_flow_classify_parse.c.o
[425/2790] Linking static target drivers/libtmp_rte_common_octeontx.a
[426/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[427/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[428/2790] Compiling C object lib/librte_graph.a.p/graph_graph_ops.c.o
[429/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_load_elf.c.o
[430/2790] Generating rte_bus_dpaa_mingw with a custom command
[431/2790] Compiling C object lib/librte_graph.a.p/graph_graph_debug.c.o
[432/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[433/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_auxiliary_common.c.o
[434/2790] Generating rte_bus_dpaa_def with a custom command
[435/2790] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[436/2790] Compiling C object lib/librte_flow_classify.a.p/flow_classify_rte_flow_classify.c.o
[437/2790] Linking static target lib/librte_flow_classify.a
[438/2790] Linking static target drivers/libtmp_rte_common_dpaax.a
[439/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost_user.c.o
[440/2790] Compiling C object lib/librte_graph.a.p/graph_node.c.o
[441/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key8.c.o
[442/2790] Compiling C object lib/librte_graph.a.p/graph_graph_populate.c.o
[443/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_exec.c.o
[444/2790] Compiling C object lib/librte_graph.a.p/graph_graph.c.o
[445/2790] Generating rte_common_octeontx.pmd.c with a custom command
[446/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_esp_outb.c.o
[447/2790] Compiling C object lib/librte_node.a.p/node_log.c.o
[448/2790] Compiling C object lib/librte_node.a.p/node_ethdev_ctrl.c.o
[449/2790] Compiling C object lib/librte_node.a.p/node_pkt_drop.c.o
[450/2790] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[451/2790] Compiling C object drivers/librte_common_octeontx.so.22.0.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[452/2790] Linking static target drivers/librte_common_octeontx.a
[453/2790] Generating rte_bus_fslmc_mingw with a custom command
[454/2790] Generating rte_bus_fslmc_def with a custom command
[455/2790] Generating member.sym_chk with a custom command (wrapped by meson to capture output)
[456/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[457/2790] Compiling C object lib/librte_node.a.p/node_ethdev_tx.c.o
[458/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[459/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key16.c.o
[460/2790] Generating rte_bus_ifpga_def with a custom command
[461/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[462/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[463/2790] Compiling C object lib/librte_graph.a.p/graph_graph_stats.c.o
[464/2790] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[465/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[466/2790] Generating rte_bus_ifpga_mingw with a custom command
[467/2790] Linking static target lib/librte_graph.a
[468/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[469/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[470/2790] Compiling C object lib/librte_sched.a.p/sched_rte_sched.c.o
[471/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[472/2790] Generating rte_bus_pci_def with a custom command
[473/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_pkt.c.o
[474/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_ext.c.o
[475/2790] Generating rte_bus_pci_mingw with a custom command
[476/2790] Compiling C object lib/librte_acl.a.p/acl_acl_run_avx2.c.o
[477/2790] Linking static target lib/librte_sched.a
[478/2790] Compiling C object lib/librte_eventdev.a.p/eventdev_rte_event_eth_rx_adapter.c.o
[479/2790] Generating rte_bus_vdev_def with a custom command
[480/2790] Generating rte_common_dpaax.pmd.c with a custom command
[481/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_pipeline.c.o
[482/2790] Compiling C object lib/librte_node.a.p/node_ethdev_rx.c.o
[483/2790] Linking static target lib/librte_eventdev.a
[484/2790] Generating rte_bus_vdev_mingw with a custom command
[485/2790] Compiling C object lib/acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[486/2790] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[487/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_pipeline_spec.c.o
[488/2790] Linking static target lib/acl/libavx512_tmp.a
[489/2790] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[490/2790] Linking static target lib/librte_acl.a
[491/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[492/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[493/2790] Linking static target drivers/libtmp_rte_common_cpt.a
[494/2790] Compiling C object drivers/librte_common_dpaax.so.22.0.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[495/2790] Linking static target drivers/librte_common_dpaax.a
[496/2790] Generating rte_bus_vmbus_def with a custom command
[497/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[498/2790] Generating rte_bus_vmbus_mingw with a custom command
[499/2790] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[500/2790] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[501/2790] Compiling C object lib/librte_ipsec.a.p/ipsec_esp_inb.c.o
[502/2790] Linking static target lib/librte_ipsec.a
[503/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_lru.c.o
[504/2790] Compiling C object lib/librte_ethdev.a.p/ethdev_rte_ethdev.c.o
[505/2790] Compiling C object lib/librte_table.a.p/table_rte_table_hash_key32.c.o
[506/2790] Linking static target lib/librte_ethdev.a
[507/2790] Linking static target lib/librte_table.a
[508/2790] Compiling C object drivers/libtmp_rte_bus_auxiliary.a.p/bus_auxiliary_linux_auxiliary.c.o
[509/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[510/2790] Linking static target drivers/libtmp_rte_bus_auxiliary.a
[511/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[512/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[513/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[514/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[515/2790] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[516/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[517/2790] Compiling C object lib/librte_hash.a.p/hash_rte_cuckoo_hash.c.o
[518/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_ae.c.o
[519/2790] Linking static target drivers/libtmp_rte_bus_ifpga.a
[520/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_validate.c.o
[521/2790] Linking static target lib/librte_hash.a
[522/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[523/2790] Generating rib.sym_chk with a custom command (wrapped by meson to capture output)
[524/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_ae_fpm_tables.c.o
[525/2790] Generating rte_common_cpt.pmd.c with a custom command
[526/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy.c.o
[527/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[528/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[529/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[530/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[531/2790] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[532/2790] Compiling C object drivers/librte_common_cpt.so.22.0.p/meson-generated_.._rte_common_cpt.pmd.c.o
[533/2790] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[534/2790] Linking static target drivers/librte_common_cpt.a
[535/2790] Linking static target drivers/libtmp_rte_bus_vdev.a
[536/2790] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[537/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[538/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[539/2790] Linking static target drivers/libtmp_rte_bus_vmbus.a
[540/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_cpt_debug.c.o
[541/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[542/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[543/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_idev.c.o
[544/2790] Generating rte_bus_auxiliary.pmd.c with a custom command
[545/2790] Compiling C object lib/librte_node.a.p/node_pkt_cls.c.o
[546/2790] Compiling C object drivers/librte_bus_auxiliary.a.p/meson-generated_.._rte_bus_auxiliary.pmd.c.o
[547/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy_irq.c.o
[548/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_hash.c.o
[549/2790] Linking static target drivers/librte_bus_auxiliary.a
[550/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_irq.c.o
[551/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[552/2790] Compiling C object drivers/librte_bus_auxiliary.so.22.0.p/meson-generated_.._rte_bus_auxiliary.pmd.c.o
[553/2790] Compiling C object lib/librte_port.a.p/port_rte_port_ring.c.o
[554/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_bphy_cgx.c.o
[555/2790] Generating rte_bus_ifpga.pmd.c with a custom command
[556/2790] Linking static target lib/librte_port.a
[557/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_model.c.o
[558/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[559/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[560/2790] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[561/2790] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[562/2790] Linking static target drivers/librte_bus_ifpga.a
[563/2790] Generating flow_classify.sym_chk with a custom command (wrapped by meson to capture output)
[564/2790] Compiling C object drivers/librte_bus_ifpga.so.22.0.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[565/2790] Compiling C object lib/librte_bpf.a.p/bpf_bpf_jit_x86.c.o
[566/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[567/2790] Linking static target drivers/libtmp_rte_common_iavf.a
[568/2790] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[569/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_mcast.c.o
[570/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[571/2790] Linking static target lib/librte_bpf.a
[572/2790] Linking static target drivers/libtmp_rte_common_octeontx2.a
[573/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_npc.c.o
[574/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix.c.o
[575/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[576/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_ptp.c.o
[577/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[578/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_fc.c.o
[579/2790] Generating rte_bus_vdev.pmd.c with a custom command
[580/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_cpt.c.o
[581/2790] Generating rte_common_cnxk_mingw with a custom command
[582/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[583/2790] Generating fib.sym_chk with a custom command (wrapped by meson to capture output)
[584/2790] Generating rte_common_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[585/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_ctl.c.o
[586/2790] Generating rte_bus_vmbus.pmd.c with a custom command
[587/2790] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[588/2790] Generating rte_common_cnxk_def with a custom command
[589/2790] Compiling C object drivers/librte_bus_vdev.so.22.0.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[590/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_mbox.c.o
[591/2790] Linking static target drivers/librte_bus_vdev.a
[592/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_irq.c.o
[593/2790] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[594/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_platform.c.o
[595/2790] Generating rte_raw_ioat_mingw with a custom command
[596/2790] Compiling C object drivers/librte_bus_vmbus.so.22.0.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[597/2790] Generating rte_common_qat_def with a custom command
[598/2790] Linking static target drivers/librte_bus_vmbus.a
[599/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_vlan.c.o
[600/2790] Compiling C object lib/librte_node.a.p/node_ip4_lookup.c.o
[601/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_mac.c.o
[602/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_rss.c.o
[603/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[604/2790] Generating rte_common_qat_mingw with a custom command
[605/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[606/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa_irq.c.o
[607/2790] Generating rte_raw_ntb_def with a custom command
[608/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_ops.c.o
[609/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa_debug.c.o
[610/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_stats.c.o
[611/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[612/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_dev.c.o
[613/2790] Generating rte_common_iavf.pmd.c with a custom command
[614/2790] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[615/2790] Generating acl.sym_chk with a custom command (wrapped by meson to capture output)
[616/2790] Generating rte_common_octeontx2.pmd.c with a custom command
[617/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_tim_irq.c.o
[618/2790] Linking static target drivers/libtmp_rte_bus_pci.a
[619/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso_debug.c.o
[620/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_utils.c.o
[621/2790] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[622/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso_irq.c.o
[623/2790] Compiling C object drivers/librte_common_iavf.so.22.0.p/meson-generated_.._rte_common_iavf.pmd.c.o
[624/2790] Compiling C object drivers/librte_common_octeontx2.so.22.0.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[625/2790] Linking static target drivers/librte_common_iavf.a
[626/2790] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[627/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[628/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_parse.c.o
[629/2790] Linking static target drivers/librte_common_octeontx2.a
[630/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_se.c.o
[631/2790] Compiling C object lib/librte_node.a.p/node_ip4_rewrite.c.o
[632/2790] Linking static target lib/librte_node.a
[633/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_tim.c.o
[634/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_mcam_dump.c.o
[635/2790] Generating cryptodev.sym_chk with a custom command (wrapped by meson to capture output)
[636/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[637/2790] Generating sched.sym_chk with a custom command (wrapped by meson to capture output)
[638/2790] Generating ipsec.sym_chk with a custom command (wrapped by meson to capture output)
[639/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npa.c.o
[640/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm_ops.c.o
[641/2790] Generating rte_bus_auxiliary.sym_chk with a custom command (wrapped by meson to capture output)
[642/2790] Generating rte_common_cpt.sym_chk with a custom command (wrapped by meson to capture output)
[643/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_sso.c.o
[644/2790] Generating rte_common_dpaax.sym_chk with a custom command (wrapped by meson to capture output)
[645/2790] Generating rte_bus_pci.pmd.c with a custom command
[646/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm_utils.c.o
[647/2790] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[648/2790] Generating rte_bus_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[649/2790] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[650/2790] Linking static target drivers/libtmp_rte_bus_fslmc.a
[651/2790] Compiling C object drivers/librte_bus_pci.so.22.0.p/meson-generated_.._rte_bus_pci.pmd.c.o
[652/2790] Linking static target drivers/librte_bus_pci.a
[653/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_queue.c.o
[654/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_debug.c.o
[655/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc.c.o
[656/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_utils.c.o
[657/2790] Generating table.sym_chk with a custom command (wrapped by meson to capture output)
[658/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[659/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[660/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[661/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_npc_mcam.c.o
[662/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_pf2vf.c.o
[663/2790] Generating rte_bus_vdev.sym_chk with a custom command (wrapped by meson to capture output)
[664/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[665/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[666/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[667/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[668/2790] Generating bpf.sym_chk with a custom command (wrapped by meson to capture output)
[669/2790] Generating hash.sym_chk with a custom command (wrapped by meson to capture output)
[670/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[671/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[672/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[673/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[674/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[675/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_virtio.c.o
[676/2790] Generating rte_common_sfc_efx_def with a custom command
[677/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[678/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[679/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[680/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[681/2790] Generating rte_common_sfc_efx_mingw with a custom command
[682/2790] Generating rte_mempool_bucket_def with a custom command
[683/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_cnxk_security.c.o
[684/2790] Generating rte_common_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[685/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[686/2790] Generating rte_bus_fslmc.pmd.c with a custom command
[687/2790] Generating rte_mempool_cnxk_mingw with a custom command
[688/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[689/2790] Generating rte_mempool_bucket_mingw with a custom command
[690/2790] Generating port.sym_chk with a custom command (wrapped by meson to capture output)
[691/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[692/2790] Generating rte_mempool_cnxk_def with a custom command
[693/2790] Generating rte_mempool_dpaa_def with a custom command
[694/2790] Generating rte_mempool_dpaa_mingw with a custom command
[695/2790] Generating graph.sym_chk with a custom command (wrapped by meson to capture output)
[696/2790] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[697/2790] Compiling C object drivers/libtmp_rte_common_cnxk.a.p/common_cnxk_roc_nix_tm.c.o
[698/2790] Compiling C object drivers/librte_bus_fslmc.so.22.0.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[699/2790] Generating rte_mempool_dpaa2_def with a custom command
[700/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[701/2790] Generating rte_mempool_octeontx_def with a custom command
[702/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[703/2790] Linking static target drivers/librte_bus_fslmc.a
[704/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[705/2790] Generating rte_mempool_dpaa2_mingw with a custom command
[706/2790] Linking static target drivers/libtmp_rte_common_cnxk.a
[707/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[708/2790] Generating rte_mempool_octeontx_mingw with a custom command
[709/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[710/2790] Generating rte_mempool_octeontx2_def with a custom command
[711/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[712/2790] Generating rte_bus_vmbus.sym_chk with a custom command (wrapped by meson to capture output)
[713/2790] Generating rte_mempool_octeontx2_mingw with a custom command
[714/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[715/2790] Generating rte_mempool_ring_def with a custom command
[716/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[717/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[718/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[719/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[720/2790] Generating rte_mempool_ring_mingw with a custom command
[721/2790] Generating rte_mempool_stack_def with a custom command
[722/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[723/2790] Generating rte_mempool_stack_mingw with a custom command
[724/2790] Generating rte_net_af_packet_def with a custom command
[725/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[726/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cnxk_mempool.c.o
[727/2790] Generating rte_net_af_packet_mingw with a custom command
[728/2790] Generating node.sym_chk with a custom command (wrapped by meson to capture output)
[729/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[730/2790] Generating rte_net_ark_def with a custom command
[731/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[732/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[733/2790] Generating rte_net_ark_mingw with a custom command
[734/2790] Generating rte_net_atlantic_mingw with a custom command
[735/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[736/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[737/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[738/2790] Generating rte_net_vmxnet3_def with a custom command
[739/2790] Generating rte_net_vmxnet3_mingw with a custom command
[740/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[741/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[742/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[743/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[744/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[745/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[746/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[747/2790] Generating rte_net_avp_mingw with a custom command
[748/2790] Generating rte_net_avp_def with a custom command
[749/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[750/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_virtio.c.o
[751/2790] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[752/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[753/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[754/2790] Generating rte_net_atlantic_def with a custom command
[755/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[756/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[757/2790] Generating rte_net_axgbe_def with a custom command
[758/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[759/2790] Generating rte_net_axgbe_mingw with a custom command
[760/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[761/2790] Generating rte_common_cnxk.pmd.c with a custom command
[762/2790] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[763/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[764/2790] Generating rte_net_bnx2x_def with a custom command
[765/2790] Linking static target drivers/libtmp_rte_bus_dpaa.a
[766/2790] Compiling C object drivers/librte_common_cnxk.so.22.0.p/meson-generated_.._rte_common_cnxk.pmd.c.o
[767/2790] Generating rte_net_bnx2x_mingw with a custom command
[768/2790] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[769/2790] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[770/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cnxk_mempool_ops.c.o
[771/2790] Compiling C object drivers/librte_common_cnxk.a.p/meson-generated_.._rte_common_cnxk.pmd.c.o
[772/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[773/2790] Linking static target drivers/librte_common_cnxk.a
[774/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[775/2790] Compiling C object drivers/libtmp_rte_mempool_cnxk.a.p/mempool_cnxk_cn10k_mempool_ops.c.o
[776/2790] Linking static target drivers/libtmp_rte_mempool_cnxk.a
[777/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[778/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[779/2790] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[780/2790] Generating rte_bus_pci.sym_chk with a custom command (wrapped by meson to capture output)
[781/2790] Linking static target drivers/libtmp_rte_mempool_stack.a
[782/2790] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[783/2790] Linking static target drivers/libtmp_rte_common_qat.a
[784/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[785/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[786/2790] Generating rte_common_sfc_efx.pmd.c with a custom command
[787/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[788/2790] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[789/2790] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[790/2790] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[791/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[792/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[793/2790] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[794/2790] Compiling C object drivers/librte_common_sfc_efx.so.22.0.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[795/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[796/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[797/2790] Generating rte_mempool_cnxk.pmd.c with a custom command
[798/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_vf.c.o
[799/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[800/2790] Compiling C object drivers/librte_mempool_cnxk.a.p/meson-generated_.._rte_mempool_cnxk.pmd.c.o
[801/2790] Compiling C object drivers/librte_mempool_cnxk.so.22.0.p/meson-generated_.._rte_mempool_cnxk.pmd.c.o
[802/2790] Linking static target drivers/librte_mempool_cnxk.a
[803/2790] Generating rte_common_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[804/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[805/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[806/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[807/2790] Generating rte_mempool_stack.pmd.c with a custom command
[808/2790] Generating rte_common_qat.pmd.c with a custom command
[809/2790] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[810/2790] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[811/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[812/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[813/2790] Linking static target drivers/librte_mempool_stack.a
[814/2790] Linking static target drivers/librte_common_qat.a
[815/2790] Generating rte_bus_dpaa.pmd.c with a custom command
[816/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[817/2790] Compiling C object drivers/librte_common_qat.so.22.0.p/meson-generated_.._rte_common_qat.pmd.c.o
[818/2790] Generating rte_mempool_dpaa.pmd.c with a custom command
[819/2790] Compiling C object drivers/librte_mempool_stack.so.22.0.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[820/2790] Generating rte_mempool_octeontx.pmd.c with a custom command
[821/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[822/2790] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[823/2790] Compiling C object drivers/librte_bus_dpaa.so.22.0.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[824/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[825/2790] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[826/2790] Compiling C object drivers/librte_mempool_dpaa.so.22.0.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[827/2790] Linking static target drivers/librte_bus_dpaa.a
[828/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[829/2790] Linking static target drivers/librte_mempool_dpaa.a
[830/2790] Compiling C object drivers/librte_mempool_octeontx.so.22.0.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[831/2790] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[832/2790] Linking static target drivers/librte_mempool_octeontx.a
[833/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[834/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[835/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[836/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[837/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[838/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[839/2790] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[840/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[841/2790] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[842/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[843/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[844/2790] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[845/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[846/2790] Generating rte_mempool_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[847/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[848/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[849/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[850/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[851/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[852/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[853/2790] Generating rte_mempool_stack.sym_chk with a custom command (wrapped by meson to capture output)
[854/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[855/2790] Generating eventdev.sym_chk with a custom command (wrapped by meson to capture output)
[856/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[857/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[858/2790] Generating rte_mempool_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[859/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[860/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[861/2790] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[862/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[863/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[864/2790] Linking static target drivers/libtmp_rte_net_ark.a
[865/2790] Generating rte_mempool_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[866/2790] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[867/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[868/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[869/2790] Linking static target drivers/libtmp_rte_net_axgbe.a
[870/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[871/2790] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[872/2790] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[873/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_act.c.o
[874/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[875/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[876/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_handler_tbl.c.o
[877/2790] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[878/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[879/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[880/2790] Linking static target drivers/librte_common_sfc_efx.a
[881/2790] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[882/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[883/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_gen_hash.c.o
[884/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_thor_class.c.o
[885/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_wh_plus_class.c.o
[886/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[887/2790] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[888/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_ha_mgr.c.o
[889/2790] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[890/2790] Generating rte_mempool_dpaa2.pmd.c with a custom command
[891/2790] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[892/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[893/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[894/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_common.c.o
[895/2790] Linking static target drivers/librte_mempool_dpaa2.a
[896/2790] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[897/2790] Generating rte_common_qat.sym_chk with a custom command (wrapped by meson to capture output)
[898/2790] Linking static target drivers/libtmp_rte_net_avp.a
[899/2790] Generating rte_net_axgbe.pmd.c with a custom command
[900/2790] Compiling C object drivers/librte_mempool_dpaa2.so.22.0.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[901/2790] Generating rte_net_bnxt_mingw with a custom command
[902/2790] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[903/2790] Generating rte_net_bnxt_def with a custom command
[904/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_p58.c.o
[905/2790] Linking static target drivers/librte_net_axgbe.a
[906/2790] Compiling C object drivers/librte_net_axgbe.so.22.0.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[907/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_cfa_hcapi_cfa_p4.c.o
[908/2790] Generating rte_net_bond_mingw with a custom command
[909/2790] Generating rte_net_bond_def with a custom command
[910/2790] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[911/2790] Generating rte_net_ark.pmd.c with a custom command
[912/2790] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[913/2790] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[914/2790] Compiling C object drivers/librte_net_ark.so.22.0.p/meson-generated_.._rte_net_ark.pmd.c.o
[915/2790] Generating rte_mempool_octeontx2.pmd.c with a custom command
[916/2790] Linking static target drivers/librte_net_ark.a
[917/2790] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[918/2790] Compiling C object drivers/librte_mempool_octeontx2.so.22.0.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[919/2790] Linking static target drivers/librte_mempool_octeontx2.a
[920/2790] Generating rte_net_avp.pmd.c with a custom command
[921/2790] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[922/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[923/2790] Linking static target drivers/librte_net_avp.a
[924/2790] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[925/2790] Compiling C object drivers/librte_net_avp.so.22.0.p/meson-generated_.._rte_net_avp.pmd.c.o
[926/2790] Linking static target drivers/libtmp_rte_mempool_bucket.a
[927/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[928/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_dpool.c.o
[929/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[930/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_wh_plus_act.c.o
[931/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_thor_act.c.o
[932/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[933/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[934/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[935/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[936/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[937/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[938/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[939/2790] Generating rte_net_axgbe.sym_chk with a custom command (wrapped by meson to capture output)
[940/2790] Generating rte_mempool_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[941/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[942/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_tbl.c.o
[943/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[944/2790] Generating rte_net_avp.sym_chk with a custom command (wrapped by meson to capture output)
[945/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[946/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[947/2790] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[948/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[949/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[950/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[951/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_generic_templates_ulp_template_db_class.c.o
[952/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_link.c.o
[953/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam_shared.c.o
[954/2790] Generating rte_mempool_bucket.pmd.c with a custom command
[955/2790] Generating rte_net_vmxnet3.pmd.c with a custom command
[956/2790] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[957/2790] Linking static target drivers/librte_mempool_bucket.a
[958/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[959/2790] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[960/2790] Generating rte_mempool_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[961/2790] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[962/2790] Compiling C object drivers/librte_mempool_bucket.so.22.0.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[963/2790] Generating rte_net_cnxk_def with a custom command
[964/2790] Linking static target drivers/libtmp_rte_mempool_ring.a
[965/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[966/2790] Linking static target drivers/libtmp_rte_net_af_packet.a
[967/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[968/2790] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[969/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_gen_tbl.c.o
[970/2790] Linking static target drivers/librte_net_vmxnet3.a
[971/2790] Generating rte_net_cnxk_mingw with a custom command
[972/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[973/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[974/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_tf_pmd_shim.c.o
[975/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev_devargs.c.o
[976/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[977/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[978/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[979/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_hash_internal.c.o
[980/2790] Generating rte_net_af_packet.pmd.c with a custom command
[981/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_lookup.c.o
[982/2790] Compiling C object drivers/librte_net_af_packet.so.22.0.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[983/2790] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[984/2790] Linking static target drivers/librte_net_af_packet.a
[985/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ptp.c.o
[986/2790] Generating rte_net_cxgbe_def with a custom command
[987/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_ethdev.c.o
[988/2790] Generating rte_net_cxgbe_mingw with a custom command
[989/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[990/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rte_flow.c.o
[991/2790] Generating rte_mempool_ring.pmd.c with a custom command
[992/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[993/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[994/2790] Compiling C object drivers/librte_mempool_ring.so.22.0.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[995/2790] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[996/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_avx2.c.o
[997/2790] Linking static target drivers/librte_mempool_ring.a
[998/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_rte_flow.c.o
[999/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[1000/2790] Generating rte_net_dpaa_def with a custom command
[1001/2790] Generating rte_net_dpaa_mingw with a custom command
[1002/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_vec_mseg.c.o
[1003/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev_ops.c.o
[1004/2790] Generating rte_net_ark.sym_chk with a custom command (wrapped by meson to capture output)
[1005/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[1006/2790] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[1007/2790] Linking static target drivers/libtmp_rte_net_atlantic.a
[1008/2790] Generating rte_mempool_bucket.sym_chk with a custom command (wrapped by meson to capture output)
[1009/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p58.c.o
[1010/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rte_flow.c.o
[1011/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_vec.c.o
[1012/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_vec_mseg.c.o
[1013/2790] Generating rte_net_dpaa2_def with a custom command
[1014/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_vec.c.o
[1015/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_vec_mseg.c.o
[1016/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[1017/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_ethdev.c.o
[1018/2790] Generating rte_net_dpaa2_mingw with a custom command
[1019/2790] Generating rte_net_af_packet.sym_chk with a custom command (wrapped by meson to capture output)
[1020/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_vec_mseg.c.o
[1021/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_vec.c.o
[1022/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[1023/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_ethdev.c.o
[1024/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[1025/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[1026/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[1027/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[1028/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[1029/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[1030/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[1031/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[1032/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[1033/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[1034/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[1035/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[1036/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[1037/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[1038/2790] Generating rte_net_atlantic.pmd.c with a custom command
[1039/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[1040/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[1041/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[1042/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[1043/2790] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[1044/2790] Compiling C object drivers/librte_net_atlantic.so.22.0.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[1045/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[1046/2790] Linking static target drivers/librte_net_atlantic.a
[1047/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[1048/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[1049/2790] Generating rte_net_e1000_mingw with a custom command
[1050/2790] Generating rte_net_e1000_def with a custom command
[1051/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[1052/2790] Generating rte_net_ena_def with a custom command
[1053/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[1054/2790] Generating rte_net_ena_mingw with a custom command
[1055/2790] Generating rte_net_enetc_mingw with a custom command
[1056/2790] Generating rte_net_enetc_def with a custom command
[1057/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[1058/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_tm.c.o
[1059/2790] Generating rte_net_vmxnet3.sym_chk with a custom command (wrapped by meson to capture output)
[1060/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[1061/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[1062/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[1063/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[1064/2790] Generating rte_mempool_ring.sym_chk with a custom command (wrapped by meson to capture output)
[1065/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[1066/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[1067/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_vec.c.o
[1068/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cnxk_stats.c.o
[1069/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[1070/2790] Generating rte_net_enic_mingw with a custom command
[1071/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[1072/2790] Generating rte_bus_fslmc.sym_chk with a custom command (wrapped by meson to capture output)
[1073/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1074/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[1075/2790] Generating rte_net_enic_def with a custom command
[1076/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1077/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[1078/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[1079/2790] Generating rte_net_failsafe_def with a custom command
[1080/2790] Generating rte_net_failsafe_mingw with a custom command
[1081/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[1082/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[1083/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[1084/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[1085/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1086/2790] Generating ethdev.sym_chk with a custom command (wrapped by meson to capture output)
[1087/2790] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1088/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1089/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1090/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[1091/2790] Generating rte_net_fm10k_def with a custom command
[1092/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[1093/2790] Generating rte_net_fm10k_mingw with a custom command
[1094/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1095/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1096/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1097/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1098/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx.c.o
[1099/2790] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1100/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1101/2790] Linking static target drivers/libtmp_rte_net_enetc.a
[1102/2790] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1103/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1104/2790] Linking static target drivers/libtmp_rte_net_bond.a
[1105/2790] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1106/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1107/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1108/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1109/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1110/2790] Generating rte_net_atlantic.sym_chk with a custom command (wrapped by meson to capture output)
[1111/2790] Linking static target drivers/net/e1000/base/libe1000_base.a
[1112/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[1113/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[1114/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[1115/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1116/2790] Generating rte_net_hinic_def with a custom command
[1117/2790] Generating rte_net_hinic_mingw with a custom command
[1118/2790] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1119/2790] Generating rte_net_enetc.pmd.c with a custom command
[1120/2790] Linking static target drivers/libtmp_rte_net_bnxt.a
[1121/2790] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1122/2790] Linking static target drivers/librte_net_enetc.a
[1123/2790] Generating rte_net_bond.pmd.c with a custom command
[1124/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[1125/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx.c.o
[1126/2790] Compiling C object drivers/librte_net_bond.so.22.0.p/meson-generated_.._rte_net_bond.pmd.c.o
[1127/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1128/2790] Compiling C object drivers/librte_net_enetc.so.22.0.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1129/2790] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1130/2790] Linking static target drivers/librte_net_bond.a
[1131/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1132/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1133/2790] Generating rte_bus_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1134/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[1135/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1136/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1137/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1138/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1139/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1140/2790] Generating rte_net_hns3_def with a custom command
[1141/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1142/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1143/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1144/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx_mseg.c.o
[1145/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1146/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1147/2790] Generating rte_net_hns3_mingw with a custom command
[1148/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1149/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1150/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1151/2790] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1152/2790] Generating rte_net_bnxt.pmd.c with a custom command
[1153/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1154/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_rss.c.o
[1155/2790] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1156/2790] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1157/2790] Compiling C object drivers/librte_net_bnxt.so.22.0.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1158/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1159/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1160/2790] Linking static target drivers/librte_net_bnxt.a
[1161/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1162/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1163/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1164/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1165/2790] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1166/2790] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1167/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1168/2790] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1169/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1170/2790] Linking static target drivers/libtmp_rte_net_dpaa.a
[1171/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1172/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ptp.c.o
[1173/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1174/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1175/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1176/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1177/2790] Generating rte_net_i40e_mingw with a custom command
[1178/2790] Generating rte_net_i40e_def with a custom command
[1179/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1180/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1181/2790] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[1182/2790] Generating rte_net_enetc.sym_chk with a custom command (wrapped by meson to capture output)
[1183/2790] Linking static target drivers/libtmp_rte_net_enic.a
[1184/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1185/2790] Generating rte_net_iavf_def with a custom command
[1186/2790] Generating rte_net_iavf_mingw with a custom command
[1187/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_tm.c.o
[1188/2790] Generating rte_net_bond.sym_chk with a custom command (wrapped by meson to capture output)
[1189/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1190/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1191/2790] Generating rte_net_dpaa.pmd.c with a custom command
[1192/2790] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1193/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1194/2790] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1195/2790] Linking static target drivers/librte_net_dpaa.a
[1196/2790] Linking static target drivers/libtmp_rte_net_fm10k.a
[1197/2790] Compiling C object drivers/librte_net_dpaa.so.22.0.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1198/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1199/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1200/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1201/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1202/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1203/2790] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1204/2790] Linking static target drivers/libtmp_rte_net_failsafe.a
[1205/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1206/2790] Generating rte_net_bnx2x.pmd.c with a custom command
[1207/2790] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1208/2790] Linking static target drivers/librte_net_bnx2x.a
[1209/2790] Generating rte_net_fm10k.pmd.c with a custom command
[1210/2790] Compiling C object drivers/librte_net_bnx2x.so.22.0.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1211/2790] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1212/2790] Linking static target drivers/librte_net_fm10k.a
[1213/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx.c.o
[1214/2790] Compiling C object drivers/librte_net_fm10k.so.22.0.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1215/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1216/2790] Compiling C object lib/librte_vhost.a.p/vhost_virtio_net.c.o
[1217/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1218/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1219/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1220/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_tm.c.o
[1221/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_hash.c.o
[1222/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_swx_pipeline.c.o
[1223/2790] Generating rte_net_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[1224/2790] Generating rte_net_bnxt.sym_chk with a custom command (wrapped by meson to capture output)
[1225/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1226/2790] Generating rte_net_failsafe.pmd.c with a custom command
[1227/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1228/2790] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1229/2790] Compiling C object drivers/librte_net_failsafe.so.22.0.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1230/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_vlan_mode.c.o
[1231/2790] Linking static target drivers/librte_net_failsafe.a
[1232/2790] Generating rte_net_enic.pmd.c with a custom command
[1233/2790] Generating rte_net_bnx2x.sym_chk with a custom command (wrapped by meson to capture output)
[1234/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1235/2790] Compiling C object drivers/librte_net_enic.so.22.0.p/meson-generated_.._rte_net_enic.pmd.c.o
[1236/2790] Generating rte_net_fm10k.sym_chk with a custom command (wrapped by meson to capture output)
[1237/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1238/2790] Generating rte_net_ice_def with a custom command
[1239/2790] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1240/2790] Generating rte_net_ice_mingw with a custom command
[1241/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1242/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1243/2790] Linking static target drivers/librte_net_enic.a
[1244/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1245/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1246/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1247/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1248/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1249/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_tx_mseg.c.o
[1250/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1251/2790] Compiling C object drivers/net/i40e/libi40e_avx512_lib.a.p/i40e_rxtx_vec_avx512.c.o
[1252/2790] Linking static target drivers/net/i40e/libi40e_avx512_lib.a
[1253/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1254/2790] Generating rte_net_igc_def with a custom command
[1255/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1256/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1257/2790] Generating rte_net_igc_mingw with a custom command
[1258/2790] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1259/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1260/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1261/2790] Linking static target drivers/net/hinic/base/libhinic_base.a
[1262/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1263/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1264/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1265/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_rx.c.o
[1266/2790] Generating rte_net_enic.sym_chk with a custom command (wrapped by meson to capture output)
[1267/2790] Generating rte_net_ionic_mingw with a custom command
[1268/2790] Generating rte_net_ionic_def with a custom command
[1269/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_mac_api.c.o
[1270/2790] Generating rte_net_ipn3ke_def with a custom command
[1271/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1272/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1273/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1274/2790] Generating rte_net_ipn3ke_mingw with a custom command
[1275/2790] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1276/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1277/2790] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1278/2790] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1279/2790] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1280/2790] Linking static target drivers/libtmp_rte_net_e1000.a
[1281/2790] Linking static target drivers/net/i40e/base/libi40e_base.a
[1282/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_ptp_hw.c.o
[1283/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1284/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1285/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1286/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1287/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1288/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1289/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1290/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1291/2790] Generating rte_net_failsafe.sym_chk with a custom command (wrapped by meson to capture output)
[1292/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1293/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1294/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1295/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1296/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1297/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1298/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1299/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1300/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1301/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1302/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1303/2790] Generating rte_net_ixgbe_mingw with a custom command
[1304/2790] Generating rte_net_kni_def with a custom command
[1305/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1306/2790] Generating rte_net_kni_mingw with a custom command
[1307/2790] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1308/2790] Linking static target drivers/net/igc/base/libigc_base.a
[1309/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1310/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1311/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_ethdev.c.o
[1312/2790] Generating rte_net_liquidio_mingw with a custom command
[1313/2790] Generating rte_net_liquidio_def with a custom command
[1314/2790] Generating rte_net_ixgbe_def with a custom command
[1315/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1316/2790] Generating rte_net_memif_def with a custom command
[1317/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1318/2790] Generating rte_net_memif_mingw with a custom command
[1319/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1320/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1321/2790] Generating eal.sym_chk with a custom command (wrapped by meson to capture output)
[1322/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1323/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1324/2790] Generating rte_net_netvsc_def with a custom command
[1325/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1326/2790] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1327/2790] Generating rte_net_e1000.pmd.c with a custom command
[1328/2790] Linking static target drivers/libtmp_rte_net_ena.a
[1329/2790] Generating rte_net_netvsc_mingw with a custom command
[1330/2790] Linking target lib/librte_eal.so.22.0
[1331/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1332/2790] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1333/2790] Compiling C object drivers/librte_net_e1000.so.22.0.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1334/2790] Generating rte_net_cxgbe.pmd.c with a custom command
[1335/2790] Linking static target drivers/librte_net_e1000.a
[1336/2790] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1337/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1338/2790] Compiling C object drivers/librte_net_cxgbe.so.22.0.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1339/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_tm.c.o
[1340/2790] Linking static target drivers/librte_net_cxgbe.a
[1341/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1342/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_vf_representor.c.o
[1343/2790] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1344/2790] Linking static target drivers/libtmp_rte_net_hinic.a
[1345/2790] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1346/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1347/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1348/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_lif.c.o
[1349/2790] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1350/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1351/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rx_filter.c.o
[1352/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_representor.c.o
[1353/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1354/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1355/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_dev.c.o
[1356/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1357/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1358/2790] Generating rte_net_ena.pmd.c with a custom command
[1359/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_main.c.o
[1360/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1361/2790] Generating rte_net_nfp_def with a custom command
[1362/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1363/2790] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1364/2790] Compiling C object drivers/librte_net_ena.so.22.0.p/meson-generated_.._rte_net_ena.pmd.c.o
[1365/2790] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1366/2790] Linking static target drivers/libtmp_rte_net_kni.a
[1367/2790] Linking static target drivers/librte_net_ena.a
[1368/2790] Generating rte_net_nfp_mingw with a custom command
[1369/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1370/2790] Generating rte_net_hinic.pmd.c with a custom command
[1371/2790] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1372/2790] Linking static target drivers/librte_net_hinic.a
[1373/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1374/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1375/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1376/2790] Compiling C object drivers/librte_net_hinic.so.22.0.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1377/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1378/2790] Generating rte_net_kni.pmd.c with a custom command
[1379/2790] Generating rte_net_ngbe_def with a custom command
[1380/2790] Generating rte_net_cxgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1381/2790] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1382/2790] Compiling C object drivers/librte_net_kni.so.22.0.p/meson-generated_.._rte_net_kni.pmd.c.o
[1383/2790] Linking static target drivers/librte_net_kni.a
[1384/2790] Generating rte_net_ngbe_mingw with a custom command
[1385/2790] Generating rte_net_null_def with a custom command
[1386/2790] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1387/2790] Generating rte_net_e1000.sym_chk with a custom command (wrapped by meson to capture output)
[1388/2790] Generating rte_net_null_mingw with a custom command
[1389/2790] Linking static target drivers/libtmp_rte_net_igc.a
[1390/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1391/2790] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1392/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1393/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1394/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1395/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1396/2790] Generating rte_net_octeontx_def with a custom command
[1397/2790] Generating symbol file lib/librte_eal.so.22.0.p/librte_eal.so.22.0.symbols
[1398/2790] Generating rte_net_octeontx_mingw with a custom command
[1399/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1400/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1401/2790] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1402/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_sched.c.o
[1403/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1404/2790] Linking target lib/librte_ring.so.22.0
[1405/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1406/2790] Linking target lib/librte_meter.so.22.0
[1407/2790] Generating rte_net_ena.sym_chk with a custom command (wrapped by meson to capture output)
[1408/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1409/2790] Generating rte_net_igc.pmd.c with a custom command
[1410/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_mng.c.o
[1411/2790] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1412/2790] Linking target lib/librte_pci.so.22.0
[1413/2790] Generating rte_net_dpaa2.pmd.c with a custom command
[1414/2790] Linking target lib/librte_acl.so.22.0
[1415/2790] Linking target lib/librte_timer.so.22.0
[1416/2790] Linking target lib/librte_cfgfile.so.22.0
[1417/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1418/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_ethdev.c.o
[1419/2790] Linking target lib/librte_jobstats.so.22.0
[1420/2790] Linking target lib/librte_rawdev.so.22.0
[1421/2790] Linking target lib/librte_stack.so.22.0
[1422/2790] Linking target lib/librte_graph.so.22.0
[1423/2790] Linking target drivers/librte_common_dpaax.so.22.0
[1424/2790] Linking target drivers/librte_common_iavf.so.22.0
[1425/2790] Linking target drivers/librte_common_octeontx.so.22.0
[1426/2790] Generating rte_net_hinic.sym_chk with a custom command (wrapped by meson to capture output)
[1427/2790] Compiling C object drivers/librte_net_dpaa2.so.22.0.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1428/2790] Linking target drivers/librte_bus_auxiliary.so.22.0
[1429/2790] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1430/2790] Linking static target drivers/net/ice/libice_avx512_lib.a
[1431/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_rtl.c.o
[1432/2790] Linking static target drivers/librte_net_dpaa2.a
[1433/2790] Linking target drivers/librte_bus_vdev.so.22.0
[1434/2790] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1435/2790] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1436/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1437/2790] Compiling C object drivers/librte_net_igc.so.22.0.p/meson-generated_.._rte_net_igc.pmd.c.o
[1438/2790] Linking target drivers/librte_bus_vmbus.so.22.0
[1439/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy.c.o
[1440/2790] Linking static target drivers/librte_net_igc.a
[1441/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1442/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1443/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1444/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1445/2790] Generating rte_net_kni.sym_chk with a custom command (wrapped by meson to capture output)
[1446/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn10k_rx_mseg.c.o
[1447/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_yt.c.o
[1448/2790] Compiling C object drivers/libtmp_rte_net_ipn3ke.a.p/net_ipn3ke_ipn3ke_flow.c.o
[1449/2790] Linking static target drivers/libtmp_rte_net_ipn3ke.a
[1450/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1451/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_hw.c.o
[1452/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1453/2790] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1454/2790] Linking static target drivers/libtmp_rte_net_liquidio.a
[1455/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_common.c.o
[1456/2790] Compiling C object drivers/libtmp_rte_net_ngbe.a.p/net_ngbe_ngbe_ethdev.c.o
[1457/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1458/2790] Generating symbol file lib/librte_ring.so.22.0.p/librte_ring.so.22.0.symbols
[1459/2790] Generating symbol file lib/librte_meter.so.22.0.p/librte_meter.so.22.0.symbols
[1460/2790] Generating symbol file lib/librte_pci.so.22.0.p/librte_pci.so.22.0.symbols
[1461/2790] Generating symbol file lib/librte_timer.so.22.0.p/librte_timer.so.22.0.symbols
[1462/2790] Generating symbol file drivers/librte_common_dpaax.so.22.0.p/librte_common_dpaax.so.22.0.symbols
[1463/2790] Generating symbol file lib/librte_rawdev.so.22.0.p/librte_rawdev.so.22.0.symbols
[1464/2790] Linking target lib/librte_mempool.so.22.0
[1465/2790] Generating symbol file lib/librte_stack.so.22.0.p/librte_stack.so.22.0.symbols
[1466/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1467/2790] Generating symbol file drivers/librte_common_iavf.so.22.0.p/librte_common_iavf.so.22.0.symbols
[1468/2790] Generating symbol file drivers/librte_bus_vdev.so.22.0.p/librte_bus_vdev.so.22.0.symbols
[1469/2790] Linking target lib/librte_rcu.so.22.0
[1470/2790] Linking target drivers/librte_bus_pci.so.22.0
[1471/2790] Generating symbol file lib/librte_graph.so.22.0.p/librte_graph.so.22.0.symbols
[1472/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_rxtx.c.o
[1473/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1474/2790] Generating rte_net_octeontx2_def with a custom command
[1475/2790] Generating rte_net_octeontx2_mingw with a custom command
[1476/2790] Linking target drivers/librte_bus_ifpga.so.22.0
[1477/2790] Generating rte_net_igc.sym_chk with a custom command (wrapped by meson to capture output)
[1478/2790] Generating rte_net_octeontx_ep_mingw with a custom command
[1479/2790] Generating rte_net_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[1480/2790] Generating symbol file drivers/librte_common_octeontx.so.22.0.p/librte_common_octeontx.so.22.0.symbols
[1481/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1482/2790] Generating rte_net_pcap_mingw with a custom command
[1483/2790] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1484/2790] Linking static target drivers/libtmp_rte_net_memif.a
[1485/2790] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1486/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx2_ep_vf.c.o
[1487/2790] Linking static target drivers/libtmp_rte_net_netvsc.a
[1488/2790] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1489/2790] Generating rte_net_octeontx_ep_def with a custom command
[1490/2790] Linking static target drivers/libtmp_rte_net_i40e.a
[1491/2790] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1492/2790] Generating rte_net_pcap_def with a custom command
[1493/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1494/2790] Generating rte_net_pfe_def with a custom command
[1495/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1496/2790] Linking static target drivers/libtmp_rte_net_null.a
[1497/2790] Generating symbol file lib/librte_mempool.so.22.0.p/librte_mempool.so.22.0.symbols
[1498/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1499/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1500/2790] Generating rte_net_memif.pmd.c with a custom command
[1501/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1502/2790] Linking target lib/librte_mbuf.so.22.0
[1503/2790] Linking target lib/librte_rib.so.22.0
[1504/2790] Linking target drivers/librte_mempool_ring.so.22.0
[1505/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1506/2790] Linking target drivers/librte_mempool_bucket.so.22.0
[1507/2790] Generating rte_net_pfe_mingw with a custom command
[1508/2790] Generating rte_net_netvsc.pmd.c with a custom command
[1509/2790] Generating symbol file drivers/librte_bus_ifpga.so.22.0.p/librte_bus_ifpga.so.22.0.symbols
[1510/2790] Linking target drivers/librte_mempool_stack.so.22.0
[1511/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1512/2790] Compiling C object drivers/librte_net_memif.so.22.0.p/meson-generated_.._rte_net_memif.pmd.c.o
[1513/2790] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1514/2790] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1515/2790] Compiling C object drivers/librte_net_netvsc.so.22.0.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1516/2790] Linking static target drivers/librte_net_netvsc.a
[1517/2790] Linking static target drivers/librte_net_memif.a
[1518/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1519/2790] Generating symbol file drivers/librte_bus_pci.so.22.0.p/librte_bus_pci.so.22.0.symbols
[1520/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1521/2790] Generating rte_net_ipn3ke.pmd.c with a custom command
[1522/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_eeprom.c.o
[1523/2790] Generating rte_net_null.pmd.c with a custom command
[1524/2790] Generating rte_net_liquidio.pmd.c with a custom command
[1525/2790] Compiling C object drivers/librte_net_ipn3ke.a.p/meson-generated_.._rte_net_ipn3ke.pmd.c.o
[1526/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_dump.c.o
[1527/2790] Linking static target drivers/librte_net_ipn3ke.a
[1528/2790] Compiling C object drivers/librte_net_ipn3ke.so.22.0.p/meson-generated_.._rte_net_ipn3ke.pmd.c.o
[1529/2790] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1530/2790] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1531/2790] Linking static target drivers/librte_net_null.a
[1532/2790] Compiling C object drivers/librte_net_liquidio.so.22.0.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1533/2790] Linking static target drivers/librte_net_liquidio.a
[1534/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1535/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1536/2790] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1537/2790] Compiling C object drivers/librte_net_null.so.22.0.p/meson-generated_.._rte_net_null.pmd.c.o
[1538/2790] Linking static target drivers/libtmp_rte_net_octeontx.a
[1539/2790] Generating symbol file lib/librte_acl.so.22.0.p/librte_acl.so.22.0.symbols
[1540/2790] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1541/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_ethdev_vf.c.o
[1542/2790] Compiling C object drivers/net/ngbe/base/libngbe_base.a.p/ngbe_phy_mvl.c.o
[1543/2790] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1544/2790] Linking static target drivers/net/ngbe/base/libngbe_base.a
[1545/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_cpp_bridge.c.o
[1546/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1547/2790] Generating symbol file drivers/librte_bus_vmbus.so.22.0.p/librte_bus_vmbus.so.22.0.symbols
[1548/2790] Generating symbol file lib/librte_rcu.so.22.0.p/librte_rcu.so.22.0.symbols
[1549/2790] Generating rte_net_qede_def with a custom command
[1550/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1551/2790] Compiling C object drivers/libtmp_rte_net_cnxk.a.p/net_cnxk_cn9k_tx_mseg.c.o
[1552/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_vf.c.o
[1553/2790] Linking static target drivers/libtmp_rte_net_cnxk.a
[1554/2790] Generating rte_net_qede_mingw with a custom command
[1555/2790] Generating rte_net_ring_mingw with a custom command
[1556/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1557/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_ethdev.c.o
[1558/2790] Generating rte_net_ring_def with a custom command
[1559/2790] Generating rte_net_i40e.pmd.c with a custom command
[1560/2790] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1561/2790] Generating symbol file lib/librte_mbuf.so.22.0.p/librte_mbuf.so.22.0.symbols
[1562/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1563/2790] Linking static target drivers/librte_net_i40e.a
[1564/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1565/2790] Generating rte_net_octeontx.pmd.c with a custom command
[1566/2790] Linking target lib/librte_cryptodev.so.22.0
[1567/2790] Linking target lib/librte_bbdev.so.22.0
[1568/2790] Compiling C object drivers/libtmp_rte_net_ionic.a.p/net_ionic_ionic_rxtx.c.o
[1569/2790] Linking target lib/librte_net.so.22.0
[1570/2790] Linking target lib/librte_compressdev.so.22.0
[1571/2790] Linking target lib/librte_distributor.so.22.0
[1572/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1573/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1574/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_ethdev.c.o
[1575/2790] Linking target lib/librte_reorder.so.22.0
[1576/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1577/2790] Generating rte_net_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1578/2790] Linking target lib/librte_regexdev.so.22.0
[1579/2790] Compiling C object drivers/librte_net_i40e.so.22.0.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1580/2790] Linking static target drivers/libtmp_rte_net_ionic.a
[1581/2790] Compiling C object drivers/libtmp_rte_net_octeontx_ep.a.p/net_octeontx_ep_otx_ep_rxtx.c.o
[1582/2790] Linking target drivers/librte_mempool_octeontx.so.22.0
[1583/2790] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1584/2790] Compiling C object drivers/librte_net_octeontx.so.22.0.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1585/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1586/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1587/2790] Linking static target drivers/librte_net_octeontx.a
[1588/2790] Linking static target drivers/libtmp_rte_net_octeontx_ep.a
[1589/2790] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1590/2790] Generating symbol file lib/librte_rib.so.22.0.p/librte_rib.so.22.0.symbols
[1591/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1592/2790] Linking static target drivers/libtmp_rte_net_nfp.a
[1593/2790] Generating rte_net_cnxk.pmd.c with a custom command
[1594/2790] Generating rte_net_null.sym_chk with a custom command (wrapped by meson to capture output)
[1595/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1596/2790] Linking target lib/librte_fib.so.22.0
[1597/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1598/2790] Compiling C object drivers/librte_net_cnxk.so.22.0.p/meson-generated_.._rte_net_cnxk.pmd.c.o
[1599/2790] Linking target lib/librte_sched.so.22.0
[1600/2790] Compiling C object drivers/librte_net_cnxk.a.p/meson-generated_.._rte_net_cnxk.pmd.c.o
[1601/2790] Linking static target drivers/librte_net_cnxk.a
[1602/2790] Generating rte_net_ionic.pmd.c with a custom command
[1603/2790] Compiling C object drivers/librte_net_ionic.a.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1604/2790] Generating rte_net_octeontx_ep.pmd.c with a custom command
[1605/2790] Linking static target drivers/librte_net_ionic.a
[1606/2790] Generating symbol file lib/librte_bbdev.so.22.0.p/librte_bbdev.so.22.0.symbols
[1607/2790] Compiling C object drivers/librte_net_ionic.so.22.0.p/meson-generated_.._rte_net_ionic.pmd.c.o
[1608/2790] Generating symbol file lib/librte_compressdev.so.22.0.p/librte_compressdev.so.22.0.symbols
[1609/2790] Generating symbol file lib/librte_cryptodev.so.22.0.p/librte_cryptodev.so.22.0.symbols
[1610/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1611/2790] Compiling C object drivers/librte_net_octeontx_ep.so.22.0.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1612/2790] Generating symbol file lib/librte_net.so.22.0.p/librte_net.so.22.0.symbols
[1613/2790] Compiling C object drivers/librte_net_octeontx_ep.a.p/meson-generated_.._rte_net_octeontx_ep.pmd.c.o
[1614/2790] Linking target lib/librte_security.so.22.0
[1615/2790] Generating rte_common_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[1616/2790] Generating rte_net_memif.sym_chk with a custom command (wrapped by meson to capture output)
[1617/2790] Linking target drivers/librte_common_cpt.so.22.0
[1618/2790] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_pcap_osdep_linux.c.o
[1619/2790] Generating symbol file lib/librte_regexdev.so.22.0.p/librte_regexdev.so.22.0.symbols
[1620/2790] Linking target lib/librte_cmdline.so.22.0
[1621/2790] Linking target lib/librte_ethdev.so.22.0
[1622/2790] Linking static target drivers/librte_net_octeontx_ep.a
[1623/2790] Linking target lib/librte_hash.so.22.0
[1624/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1625/2790] Generating rte_net_nfp.pmd.c with a custom command
[1626/2790] Linking target drivers/librte_common_qat.so.22.0
[1627/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1628/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1629/2790] Generating symbol file drivers/librte_mempool_octeontx.so.22.0.p/librte_mempool_octeontx.so.22.0.symbols
[1630/2790] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1631/2790] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1632/2790] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1633/2790] Linking static target drivers/librte_net_nfp.a
[1634/2790] Compiling C object drivers/librte_net_nfp.so.22.0.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1635/2790] Generating symbol file lib/librte_reorder.so.22.0.p/librte_reorder.so.22.0.symbols
[1636/2790] Generating rte_net_liquidio.sym_chk with a custom command (wrapped by meson to capture output)
[1637/2790] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1638/2790] Generating rte_net_ipn3ke.sym_chk with a custom command (wrapped by meson to capture output)
[1639/2790] Linking static target drivers/libtmp_rte_net_hns3.a
[1640/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1641/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1642/2790] Generating rte_net_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[1643/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1644/2790] Generating rte_common_sfc_efx.sym_chk with a custom command (wrapped by meson to capture output)
[1645/2790] Generating rte_net_softnic_mingw with a custom command
[1646/2790] Generating rte_net_sfc_def with a custom command
[1647/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1648/2790] Generating rte_net_sfc_mingw with a custom command
[1649/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1650/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1651/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1652/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_service.c.o
[1653/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1654/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1655/2790] Generating rte_net_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[1656/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1657/2790] Generating symbol file lib/librte_security.so.22.0.p/librte_security.so.22.0.symbols
[1658/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1659/2790] Generating rte_net_ionic.sym_chk with a custom command (wrapped by meson to capture output)
[1660/2790] Generating symbol file lib/librte_hash.so.22.0.p/librte_hash.so.22.0.symbols
[1661/2790] Generating rte_net_ixgbe.pmd.c with a custom command
[1662/2790] Generating symbol file lib/librte_ethdev.so.22.0.p/librte_ethdev.so.22.0.symbols
[1663/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sw_stats.c.o
[1664/2790] Linking target drivers/librte_common_cnxk.so.22.0
[1665/2790] Generating symbol file lib/librte_sched.so.22.0.p/librte_sched.so.22.0.symbols
[1666/2790] Linking target lib/librte_efd.so.22.0
[1667/2790] Linking target lib/librte_lpm.so.22.0
[1668/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1669/2790] Linking target lib/librte_metrics.so.22.0
[1670/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1671/2790] Linking target lib/librte_eventdev.so.22.0
[1672/2790] Linking target lib/librte_gro.so.22.0
[1673/2790] Generating rte_net_octeontx_ep.sym_chk with a custom command (wrapped by meson to capture output)
[1674/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1675/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1676/2790] Linking target drivers/librte_common_sfc_efx.so.22.0
[1677/2790] Linking target lib/librte_ip_frag.so.22.0
[1678/2790] Linking target lib/librte_kni.so.22.0
[1679/2790] Linking target lib/librte_gso.so.22.0
[1680/2790] Linking target lib/librte_member.so.22.0
[1681/2790] Linking target lib/librte_power.so.22.0
[1682/2790] Linking target lib/librte_pdump.so.22.0
[1683/2790] Linking target lib/librte_ipsec.so.22.0
[1684/2790] Linking target drivers/librte_net_af_packet.so.22.0
[1685/2790] Linking target lib/librte_bpf.so.22.0
[1686/2790] Generating rte_net_nfp.sym_chk with a custom command (wrapped by meson to capture output)
[1687/2790] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1688/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1689/2790] Linking target drivers/librte_common_octeontx2.so.22.0
[1690/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1691/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1692/2790] Linking target drivers/librte_net_ark.so.22.0
[1693/2790] Linking target drivers/librte_net_atlantic.so.22.0
[1694/2790] Linking target drivers/librte_net_avp.so.22.0
[1695/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1696/2790] Linking target drivers/librte_net_axgbe.so.22.0
[1697/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1698/2790] Linking target drivers/librte_net_bnx2x.so.22.0
[1699/2790] Linking target drivers/librte_net_cxgbe.so.22.0
[1700/2790] Linking target drivers/librte_net_enetc.so.22.0
[1701/2790] Linking target drivers/librte_net_ena.so.22.0
[1702/2790] Linking target drivers/librte_net_failsafe.so.22.0
[1703/2790] Linking target drivers/librte_net_enic.so.22.0
[1704/2790] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1705/2790] Linking target drivers/librte_net_e1000.so.22.0
[1706/2790] Linking target drivers/librte_net_fm10k.so.22.0
[1707/2790] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1708/2790] Compiling C object drivers/librte_net_ixgbe.so.22.0.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1709/2790] Linking target drivers/librte_net_bnxt.so.22.0
[1710/2790] Linking static target drivers/libtmp_rte_net_iavf.a
[1711/2790] Linking static target drivers/librte_net_ixgbe.a
[1712/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1713/2790] Generating symbol file drivers/librte_common_cpt.so.22.0.p/librte_common_cpt.so.22.0.symbols
[1714/2790] Linking target drivers/librte_net_igc.so.22.0
[1715/2790] Linking target drivers/librte_net_ipn3ke.so.22.0
[1716/2790] Linking static target drivers/libtmp_rte_net_pfe.a
[1717/2790] Linking target drivers/librte_net_liquidio.so.22.0
[1718/2790] Linking target drivers/librte_net_memif.so.22.0
[1719/2790] Linking target drivers/librte_net_ionic.so.22.0
[1720/2790] Linking target drivers/librte_net_netvsc.so.22.0
[1721/2790] Linking target drivers/librte_net_hinic.so.22.0
[1722/2790] Linking target drivers/librte_net_null.so.22.0
[1723/2790] Generating rte_net_softnic_def with a custom command
[1724/2790] Linking target drivers/librte_net_nfp.so.22.0
[1725/2790] Generating rte_net_tap_def with a custom command
[1726/2790] Generating rte_net_tap_mingw with a custom command
[1727/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae_counter.c.o
[1728/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1729/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1730/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1731/2790] Generating symbol file lib/librte_metrics.so.22.0.p/librte_metrics.so.22.0.symbols
[1732/2790] Generating rte_net_thunderx_def with a custom command
[1733/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1734/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1735/2790] Generating symbol file lib/librte_ip_frag.so.22.0.p/librte_ip_frag.so.22.0.symbols
[1736/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1737/2790] Linking target lib/librte_latencystats.so.22.0
[1738/2790] Linking target lib/librte_bitratestats.so.22.0
[1739/2790] Generating rte_net_pfe.pmd.c with a custom command
[1740/2790] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_pcap_ethdev.c.o
[1741/2790] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1742/2790] Generating rte_net_thunderx_mingw with a custom command
[1743/2790] Generating symbol file drivers/librte_common_sfc_efx.so.22.0.p/librte_common_sfc_efx.so.22.0.symbols
[1744/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1745/2790] Linking static target drivers/librte_net_pfe.a
[1746/2790] Linking static target drivers/libtmp_rte_net_pcap.a
[1747/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1748/2790] Compiling C object drivers/librte_net_pfe.so.22.0.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1749/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1750/2790] Linking target drivers/librte_net_bond.so.22.0
[1751/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1752/2790] Generating rte_net_iavf.pmd.c with a custom command
[1753/2790] Generating rte_net_txgbe_def with a custom command
[1754/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1755/2790] Generating rte_net_txgbe_mingw with a custom command
[1756/2790] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1757/2790] Compiling C object drivers/librte_net_iavf.so.22.0.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1758/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1759/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1760/2790] Generating rte_net_vdev_netvsc_def with a custom command
[1761/2790] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1762/2790] Generating symbol file drivers/librte_net_ipn3ke.so.22.0.p/librte_net_ipn3ke.so.22.0.symbols
[1763/2790] Generating rte_net_vdev_netvsc_mingw with a custom command
[1764/2790] Linking static target drivers/librte_net_iavf.a
[1765/2790] Generating rte_net_vhost_def with a custom command
[1766/2790] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1767/2790] Generating rte_net_vhost_mingw with a custom command
[1768/2790] Generating rte_net_pcap.pmd.c with a custom command
[1769/2790] Generating rte_net_i40e.sym_chk with a custom command (wrapped by meson to capture output)
[1770/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1771/2790] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1772/2790] Linking static target drivers/librte_net_pcap.a
[1773/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1774/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1775/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1776/2790] Linking target drivers/librte_net_i40e.so.22.0
[1777/2790] Compiling C object drivers/librte_net_pcap.so.22.0.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1778/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1779/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1780/2790] Generating symbol file lib/librte_lpm.so.22.0.p/librte_lpm.so.22.0.symbols
[1781/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1782/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1783/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1784/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1785/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1786/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1787/2790] Generating rte_net_pfe.sym_chk with a custom command (wrapped by meson to capture output)
[1788/2790] Generating rte_net_hns3.pmd.c with a custom command
[1789/2790] Linking target lib/librte_node.so.22.0
[1790/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1791/2790] Generating rte_net_virtio_mingw with a custom command
[1792/2790] Generating rte_net_virtio_def with a custom command
[1793/2790] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1794/2790] Compiling C object drivers/librte_net_hns3.so.22.0.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1795/2790] Compiling C object drivers/librte_net_vmxnet3.so.22.0.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1796/2790] Linking target drivers/librte_net_pfe.so.22.0
[1797/2790] Linking static target drivers/librte_net_hns3.a
[1798/2790] Generating symbol file lib/librte_eventdev.so.22.0.p/librte_eventdev.so.22.0.symbols
[1799/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1800/2790] Generating symbol file lib/librte_kni.so.22.0.p/librte_kni.so.22.0.symbols
[1801/2790] Generating symbol file drivers/librte_common_cnxk.so.22.0.p/librte_common_cnxk.so.22.0.symbols
[1802/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1803/2790] Linking target drivers/librte_net_vmxnet3.so.22.0
[1804/2790] Generating symbol file lib/librte_gso.so.22.0.p/librte_gso.so.22.0.symbols
[1805/2790] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1806/2790] Linking target drivers/librte_bus_dpaa.so.22.0
[1807/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1808/2790] Linking static target drivers/net/ice/base/libice_base.a
[1809/2790] Linking target drivers/librte_bus_fslmc.so.22.0
[1810/2790] Generating symbol file drivers/librte_common_octeontx2.so.22.0.p/librte_common_octeontx2.so.22.0.symbols
[1811/2790] Linking target drivers/librte_mempool_cnxk.so.22.0
[1812/2790] Compiling C object drivers/libtmp_rte_net_ngbe.a.p/net_ngbe_ngbe_rxtx.c.o
[1813/2790] Generating rte_raw_cnxk_bphy_mingw with a custom command
[1814/2790] Linking target lib/librte_port.so.22.0
[1815/2790] Linking static target drivers/libtmp_rte_net_ngbe.a
[1816/2790] Linking target drivers/librte_net_kni.so.22.0
[1817/2790] Generating rte_raw_cnxk_bphy_def with a custom command
[1818/2790] Linking target drivers/librte_net_octeontx.so.22.0
[1819/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio.c.o
[1820/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1821/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1822/2790] Generating rte_raw_dpaa2_qdma_def with a custom command
[1823/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci_ethdev.c.o
[1824/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_fdir.c.o
[1825/2790] Linking target drivers/librte_mempool_octeontx2.so.22.0
[1826/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_tm.c.o
[1827/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1828/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1829/2790] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1830/2790] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1831/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1832/2790] Linking target drivers/librte_net_octeontx_ep.so.22.0
[1833/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ipsec.c.o
[1834/2790] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1835/2790] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1836/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1837/2790] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1838/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev_vf.c.o
[1839/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1840/2790] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1841/2790] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1842/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1843/2790] Generating rte_net_hns3.sym_chk with a custom command (wrapped by meson to capture output)
[1844/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1845/2790] Generating symbol file lib/librte_port.so.22.0.p/librte_port.so.22.0.symbols
[1846/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1847/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1848/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_cgx_test.c.o
[1849/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1850/2790] Linking target lib/librte_table.so.22.0
[1851/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_irq.c.o
[1852/2790] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1853/2790] Generating rte_net_ngbe.pmd.c with a custom command
[1854/2790] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1855/2790] Generating rte_net_iavf.sym_chk with a custom command (wrapped by meson to capture output)
[1856/2790] Generating rte_net_pcap.sym_chk with a custom command (wrapped by meson to capture output)
[1857/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy.c.o
[1858/2790] Compiling C object drivers/librte_net_ngbe.so.22.0.p/meson-generated_.._rte_net_ngbe.pmd.c.o
[1859/2790] Compiling C object drivers/librte_net_ngbe.a.p/meson-generated_.._rte_net_ngbe.pmd.c.o
[1860/2790] Linking static target drivers/librte_net_vdev_netvsc.a
[1861/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1862/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1863/2790] Linking static target drivers/librte_net_ngbe.a
[1864/2790] Generating symbol file drivers/librte_bus_fslmc.so.22.0.p/librte_bus_fslmc.so.22.0.symbols
[1865/2790] Linking target drivers/librte_net_hns3.so.22.0
[1866/2790] Compiling C object drivers/librte_net_vdev_netvsc.so.22.0.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1867/2790] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1868/2790] Linking target drivers/librte_net_pcap.so.22.0
[1869/2790] Generating symbol file drivers/librte_net_octeontx.so.22.0.p/librte_net_octeontx.so.22.0.symbols
[1870/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1871/2790] Generating rte_raw_ifpga_def with a custom command
[1872/2790] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1873/2790] Generating rte_raw_ifpga_mingw with a custom command
[1874/2790] Compiling C object drivers/libtmp_rte_raw_cnxk_bphy.a.p/raw_cnxk_bphy_cnxk_bphy_cgx.c.o
[1875/2790] Linking target drivers/librte_net_iavf.so.22.0
[1876/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1877/2790] Generating rte_raw_ioat_def with a custom command
[1878/2790] Linking static target drivers/libtmp_rte_raw_cnxk_bphy.a
[1879/2790] Linking target drivers/librte_mempool_dpaa2.so.22.0
[1880/2790] Generating symbol file drivers/librte_net_i40e.so.22.0.p/librte_net_i40e.so.22.0.symbols
[1881/2790] Generating rte_raw_ntb_mingw with a custom command
[1882/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_flow.c.o
[1883/2790] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1884/2790] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1885/2790] Linking static target drivers/libtmp_rte_net_vhost.a
[1886/2790] Generating rte_raw_octeontx2_dma_def with a custom command
[1887/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_api.c.o
[1888/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1889/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_enumerate.c.o
[1890/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port.c.o
[1891/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port_error.c.o
[1892/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_ifpga_hw_api.c.o
[1893/2790] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1894/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1895/2790] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1896/2790] Generating rte_raw_octeontx2_ep_def with a custom command
[1897/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_dperf.c.o
[1898/2790] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.22.0.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1899/2790] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1900/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_feature_dev.c.o
[1901/2790] Generating symbol file drivers/librte_bus_dpaa.so.22.0.p/librte_bus_dpaa.so.22.0.symbols
[1902/2790] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1903/2790] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1904/2790] Generating rte_raw_skeleton_mingw with a custom command
[1905/2790] Generating rte_raw_skeleton_def with a custom command
[1906/2790] Linking static target drivers/libtmp_rte_net_ring.a
[1907/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_iperf.c.o
[1908/2790] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed.c.o
[1909/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1910/2790] Generating rte_raw_cnxk_bphy.pmd.c with a custom command
[1911/2790] Linking target drivers/librte_mempool_dpaa.so.22.0
[1912/2790] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1913/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_sec_mgr.c.o
[1914/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_pr.c.o
[1915/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1916/2790] Compiling C object drivers/librte_raw_cnxk_bphy.a.p/meson-generated_.._rte_raw_cnxk_bphy.pmd.c.o
[1917/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_rsu.c.o
[1918/2790] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1919/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_at24_eeprom.c.o
[1920/2790] Generating rte_net_vhost.pmd.c with a custom command
[1921/2790] Linking static target drivers/librte_raw_cnxk_bphy.a
[1922/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1923/2790] Compiling C object drivers/librte_raw_cnxk_bphy.so.22.0.p/meson-generated_.._rte_raw_cnxk_bphy.pmd.c.o
[1924/2790] Generating symbol file drivers/librte_mempool_octeontx2.so.22.0.p/librte_mempool_octeontx2.so.22.0.symbols
[1925/2790] Linking static target drivers/libtmp_rte_raw_ntb.a
[1926/2790] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1927/2790] Compiling C object drivers/librte_net_vhost.so.22.0.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1928/2790] Generating symbol file drivers/librte_mempool_cnxk.so.22.0.p/librte_mempool_cnxk.so.22.0.symbols
[1929/2790] Linking static target drivers/librte_net_vhost.a
[1930/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1931/2790] Generating symbol file lib/librte_table.so.22.0.p/librte_table.so.22.0.symbols
[1932/2790] Generating rte_crypto_bcmfs_mingw with a custom command
[1933/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme.c.o
[1934/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi_transaction.c.o
[1935/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1936/2790] Generating rte_crypto_bcmfs_def with a custom command
[1937/2790] Generating rte_net_ixgbe.sym_chk with a custom command (wrapped by meson to capture output)
[1938/2790] Generating rte_crypto_caam_jr_mingw with a custom command
[1939/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_hw_api.c.o
[1940/2790] Linking target lib/librte_flow_classify.so.22.0
[1941/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_eth_group.c.o
[1942/2790] Generating rte_crypto_caam_jr_def with a custom command
[1943/2790] Linking target drivers/librte_net_cnxk.so.22.0
[1944/2790] Generating rte_net_ngbe.sym_chk with a custom command (wrapped by meson to capture output)
[1945/2790] Linking target drivers/librte_net_ixgbe.so.22.0
[1946/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_i2c.c.o
[1947/2790] Linking target drivers/librte_net_ngbe.so.22.0
[1948/2790] Generating rte_raw_ntb.pmd.c with a custom command
[1949/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1950/2790] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1951/2790] Compiling C object drivers/librte_raw_ntb.so.22.0.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1952/2790] Linking static target drivers/librte_raw_ntb.a
[1953/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1954/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1955/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1956/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1957/2790] Generating rte_crypto_cnxk_mingw with a custom command
[1958/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1959/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_bus.c.o
[1960/2790] Generating rte_crypto_dpaa_sec_def with a custom command
[1961/2790] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1962/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1963/2790] Generating symbol file drivers/librte_mempool_dpaa.so.22.0.p/librte_mempool_dpaa.so.22.0.symbols
[1964/2790] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1965/2790] Generating rte_crypto_dpaa2_sec_def with a custom command
[1966/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1967/2790] Linking target drivers/librte_net_dpaa.so.22.0
[1968/2790] Generating rte_crypto_cnxk_def with a custom command
[1969/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1970/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1971/2790] Generating rte_net_vdev_netvsc.sym_chk with a custom command (wrapped by meson to capture output)
[1972/2790] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1973/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1974/2790] Generating rte_net_ring.pmd.c with a custom command
[1975/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1976/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1977/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1978/2790] Generating rte_crypto_nitrox_mingw with a custom command
[1979/2790] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1980/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1981/2790] Generating rte_crypto_nitrox_def with a custom command
[1982/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_debug.c.o
[1983/2790] Compiling C object drivers/librte_net_ring.so.22.0.p/meson-generated_.._rte_net_ring.pmd.c.o
[1984/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1985/2790] Linking static target drivers/librte_net_ring.a
[1986/2790] Generating rte_crypto_null_mingw with a custom command
[1987/2790] Generating symbol file drivers/librte_net_cnxk.so.22.0.p/librte_net_cnxk.so.22.0.symbols
[1988/2790] Linking target drivers/librte_net_vdev_netvsc.so.22.0
[1989/2790] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1990/2790] Generating rte_crypto_null_def with a custom command
[1991/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1992/2790] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1993/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1994/2790] Generating rte_crypto_octeontx_mingw with a custom command
[1995/2790] Generating rte_crypto_octeontx_def with a custom command
[1996/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1997/2790] Generating rte_net_vhost.sym_chk with a custom command (wrapped by meson to capture output)
[1998/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1999/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi.c.o
[2000/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[2001/2790] Generating symbol file drivers/librte_mempool_dpaa2.so.22.0.p/librte_mempool_dpaa2.so.22.0.symbols
[2002/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[2003/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_error.c.o
[2004/2790] Generating rte_crypto_octeontx2_mingw with a custom command
[2005/2790] Generating rte_crypto_octeontx2_def with a custom command
[2006/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[2007/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[2008/2790] Linking target drivers/librte_net_dpaa2.so.22.0
[2009/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev.c.o
[2010/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[2011/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[2012/2790] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[2013/2790] Generating rte_crypto_scheduler_mingw with a custom command
[2014/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_cryptodev.c.o
[2015/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[2016/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[2017/2790] Compiling C object drivers/libtmp_rte_raw_ifpga.a.p/raw_ifpga_rte_pmd_ifpga.c.o
[2018/2790] Linking static target drivers/libtmp_rte_net_ice.a
[2019/2790] Generating rte_crypto_scheduler_def with a custom command
[2020/2790] Generating rte_raw_ntb.sym_chk with a custom command (wrapped by meson to capture output)
[2021/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_ipsec.c.o
[2022/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[2023/2790] Generating rte_compress_octeontx_mingw with a custom command
[2024/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_capabilities.c.o
[2025/2790] Linking target drivers/librte_raw_ntb.so.22.0
[2026/2790] Generating rte_raw_dpaa2_cmdif.sym_chk with a custom command (wrapped by meson to capture output)
[2027/2790] Generating rte_compress_octeontx_def with a custom command
[2028/2790] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[2029/2790] Generating rte_compress_zlib_mingw with a custom command
[2030/2790] Generating rte_raw_skeleton.pmd.c with a custom command
[2031/2790] Generating symbol file drivers/librte_net_dpaa.so.22.0.p/librte_net_dpaa.so.22.0.symbols
[2032/2790] Generating rte_crypto_virtio_def with a custom command
[2033/2790] Generating rte_crypto_virtio_mingw with a custom command
[2034/2790] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[2035/2790] Linking target drivers/librte_raw_dpaa2_cmdif.so.22.0
[2036/2790] Linking static target drivers/librte_raw_skeleton.a
[2037/2790] Linking static target drivers/libtmp_rte_net_tap.a
[2038/2790] Compiling C object drivers/librte_raw_skeleton.so.22.0.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[2039/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[2040/2790] Generating rte_regex_octeontx2_def with a custom command
[2041/2790] Generating rte_regex_octeontx2_mingw with a custom command
[2042/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_ipsec.c.o
[2043/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[2044/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[2045/2790] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[2046/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[2047/2790] Generating rte_compress_zlib_def with a custom command
[2048/2790] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[2049/2790] Generating rte_vdpa_ifc_mingw with a custom command
[2050/2790] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[2051/2790] Generating symbol file drivers/librte_net_dpaa2.so.22.0.p/librte_net_dpaa2.so.22.0.symbols
[2052/2790] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[2053/2790] Generating rte_vdpa_ifc_def with a custom command
[2054/2790] Generating rte_raw_cnxk_bphy.sym_chk with a custom command (wrapped by meson to capture output)
[2055/2790] Generating rte_net_tap.pmd.c with a custom command
[2056/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[2057/2790] Generating rte_net_ice.pmd.c with a custom command
[2058/2790] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[2059/2790] Compiling C object drivers/librte_net_tap.so.22.0.p/meson-generated_.._rte_net_tap.pmd.c.o
[2060/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[2061/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[2062/2790] Linking target drivers/librte_raw_cnxk_bphy.so.22.0
[2063/2790] Linking static target drivers/librte_net_tap.a
[2064/2790] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[2065/2790] Compiling C object drivers/librte_net_ice.so.22.0.p/meson-generated_.._rte_net_ice.pmd.c.o
[2066/2790] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_intel_max10.c.o
[2067/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[2068/2790] Linking static target drivers/raw/ifpga/base/libifpga_rawdev_base.a
[2069/2790] Linking static target drivers/librte_net_ice.a
[2070/2790] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[2071/2790] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[2072/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[2073/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_ops.c.o
[2074/2790] Compiling C object drivers/librte_raw_octeontx2_dma.so.22.0.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[2075/2790] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[2076/2790] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[2077/2790] Linking static target drivers/net/qede/base/libqede_base.a
[2078/2790] Linking static target drivers/librte_raw_octeontx2_dma.a
[2079/2790] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[2080/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[2081/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[2082/2790] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[2083/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[2084/2790] Linking static target drivers/libtmp_rte_net_thunderx.a
[2085/2790] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[2086/2790] Compiling C object drivers/librte_raw_dpaa2_qdma.so.22.0.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[2087/2790] Linking static target drivers/librte_raw_dpaa2_qdma.a
[2088/2790] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[2089/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_cryptodev.c.o
[2090/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[2091/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cnxk_cryptodev_sec.c.o
[2092/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[2093/2790] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[2094/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[2095/2790] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[2096/2790] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[2097/2790] Generating rte_raw_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2098/2790] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[2099/2790] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[2100/2790] Linking static target drivers/libtmp_rte_net_softnic.a
[2101/2790] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[2102/2790] Linking static target drivers/libtmp_rte_net_sfc.a
[2103/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[2104/2790] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2105/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[2106/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[2107/2790] Linking static target drivers/libtmp_rte_net_txgbe.a
[2108/2790] Generating rte_event_cnxk_def with a custom command
[2109/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[2110/2790] Linking target drivers/librte_raw_skeleton.so.22.0
[2111/2790] Generating rte_event_cnxk_mingw with a custom command
[2112/2790] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[2113/2790] Generating rte_net_thunderx.pmd.c with a custom command
[2114/2790] Compiling C object drivers/librte_net_thunderx.so.22.0.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[2115/2790] Compiling C object drivers/librte_raw_octeontx2_ep.so.22.0.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[2116/2790] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[2117/2790] Generating rte_crypto_bcmfs.pmd.c with a custom command
[2118/2790] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[2119/2790] Generating rte_net_ring.sym_chk with a custom command (wrapped by meson to capture output)
[2120/2790] Linking static target drivers/librte_net_thunderx.a
[2121/2790] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[2122/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[2123/2790] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[2124/2790] Linking target drivers/librte_net_ring.so.22.0
[2125/2790] Linking static target drivers/librte_crypto_bcmfs.a
[2126/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker.c.o
[2127/2790] Linking static target drivers/librte_raw_octeontx2_ep.a
[2128/2790] Generating rte_net_tap.sym_chk with a custom command (wrapped by meson to capture output)
[2129/2790] Generating rte_net_ice.sym_chk with a custom command (wrapped by meson to capture output)
[2130/2790] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[2131/2790] Linking static target drivers/libtmp_rte_compress_zlib.a
[2132/2790] Linking target drivers/librte_net_tap.so.22.0
[2133/2790] Compiling C object drivers/librte_crypto_bcmfs.so.22.0.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[2134/2790] Generating rte_net_txgbe.pmd.c with a custom command
[2135/2790] Generating rte_raw_dpaa2_qdma.sym_chk with a custom command (wrapped by meson to capture output)
[2136/2790] Compiling C object drivers/librte_net_txgbe.a.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2137/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_burst.c.o
[2138/2790] Linking static target drivers/librte_net_txgbe.a
[2139/2790] Compiling C object drivers/librte_net_txgbe.so.22.0.p/meson-generated_.._rte_net_txgbe.pmd.c.o
[2140/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_burst.c.o
[2141/2790] Linking target drivers/librte_raw_dpaa2_qdma.so.22.0
[2142/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[2143/2790] Generating rte_event_dlb2_def with a custom command
[2144/2790] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[2145/2790] Compiling C object drivers/libtmp_rte_raw_ifpga.a.p/raw_ifpga_ifpga_rawdev.c.o
[2146/2790] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[2147/2790] Linking static target drivers/libtmp_rte_raw_ifpga.a
[2148/2790] Linking static target drivers/libtmp_rte_compress_octeontx.a
[2149/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_eventdev.c.o
[2150/2790] Generating rte_event_dpaa_def with a custom command
[2151/2790] Generating rte_compress_zlib.pmd.c with a custom command
[2152/2790] Generating rte_event_dlb2_mingw with a custom command
[2153/2790] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[2154/2790] Linking target drivers/librte_net_ice.so.22.0
[2155/2790] Generating rte_event_dpaa_mingw with a custom command
[2156/2790] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2157/2790] Compiling C object drivers/librte_compress_zlib.so.22.0.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[2158/2790] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[2159/2790] Linking static target drivers/librte_compress_zlib.a
[2160/2790] Linking static target drivers/libtmp_rte_crypto_null.a
[2161/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[2162/2790] Generating rte_event_dpaa2_mingw with a custom command
[2163/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[2164/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[2165/2790] Generating rte_event_dpaa2_def with a custom command
[2166/2790] Generating rte_event_dsw_def with a custom command
[2167/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_stats.c.o
[2168/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[2169/2790] Generating rte_raw_octeontx2_ep.sym_chk with a custom command (wrapped by meson to capture output)
[2170/2790] Generating rte_event_dsw_mingw with a custom command
[2171/2790] Generating rte_net_softnic.pmd.c with a custom command
[2172/2790] Generating rte_crypto_bcmfs.sym_chk with a custom command (wrapped by meson to capture output)
[2173/2790] Generating rte_compress_octeontx.pmd.c with a custom command
[2174/2790] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[2175/2790] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[2176/2790] Generating rte_raw_ifpga.pmd.c with a custom command
[2177/2790] Compiling C object drivers/librte_net_softnic.a.p/meson-generated_.._rte_net_softnic.pmd.c.o
[2178/2790] Generating rte_vdpa_ifc.pmd.c with a custom command
[2179/2790] Linking target drivers/librte_raw_octeontx2_ep.so.22.0
[2180/2790] Compiling C object drivers/librte_net_softnic.so.22.0.p/meson-generated_.._rte_net_softnic.pmd.c.o
[2181/2790] Compiling C object drivers/librte_raw_ifpga.a.p/meson-generated_.._rte_raw_ifpga.pmd.c.o
[2182/2790] Linking static target drivers/librte_net_softnic.a
[2183/2790] Linking static target drivers/librte_raw_ifpga.a
[2184/2790] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[2185/2790] Compiling C object drivers/librte_raw_ifpga.so.22.0.p/meson-generated_.._rte_raw_ifpga.pmd.c.o
[2186/2790] Generating rte_net_sfc.pmd.c with a custom command
[2187/2790] Compiling C object drivers/librte_compress_octeontx.so.22.0.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2188/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[2189/2790] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[2190/2790] Linking target drivers/librte_crypto_bcmfs.so.22.0
[2191/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[2192/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[2193/2790] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[2194/2790] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[2195/2790] Generating rte_raw_octeontx2_dma.sym_chk with a custom command (wrapped by meson to capture output)
[2196/2790] Generating rte_crypto_null.pmd.c with a custom command
[2197/2790] Compiling C object drivers/librte_net_sfc.so.22.0.p/meson-generated_.._rte_net_sfc.pmd.c.o
[2198/2790] Compiling C object drivers/librte_vdpa_ifc.so.22.0.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2199/2790] Linking static target drivers/librte_compress_octeontx.a
[2200/2790] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[2201/2790] Linking static target drivers/librte_net_sfc.a
[2202/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[2203/2790] Linking static target drivers/librte_vdpa_ifc.a
[2204/2790] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[2205/2790] Compiling C object drivers/librte_crypto_null.so.22.0.p/meson-generated_.._rte_crypto_null.pmd.c.o
[2206/2790] Linking static target drivers/librte_crypto_null.a
[2207/2790] Linking target drivers/librte_raw_octeontx2_dma.so.22.0
[2208/2790] Generating rte_net_thunderx.sym_chk with a custom command (wrapped by meson to capture output)
[2209/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[2210/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[2211/2790] Generating rte_event_octeontx2_mingw with a custom command
[2212/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[2213/2790] Generating rte_event_octeontx2_def with a custom command
[2214/2790] Generating rte_net_txgbe.sym_chk with a custom command (wrapped by meson to capture output)
[2215/2790] Generating rte_crypto_nitrox.pmd.c with a custom command
[2216/2790] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[2217/2790] Generating rte_compress_zlib.sym_chk with a custom command (wrapped by meson to capture output)
[2218/2790] Linking target drivers/librte_net_thunderx.so.22.0
[2219/2790] Linking static target drivers/librte_crypto_nitrox.a
[2220/2790] Compiling C object drivers/librte_crypto_nitrox.so.22.0.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[2221/2790] Linking target drivers/librte_compress_zlib.so.22.0
[2222/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[2223/2790] Generating rte_event_opdl_mingw with a custom command
[2224/2790] Generating rte_event_opdl_def with a custom command
[2225/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[2226/2790] Generating rte_event_skeleton_def with a custom command
[2227/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_eventdev.c.o
[2228/2790] Generating rte_event_skeleton_mingw with a custom command
[2229/2790] Generating rte_compress_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2230/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_tim_worker.c.o
[2231/2790] Linking target drivers/librte_net_txgbe.so.22.0
[2232/2790] Linking target drivers/librte_compress_octeontx.so.22.0
[2233/2790] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[2234/2790] Generating rte_regex_octeontx2.pmd.c with a custom command
[2235/2790] Linking static target drivers/libtmp_rte_event_dpaa.a
[2236/2790] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2237/2790] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2238/2790] Linking static target drivers/libtmp_rte_crypto_caam_jr.a
[2239/2790] Linking static target drivers/librte_regex_octeontx2.a
[2240/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[2241/2790] Compiling C object drivers/librte_regex_octeontx2.so.22.0.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[2242/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[2243/2790] Generating rte_event_sw_mingw with a custom command
[2244/2790] Generating rte_event_sw_def with a custom command
[2245/2790] Generating rte_net_softnic.sym_chk with a custom command (wrapped by meson to capture output)
[2246/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker.c.o
[2247/2790] Generating rte_crypto_nitrox.sym_chk with a custom command (wrapped by meson to capture output)
[2248/2790] Generating rte_net_sfc.sym_chk with a custom command (wrapped by meson to capture output)
[2249/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[2250/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[2251/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[2252/2790] Generating rte_event_dpaa.pmd.c with a custom command
[2253/2790] Linking target drivers/librte_crypto_nitrox.so.22.0
[2254/2790] Generating rte_crypto_caam_jr.pmd.c with a custom command
[2255/2790] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[2256/2790] Linking target drivers/librte_net_sfc.so.22.0
[2257/2790] Generating rte_event_octeontx_mingw with a custom command
[2258/2790] Linking static target drivers/libtmp_rte_crypto_virtio.a
[2259/2790] Compiling C object drivers/librte_crypto_caam_jr.so.22.0.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2260/2790] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2261/2790] Compiling C object drivers/librte_event_dpaa.so.22.0.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[2262/2790] Compiling C object drivers/librte_crypto_caam_jr.a.p/meson-generated_.._rte_crypto_caam_jr.pmd.c.o
[2263/2790] Linking static target drivers/librte_event_dpaa.a
[2264/2790] Linking static target drivers/librte_crypto_caam_jr.a
[2265/2790] Generating rte_event_octeontx_def with a custom command
[2266/2790] Generating rte_baseband_acc100_def with a custom command
[2267/2790] Generating rte_baseband_acc100_mingw with a custom command
[2268/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_adptr.c.o
[2269/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_tim_evdev.c.o
[2270/2790] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[2271/2790] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[2272/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev.c.o
[2273/2790] Generating rte_vdpa_ifc.sym_chk with a custom command (wrapped by meson to capture output)
[2274/2790] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[2275/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_burst.c.o
[2276/2790] Generating rte_baseband_fpga_lte_fec_def with a custom command
[2277/2790] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[2278/2790] Linking static target drivers/libtmp_rte_event_skeleton.a
[2279/2790] Generating rte_crypto_null.sym_chk with a custom command (wrapped by meson to capture output)
[2280/2790] Generating rte_baseband_null_def with a custom command
[2281/2790] Generating rte_baseband_null_mingw with a custom command
[2282/2790] Generating rte_baseband_turbo_sw_def with a custom command
[2283/2790] Generating rte_raw_ifpga.sym_chk with a custom command (wrapped by meson to capture output)
[2284/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[2285/2790] Generating rte_baseband_turbo_sw_mingw with a custom command
[2286/2790] Generating rte_regex_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2287/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cnxk_eventdev_selftest.c.o
[2288/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[2289/2790] Linking target drivers/librte_regex_octeontx2.so.22.0
[2290/2790] Generating rte_event_dpaa.sym_chk with a custom command (wrapped by meson to capture output)
[2291/2790] Generating rte_event_skeleton.pmd.c with a custom command
[2292/2790] Linking target drivers/librte_crypto_null.so.22.0
[2293/2790] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[2294/2790] Generating rte_crypto_virtio.pmd.c with a custom command
[2295/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[2296/2790] Compiling C object drivers/librte_event_skeleton.so.22.0.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2297/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[2298/2790] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[2299/2790] Compiling C object drivers/librte_crypto_virtio.so.22.0.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[2300/2790] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[2301/2790] Linking target drivers/librte_raw_ifpga.so.22.0
[2302/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[2303/2790] Linking static target drivers/librte_event_skeleton.a
[2304/2790] Linking static target drivers/librte_crypto_virtio.a
[2305/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[2306/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[2307/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[2308/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[2309/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[2310/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2311/2790] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[2312/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[2313/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2314/2790] Linking static target drivers/libtmp_rte_event_dpaa2.a
[2315/2790] Generating rte_crypto_caam_jr.sym_chk with a custom command (wrapped by meson to capture output)
[2316/2790] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2317/2790] Linking target drivers/librte_crypto_caam_jr.so.22.0
[2318/2790] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2319/2790] Linking static target drivers/libtmp_rte_baseband_fpga_5gnr_fec.a
[2320/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2321/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[2322/2790] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2323/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2324/2790] Linking static target drivers/libtmp_rte_baseband_fpga_lte_fec.a
[2325/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[2326/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2327/2790] Generating rte_event_dpaa2.pmd.c with a custom command
[2328/2790] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[2329/2790] Generating rte_event_skeleton.sym_chk with a custom command (wrapped by meson to capture output)
[2330/2790] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2331/2790] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[2332/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[2333/2790] Linking static target drivers/librte_event_dpaa2.a
[2334/2790] Compiling C object drivers/librte_event_dpaa2.so.22.0.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[2335/2790] Linking static target drivers/libtmp_rte_net_qede.a
[2336/2790] Linking target drivers/librte_event_skeleton.so.22.0
[2337/2790] Generating rte_baseband_fpga_5gnr_fec.pmd.c with a custom command
[2338/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[2339/2790] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[2340/2790] Generating rte_crypto_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2341/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[2342/2790] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.a.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2343/2790] Compiling C object drivers/librte_baseband_fpga_5gnr_fec.so.22.0.p/meson-generated_.._rte_baseband_fpga_5gnr_fec.pmd.c.o
[2344/2790] Linking static target drivers/libtmp_rte_net_virtio.a
[2345/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2346/2790] Linking static target drivers/librte_baseband_fpga_5gnr_fec.a
[2347/2790] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2348/2790] Generating rte_baseband_fpga_lte_fec.pmd.c with a custom command
[2349/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[2350/2790] Compiling C object drivers/librte_baseband_fpga_lte_fec.a.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2351/2790] Linking static target drivers/libtmp_rte_event_dlb2.a
[2352/2790] Linking static target drivers/librte_baseband_fpga_lte_fec.a
[2353/2790] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2354/2790] Compiling C object drivers/librte_baseband_fpga_lte_fec.so.22.0.p/meson-generated_.._rte_baseband_fpga_lte_fec.pmd.c.o
[2355/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq.c.o
[2356/2790] Linking static target drivers/libtmp_rte_baseband_null.a
[2357/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2358/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq.c.o
[2359/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[2360/2790] Linking target drivers/librte_crypto_virtio.so.22.0
[2361/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_tx_enq.c.o
[2362/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2363/2790] Generating rte_event_dlb2.pmd.c with a custom command
[2364/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2365/2790] Compiling C object drivers/librte_event_dlb2.a.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2366/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2367/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2368/2790] Linking static target drivers/librte_event_dlb2.a
[2369/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn9k_cryptodev_ops.c.o
[2370/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2371/2790] Compiling C object drivers/librte_event_dlb2.so.22.0.p/meson-generated_.._rte_event_dlb2.pmd.c.o
[2372/2790] Linking static target drivers/libtmp_rte_crypto_dpaa_sec.a
[2373/2790] Generating rte_event_dpaa2.sym_chk with a custom command (wrapped by meson to capture output)
[2374/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_tx_enq.c.o
[2375/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2376/2790] Compiling C object drivers/libtmp_rte_crypto_cnxk.a.p/crypto_cnxk_cn10k_cryptodev_ops.c.o
[2377/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2378/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2379/2790] Linking static target drivers/libtmp_rte_crypto_cnxk.a
[2380/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_tmo.c.o
[2381/2790] Generating rte_net_virtio.pmd.c with a custom command
[2382/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[2383/2790] Generating rte_baseband_null.pmd.c with a custom command
[2384/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2385/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2386/2790] Compiling C object lib/librte_vhost.a.p/vhost_vhost_crypto.c.o
[2387/2790] Compiling C object drivers/librte_net_virtio.a.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2388/2790] Compiling C object drivers/librte_net_virtio.so.22.0.p/meson-generated_.._rte_net_virtio.pmd.c.o
[2389/2790] Compiling C object drivers/librte_baseband_null.a.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2390/2790] Compiling C object drivers/librte_baseband_null.so.22.0.p/meson-generated_.._rte_baseband_null.pmd.c.o
[2391/2790] Linking static target drivers/librte_net_virtio.a
[2392/2790] Linking static target lib/librte_vhost.a
[2393/2790] Linking static target drivers/librte_baseband_null.a
[2394/2790] Generating rte_crypto_dpaa_sec.pmd.c with a custom command
[2395/2790] Generating rte_net_qede.pmd.c with a custom command
[2396/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2397/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2398/2790] Compiling C object drivers/librte_crypto_dpaa_sec.a.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2399/2790] Compiling C object drivers/librte_net_qede.a.p/meson-generated_.._rte_net_qede.pmd.c.o
[2400/2790] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2401/2790] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2402/2790] Compiling C object drivers/librte_net_qede.so.22.0.p/meson-generated_.._rte_net_qede.pmd.c.o
[2403/2790] Linking static target drivers/librte_crypto_dpaa_sec.a
[2404/2790] Linking static target drivers/libtmp_rte_crypto_dpaa2_sec.a
[2405/2790] Linking static target drivers/librte_net_qede.a
[2406/2790] Compiling C object drivers/librte_crypto_dpaa_sec.so.22.0.p/meson-generated_.._rte_crypto_dpaa_sec.pmd.c.o
[2407/2790] Linking static target drivers/libtmp_rte_baseband_turbo_sw.a
[2408/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2409/2790] Generating rte_crypto_cnxk.pmd.c with a custom command
[2410/2790] Generating rte_baseband_fpga_lte_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2411/2790] Compiling C object drivers/librte_crypto_cnxk.so.22.0.p/meson-generated_.._rte_crypto_cnxk.pmd.c.o
[2412/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_ca.c.o
[2413/2790] Compiling C object drivers/librte_crypto_cnxk.a.p/meson-generated_.._rte_crypto_cnxk.pmd.c.o
[2414/2790] Generating rte_event_dlb2.sym_chk with a custom command (wrapped by meson to capture output)
[2415/2790] Linking static target drivers/librte_crypto_cnxk.a
[2416/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2417/2790] Linking target drivers/librte_baseband_fpga_lte_fec.so.22.0
[2418/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2419/2790] Linking target drivers/librte_event_dlb2.so.22.0
[2420/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2421/2790] Generating rte_baseband_fpga_5gnr_fec.sym_chk with a custom command (wrapped by meson to capture output)
[2422/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2423/2790] Generating rte_crypto_dpaa2_sec.pmd.c with a custom command
[2424/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2425/2790] Compiling C object drivers/librte_crypto_dpaa2_sec.a.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2426/2790] Linking target drivers/librte_baseband_fpga_5gnr_fec.so.22.0
[2427/2790] Linking static target drivers/librte_crypto_dpaa2_sec.a
[2428/2790] Compiling C object drivers/librte_crypto_dpaa2_sec.so.22.0.p/meson-generated_.._rte_crypto_dpaa2_sec.pmd.c.o
[2429/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[2430/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2431/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2432/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[2433/2790] Generating rte_baseband_null.sym_chk with a custom command (wrapped by meson to capture output)
[2434/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_deq_ca.c.o
[2435/2790] Generating rte_baseband_turbo_sw.pmd.c with a custom command
[2436/2790] Linking target drivers/librte_baseband_null.so.22.0
[2437/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2438/2790] Compiling C object drivers/librte_baseband_turbo_sw.so.22.0.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2439/2790] Generating rte_net_qede.sym_chk with a custom command (wrapped by meson to capture output)
[2440/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2441/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2442/2790] Linking target drivers/librte_net_qede.so.22.0
[2443/2790] Compiling C object drivers/librte_baseband_turbo_sw.a.p/meson-generated_.._rte_baseband_turbo_sw.pmd.c.o
[2444/2790] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2445/2790] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2446/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2447/2790] Linking static target drivers/librte_baseband_turbo_sw.a
[2448/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2449/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2450/2790] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2451/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_deq_tmo.c.o
[2452/2790] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2453/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2454/2790] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[2455/2790] Generating rte_crypto_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[2456/2790] Linking static target drivers/libtmp_rte_raw_ioat.a
[2457/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2458/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2459/2790] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2460/2790] Linking target drivers/librte_crypto_cnxk.so.22.0
[2461/2790] Generating rte_crypto_dpaa2_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2462/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2463/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2464/2790] Compiling C object app/test/dpdk-test.p/test.c.o
[2465/2790] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2466/2790] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2467/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2468/2790] Linking target drivers/librte_crypto_dpaa2_sec.so.22.0
[2469/2790] Compiling C object app/test/dpdk-test.p/test_bitmap.c.o
[2470/2790] Generating rte_net_virtio.sym_chk with a custom command (wrapped by meson to capture output)
[2471/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2472/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2473/2790] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2474/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2475/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2476/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2477/2790] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2478/2790] Linking target drivers/librte_net_virtio.so.22.0
[2479/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2480/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2481/2790] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2482/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2483/2790] Generating rte_crypto_dpaa_sec.sym_chk with a custom command (wrapped by meson to capture output)
[2484/2790] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2485/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2486/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2487/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2488/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2489/2790] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2490/2790] Linking target drivers/librte_crypto_dpaa_sec.so.22.0
[2491/2790] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2492/2790] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2493/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2494/2790] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2495/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2496/2790] Generating symbol file drivers/librte_crypto_dpaa2_sec.so.22.0.p/librte_crypto_dpaa2_sec.so.22.0.symbols
[2497/2790] Compiling C object app/test/dpdk-test.p/commands.c.o
[2498/2790] Generating symbol file drivers/librte_crypto_cnxk.so.22.0.p/librte_crypto_cnxk.so.22.0.symbols
[2499/2790] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2500/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2501/2790] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2502/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2503/2790] Generating rte_raw_ioat.pmd.c with a custom command
[2504/2790] Linking target drivers/librte_event_dpaa2.so.22.0
[2505/2790] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2506/2790] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2507/2790] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[2508/2790] Compiling C object drivers/librte_raw_ioat.so.22.0.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[2509/2790] Linking static target drivers/libtmp_rte_crypto_scheduler.a
[2510/2790] Linking static target drivers/librte_raw_ioat.a
[2511/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2512/2790] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2513/2790] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2514/2790] Generating rte_baseband_turbo_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2515/2790] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2516/2790] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2517/2790] Linking target drivers/librte_baseband_turbo_sw.so.22.0
[2518/2790] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2519/2790] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2520/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2521/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2522/2790] Generating symbol file drivers/librte_crypto_dpaa_sec.so.22.0.p/librte_crypto_dpaa_sec.so.22.0.symbols
[2523/2790] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2524/2790] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2525/2790] Linking target drivers/librte_event_dpaa.so.22.0
[2526/2790] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2527/2790] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2528/2790] Generating rte_crypto_scheduler.pmd.c with a custom command
[2529/2790] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2530/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2531/2790] Compiling C object drivers/librte_crypto_scheduler.so.22.0.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2532/2790] Compiling C object drivers/librte_crypto_scheduler.a.p/meson-generated_.._rte_crypto_scheduler.pmd.c.o
[2533/2790] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2534/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2535/2790] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2536/2790] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2537/2790] Linking static target drivers/librte_crypto_scheduler.a
[2538/2790] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2539/2790] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2540/2790] Compiling C object app/test/dpdk-test.p/test_cksum.c.o
[2541/2790] Generating rte_raw_ioat.sym_chk with a custom command (wrapped by meson to capture output)
[2542/2790] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2543/2790] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2544/2790] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2545/2790] Linking target drivers/librte_raw_ioat.so.22.0
[2546/2790] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2547/2790] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2548/2790] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2549/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2550/2790] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2551/2790] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2552/2790] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2553/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2554/2790] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2555/2790] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2556/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2557/2790] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2558/2790] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2559/2790] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2560/2790] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2561/2790] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2562/2790] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2563/2790] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2564/2790] Linking static target drivers/libtmp_rte_event_opdl.a
[2565/2790] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2566/2790] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2567/2790] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2568/2790] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2569/2790] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2570/2790] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2571/2790] Linking static target drivers/libtmp_rte_event_octeontx.a
[2572/2790] Generating vhost.sym_chk with a custom command (wrapped by meson to capture output)
[2573/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2574/2790] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2575/2790] Compiling C object app/test/dpdk-test.p/test_pflock.c.o
[2576/2790] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2577/2790] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2578/2790] Linking target lib/librte_vhost.so.22.0
[2579/2790] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2580/2790] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2581/2790] Generating rte_crypto_scheduler.sym_chk with a custom command (wrapped by meson to capture output)
[2582/2790] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2583/2790] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2584/2790] Linking target drivers/librte_crypto_scheduler.so.22.0
[2585/2790] Generating rte_event_opdl.pmd.c with a custom command
[2586/2790] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2587/2790] Compiling C object drivers/librte_event_opdl.a.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2588/2790] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2589/2790] Linking static target drivers/librte_event_opdl.a
[2590/2790] Compiling C object drivers/librte_event_opdl.so.22.0.p/meson-generated_.._rte_event_opdl.pmd.c.o
[2591/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2592/2790] Generating rte_event_octeontx.pmd.c with a custom command
[2593/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq.c.o
[2594/2790] Compiling C object drivers/librte_event_octeontx.so.22.0.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2595/2790] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2596/2790] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2597/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2598/2790] Compiling C object drivers/librte_event_octeontx.a.p/meson-generated_.._rte_event_octeontx.pmd.c.o
[2599/2790] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2600/2790] Linking static target drivers/libtmp_rte_event_dsw.a
[2601/2790] Linking static target drivers/librte_event_octeontx.a
[2602/2790] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2603/2790] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2604/2790] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2605/2790] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2606/2790] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2607/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_tmo.c.o
[2608/2790] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2609/2790] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2610/2790] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2611/2790] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2612/2790] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2613/2790] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2614/2790] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2615/2790] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2616/2790] Generating symbol file lib/librte_vhost.so.22.0.p/librte_vhost.so.22.0.symbols
[2617/2790] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2618/2790] Linking static target drivers/libtmp_rte_event_sw.a
[2619/2790] Generating rte_event_dsw.pmd.c with a custom command
[2620/2790] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2621/2790] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress_zc.c.o
[2622/2790] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2623/2790] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2624/2790] Compiling C object drivers/librte_event_dsw.a.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2625/2790] Compiling C object drivers/librte_event_dsw.so.22.0.p/meson-generated_.._rte_event_dsw.pmd.c.o
[2626/2790] Linking static target drivers/librte_event_dsw.a
[2627/2790] Linking target drivers/librte_net_vhost.so.22.0
[2628/2790] Linking target drivers/librte_vdpa_ifc.so.22.0
[2629/2790] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2630/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_deq_ca.c.o
[2631/2790] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2632/2790] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2633/2790] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2634/2790] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2635/2790] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2636/2790] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2637/2790] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2638/2790] Generating rte_event_opdl.sym_chk with a custom command (wrapped by meson to capture output)
[2639/2790] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2640/2790] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2641/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2642/2790] Generating rte_kni_makefile with a custom command
[2643/2790] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2644/2790] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2645/2790] Generating igb_uio_makefile with a custom command
[2646/2790] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2647/2790] Linking target drivers/librte_event_opdl.so.22.0
[2648/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2649/2790] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2650/2790] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2651/2790] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2652/2790] Generating rte_event_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2653/2790] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2654/2790] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2655/2790] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2656/2790] Generating rte_event_dsw.sym_chk with a custom command (wrapped by meson to capture output)
[2657/2790] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2658/2790] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2659/2790] Linking target drivers/librte_event_dsw.so.22.0
[2660/2790] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2661/2790] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2662/2790] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2663/2790] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress_zc.c.o
[2664/2790] Generating rte_event_sw.pmd.c with a custom command
[2665/2790] Compiling C object drivers/librte_event_sw.so.22.0.p/meson-generated_.._rte_event_sw.pmd.c.o
[2666/2790] Compiling C object drivers/librte_event_sw.a.p/meson-generated_.._rte_event_sw.pmd.c.o
[2667/2790] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2668/2790] Linking static target drivers/librte_event_sw.a
[2669/2790] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2670/2790] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2671/2790] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2672/2790] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2673/2790] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2674/2790] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2675/2790] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2676/2790] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2677/2790] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2678/2790] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2679/2790] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2680/2790] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2681/2790] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2682/2790] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2683/2790] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2684/2790] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2685/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2686/2790] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2687/2790] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2688/2790] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2689/2790] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2690/2790] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2691/2790] Generating rte_event_sw.sym_chk with a custom command (wrapped by meson to capture output)
[2692/2790] Linking target drivers/librte_event_sw.so.22.0
[2693/2790] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2694/2790] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2695/2790] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2696/2790] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2697/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_dual_tx_enq_seg.c.o
[2698/2790] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2699/2790] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2700/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2701/2790] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2702/2790] Linking static target drivers/libtmp_rte_baseband_acc100.a
[2703/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2704/2790] Generating rte_baseband_acc100.pmd.c with a custom command
[2705/2790] Compiling C object drivers/librte_baseband_acc100.a.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2706/2790] Compiling C object drivers/librte_baseband_acc100.so.22.0.p/meson-generated_.._rte_baseband_acc100.pmd.c.o
[2707/2790] Linking static target drivers/librte_baseband_acc100.a
[2708/2790] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2709/2790] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2710/2790] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2711/2790] Linking static target drivers/libtmp_rte_net_octeontx2.a
[2712/2790] Generating rte_baseband_acc100.sym_chk with a custom command (wrapped by meson to capture output)
[2713/2790] Linking target drivers/librte_baseband_acc100.so.22.0
[2714/2790] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2715/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn9k_worker_tx_enq_seg.c.o
[2716/2790] Generating igb_uio with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-86-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC [M]  /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/linux-headers-5.4.0-86-generic'
[2717/2790] Generating rte_net_octeontx2.pmd.c with a custom command
[2718/2790] Compiling C object drivers/librte_net_octeontx2.so.22.0.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2719/2790] Compiling C object drivers/librte_net_octeontx2.a.p/meson-generated_.._rte_net_octeontx2.pmd.c.o
[2720/2790] Linking static target drivers/librte_net_octeontx2.a
[2721/2790] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-86-generic'
  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 [M]  /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/linux-headers-5.4.0-86-generic'
[2722/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2723/2790] Generating rte_net_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2724/2790] Linking target drivers/librte_net_octeontx2.so.22.0
[2725/2790] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2726/2790] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2727/2790] Generating symbol file drivers/librte_net_octeontx2.so.22.0.p/librte_net_octeontx2.so.22.0.symbols
[2728/2790] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2729/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2730/2790] Linking static target drivers/libtmp_rte_crypto_octeontx2.a
[2731/2790] Generating rte_crypto_octeontx2.pmd.c with a custom command
[2732/2790] Compiling C object drivers/librte_crypto_octeontx2.a.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2733/2790] Compiling C object drivers/librte_crypto_octeontx2.so.22.0.p/meson-generated_.._rte_crypto_octeontx2.pmd.c.o
[2734/2790] Linking static target drivers/librte_crypto_octeontx2.a
[2735/2790] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2736/2790] Generating rte_crypto_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2737/2790] Linking target drivers/librte_crypto_octeontx2.so.22.0
[2738/2790] Generating symbol file drivers/librte_crypto_octeontx2.so.22.0.p/librte_crypto_octeontx2.so.22.0.symbols
[2739/2790] Compiling C object lib/librte_pipeline.a.p/pipeline_rte_table_action.c.o
[2740/2790] Linking static target lib/librte_pipeline.a
[2741/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_tx_enq.c.o
[2742/2790] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2743/2790] Compiling C object drivers/libtmp_rte_event_cnxk.a.p/event_cnxk_cn10k_worker_tx_enq_seg.c.o
[2744/2790] Linking static target drivers/libtmp_rte_event_cnxk.a
[2745/2790] Generating pipeline.sym_chk with a custom command (wrapped by meson to capture output)
[2746/2790] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2747/2790] Linking target lib/librte_pipeline.so.22.0
[2748/2790] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2749/2790] Linking static target drivers/libtmp_rte_crypto_octeontx.a
[2750/2790] Generating rte_event_cnxk.pmd.c with a custom command
[2751/2790] Compiling C object drivers/librte_event_cnxk.so.22.0.p/meson-generated_.._rte_event_cnxk.pmd.c.o
[2752/2790] Compiling C object drivers/librte_event_cnxk.a.p/meson-generated_.._rte_event_cnxk.pmd.c.o
[2753/2790] Linking static target drivers/librte_event_cnxk.a
[2754/2790] Generating rte_crypto_octeontx.pmd.c with a custom command
[2755/2790] Generating symbol file lib/librte_pipeline.so.22.0.p/librte_pipeline.so.22.0.symbols
[2756/2790] Compiling C object drivers/librte_crypto_octeontx.a.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2757/2790] Compiling C object drivers/librte_crypto_octeontx.so.22.0.p/meson-generated_.._rte_crypto_octeontx.pmd.c.o
[2758/2790] Linking static target drivers/librte_crypto_octeontx.a
[2759/2790] Linking target drivers/librte_net_softnic.so.22.0
[2760/2790] Generating rte_event_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
[2761/2790] Linking target drivers/librte_event_cnxk.so.22.0
[2762/2790] Generating rte_crypto_octeontx.sym_chk with a custom command (wrapped by meson to capture output)
[2763/2790] Linking target drivers/librte_crypto_octeontx.so.22.0
[2764/2790] Generating symbol file drivers/librte_crypto_octeontx.so.22.0.p/librte_crypto_octeontx.so.22.0.symbols
[2765/2790] Linking target drivers/librte_event_octeontx.so.22.0
[2766/2790] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2767/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2768/2790] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
[2769/2790] Linking static target drivers/libtmp_rte_event_octeontx2.a
[2770/2790] Generating rte_event_octeontx2.pmd.c with a custom command
[2771/2790] Compiling C object drivers/librte_event_octeontx2.so.22.0.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2772/2790] Compiling C object drivers/librte_event_octeontx2.a.p/meson-generated_.._rte_event_octeontx2.pmd.c.o
[2773/2790] Linking static target drivers/librte_event_octeontx2.a
[2774/2790] Generating rte_event_octeontx2.sym_chk with a custom command (wrapped by meson to capture output)
[2775/2790] Linking target drivers/librte_event_octeontx2.so.22.0
[2776/2790] Linking target app/dpdk-pdump
[2777/2790] Linking target app/dpdk-test-compress-perf
[2778/2790] Linking target app/test/dpdk-test
[2779/2790] Linking target app/dpdk-test-fib
[2780/2790] Linking target app/dpdk-test-acl
[2781/2790] Linking target app/dpdk-test-flow-perf
[2782/2790] Linking target app/dpdk-test-sad
[2783/2790] Linking target app/dpdk-test-crypto-perf
[2784/2790] Linking target app/dpdk-test-cmdline
[2785/2790] Linking target app/dpdk-test-eventdev
[2786/2790] Linking target app/dpdk-test-pipeline
[2787/2790] Linking target app/dpdk-test-bbdev
[2788/2790] Linking target app/dpdk-proc-info
[2789/2790] Linking target app/dpdk-test-regex
[2790/2790] Linking target app/dpdk-testpmd
30/09/2021 19:12:42             dut.10.240.183.151: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
30/09/2021 19:12:42             dut.10.240.183.151: ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
30/09/2021 19:12:42             dut.10.240.183.151: mkdir -p x86_64-native-linuxapp-gcc/kmod
30/09/2021 19:12:42             dut.10.240.183.151: 
30/09/2021 19:12:42             dut.10.240.183.151: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
30/09/2021 19:12:42             dut.10.240.183.151: 
30/09/2021 19:12:42             dut.10.240.183.151: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
30/09/2021 19:12:42             dut.10.240.183.151: 
30/09/2021 19:12:42           TestGeneric_flow_api: Test Case test_128_queues Result PASSED:
30/09/2021 19:12:42             dut.10.240.183.151: quit
30/09/2021 19:12:42             dut.10.240.183.151: 
Command '' not found, did you mean:

  command 'quiz' from deb bsdgames (2.17-28build1)
  command 'quilt' from deb quilt (0.65-3)
  command 'luit' from deb x11-utils (7.7+5)
  command 'qgit' from deb qgit (2.9-1build1)

Try: apt install <deb name>

30/09/2021 19:12:44             dut.10.240.183.151: kill_all: called by dut and prefix list has value.
30/09/2021 19:12:45                            dts: 
TEST SUITE ENDED: TestGeneric_flow_api

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

* Re: [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from generic_filter to generic_flow_api
  2021-09-30  2:09   ` Chen, LingliX
@ 2021-10-22  9:26     ` Tu, Lijuan
  0 siblings, 0 replies; 7+ messages in thread
From: Tu, Lijuan @ 2021-10-22  9:26 UTC (permalink / raw)
  To: Chen, LingliX, dts


> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Chen, LingliX
> Sent: 2021年9月30日 10:09
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from
> generic_filter to generic_flow_api
> 
> 
> > -----Original Message-----
> > From: dts <dts-bounces@dpdk.org> On Behalf Of Yan Xia
> > Sent: Thursday, September 30, 2021 2:29 AM
> > To: dts@dpdk.org
> > Cc: Xia, YanX <yanx.xia@intel.com>
> > Subject: [dts] [PATCH V1 4/4] tests/generic_flow_api: move case from
> > generic_filter to generic_flow_api
> >
> > move case from generic_filter to generic_flow_api
> >
> > Signed-off-by: Yan Xia <yanx.xia@intel.com>
> 
> Tested-by: Yan Xia <yanx.xia@intel.com>

Applied

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

end of thread, other threads:[~2021-10-22  9:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-29 18:28 [dts] [PATCH V1 0/4] *** move case from generic_filter to generic_flow_api *** Yan Xia
2021-09-29 18:28 ` [dts] [PATCH V1 1/4] test_plans/generic_filter_test_plan: move case from generic_filter to generic_flow_api Yan Xia
2021-09-29 18:28 ` [dts] [PATCH V1 2/4] test_plans/generic_flow_api_test_plan: " Yan Xia
2021-09-29 18:28 ` [dts] [PATCH V1 3/4] tests/generic_filter: " Yan Xia
2021-09-29 18:28 ` [dts] [PATCH V1 4/4] tests/generic_flow_api: " Yan Xia
2021-09-30  2:09   ` Chen, LingliX
2021-10-22  9:26     ` 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).