test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed
@ 2020-11-13 10:06 Haiyang Zhao
  2020-11-13 10:06 ` [dts] [PATCH V1 1/2] framework/project_dpdk: drop the detailed errors when complie failed Haiyang Zhao
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Haiyang Zhao @ 2020-11-13 10:06 UTC (permalink / raw)
  To: dts, lijuan.tu; +Cc: Haiyang Zhao

when compiling failed by meson, the error msg exceed the maximum length
of xlwt cell, so save result will be failed and DTS will be terminated,
drop the compile error msg and truncate msg length in excel cell to fix it.

Haiyang Zhao (2):
  framework/project_dpdk: drop the detailed errors when complie failed
  framework/excel_reporter: fix issue of msg exceed xlwt maximum cell
    length

 framework/excel_reporter.py | 6 +++---
 framework/project_dpdk.py   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.17.1


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

* [dts] [PATCH V1 1/2] framework/project_dpdk: drop the detailed errors when complie failed
  2020-11-13 10:06 [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Haiyang Zhao
@ 2020-11-13 10:06 ` Haiyang Zhao
  2020-11-13 10:06 ` [dts] [PATCH V1 2/2] framework/excel_reporter: fix issue of msg exceed xlwt maximum cell length Haiyang Zhao
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Haiyang Zhao @ 2020-11-13 10:06 UTC (permalink / raw)
  To: dts, lijuan.tu; +Cc: Haiyang Zhao

the detailed compiled info is too long and will be saved
into log file, so there's no need to throw it in assert exception.

Signed-off-by: Haiyang Zhao <haiyangx.zhao@intel.com>
---
 framework/project_dpdk.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py
index a41b3df..fbbc78d 100644
--- a/framework/project_dpdk.py
+++ b/framework/project_dpdk.py
@@ -314,7 +314,7 @@ class DPDKdut(Dut):
         assert ("FAILED" not in out), "meson setup failed ..."
 
         out = self.send_expect("ninja -C %s -j %d" % (target, self.number_of_cores), "# ", build_time)
-        assert ("FAILED" not in out), "ninja complie failed ...\r\n %s" % out
+        assert ("FAILED" not in out), "ninja complie failed ..."
 
         # copy kmod file to the folder same as make
         out = self.send_expect("find ./%s/kernel/ -name *.ko" % target, "# ", verify=True)
@@ -555,9 +555,9 @@ class DPDKdut(Dut):
         else:
             example = '/'.join(folder_info[folder_info.index('examples')+1:])
         out = self.send_expect("meson configure -Dexamples=%s %s" % (example, self.target), "# ")
-        assert ("FAILED" not in out), "Compilation error... \r\n %s" % out
+        assert ("FAILED" not in out), "Compilation error..."
         out = self.send_expect("ninja -C %s" % self.target, "# ", timeout)
-        assert ("FAILED" not in out), "Compilation error... \r\n %s" % out
+        assert ("FAILED" not in out), "Compilation error..."
 
         # verify the app build in the config path
         if example != 'all':
-- 
2.17.1


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

* [dts] [PATCH V1 2/2] framework/excel_reporter: fix issue of msg exceed xlwt maximum cell length
  2020-11-13 10:06 [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Haiyang Zhao
  2020-11-13 10:06 ` [dts] [PATCH V1 1/2] framework/project_dpdk: drop the detailed errors when complie failed Haiyang Zhao
@ 2020-11-13 10:06 ` Haiyang Zhao
  2020-11-13 10:18 ` [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Zhao, HaiyangX
  2020-11-18  3:26 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Haiyang Zhao @ 2020-11-13 10:06 UTC (permalink / raw)
  To: dts, lijuan.tu; +Cc: Haiyang Zhao

truncate msg length if it exceed xlwt maximun cell
legth in case of saving result failed and DTS terminated.

Signed-off-by: Haiyang Zhao <haiyangx.zhao@intel.com>
---
 framework/excel_reporter.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/framework/excel_reporter.py b/framework/excel_reporter.py
index 5b8e4cf..65d26b6 100644
--- a/framework/excel_reporter.py
+++ b/framework/excel_reporter.py
@@ -167,7 +167,7 @@ class ExcelReporter(object):
                 self.sheet.write(self.row, self.col + 1, result)
             else:
                 self.sheet.write(
-                    self.row, self.col + 1, result, self.failed_style)
+                    self.row, self.col + 1, result if len(result) < 5000 else result[:2000] + '\r\n...\r\n...\r\n...\r\n' + result[-2000:], self.failed_style)
 
     def __write_cases(self, dut, target, suite):
         for case in set(self.result.all_test_cases(dut, target, suite)):
@@ -198,7 +198,7 @@ class ExcelReporter(object):
 
     def __write_failed_target(self, dut, target):
         msg = "TARGET ERROR '%s'" % self.result.target_failed_msg(dut, target)
-        self.sheet.write(self.row, self.col + 4, msg, self.failed_style)
+        self.sheet.write(self.row, self.col + 4, msg if len(msg) < 5000 else msg[:2000] + '\r\n...\r\n...\r\n...\r\n' + msg[-2000:], self.failed_style)
         self.row += 1
 
     def __write_targets(self, dut):
@@ -214,7 +214,7 @@ class ExcelReporter(object):
 
     def __write_failed_dut(self, dut):
         msg = "PREREQ FAILED '%s'" % self.result.dut_failed_msg(dut)
-        self.sheet.write(self.row, self.col + 5, msg, self.failed_style)
+        self.sheet.write(self.row, self.col + 5, msg if len(msg) < 5000 else msg[:2000] + '\r\n...\r\n...\r\n...\r\n' + msg[-2000:], self.failed_style)
         self.row += 1
 
     def __parse_result(self):
-- 
2.17.1


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

* Re: [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed
  2020-11-13 10:06 [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Haiyang Zhao
  2020-11-13 10:06 ` [dts] [PATCH V1 1/2] framework/project_dpdk: drop the detailed errors when complie failed Haiyang Zhao
  2020-11-13 10:06 ` [dts] [PATCH V1 2/2] framework/excel_reporter: fix issue of msg exceed xlwt maximum cell length Haiyang Zhao
@ 2020-11-13 10:18 ` Zhao, HaiyangX
  2020-11-18  3:26 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Zhao, HaiyangX @ 2020-11-13 10:18 UTC (permalink / raw)
  To: Zhao, HaiyangX, dts, Tu, Lijuan

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

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

Best Regards,
Zhao Haiyang

> -----Original Message-----
> From: Haiyang Zhao <haiyangx.zhao@intel.com>
> Sent: Friday, November 13, 2020 18:06
> To: dts@dpdk.org; Tu, Lijuan <lijuan.tu@intel.com>
> Cc: Zhao, HaiyangX <haiyangx.zhao@intel.com>
> Subject: [dts][PATCH V1 0/2] framework: fix error msg too long cause saving
> result failed


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

13/11/2020 17:55:24                            dts: 
TEST SUITE : TestFlexibleRxd
13/11/2020 17:55:24                            dts: NIC :        columbiaville_25g
13/11/2020 17:55:24              dut.10.240.183.72: 
13/11/2020 17:55:25                         tester: 
13/11/2020 17:55:25                TestFlexibleRxd: Test Case test_dpdk_hello Begin
13/11/2020 17:55:25              dut.10.240.183.72: 
13/11/2020 17:55:25                         tester: 
13/11/2020 17:55:25                TestFlexibleRxd: Test Case test_dpdk_hello Result FAILED: 'hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello'
13/11/2020 17:55:25              dut.10.240.183.72: kill_all: called by dut and has no prefix list.
13/11/2020 17:55:28                TestFlexibleRxd: Test Case test_dpdk_test Begin
13/11/2020 17:55:28              dut.10.240.183.72: 
13/11/2020 17:55:28                         tester: 
13/11/2020 17:55:28              dut.10.240.183.72: cp ./app/test-pmd/util.c .
13/11/2020 17:55:28              dut.10.240.183.72: 
13/11/2020 17:55:28              dut.10.240.183.72: cp ./app/test-pmd/meson.build /root/
13/11/2020 17:55:28              dut.10.240.183.72: 
13/11/2020 17:55:28              dut.10.240.183.72: sed -i "/if dpdk_conf.has('RTE_NET_IXGBE')/i\if dpdk_conf.has('RTE_NET_ICE')\n\tdeps += 'net_ice'\nendif" app/test-pmd/meson.build
13/11/2020 17:55:28              dut.10.240.183.72: 
13/11/2020 17:55:28              dut.10.240.183.72: sed -i '/#include <rte_flow.h>/a\#include <rte_pmd_ice.h>' app/test-pmd/util.c
13/11/2020 17:55:28              dut.10.240.183.72: 
13/11/2020 17:55:28              dut.10.240.183.72: sed -i '/if (ol_flags & PKT_RX_TIMESTAMP)/i\                rte_net_ice_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c
13/11/2020 17:55:29              dut.10.240.183.72: 
13/11/2020 17:55:29              dut.10.240.183.72: rm -rf x86_64-native-linuxapp-gcc
13/11/2020 17:55:29              dut.10.240.183.72: 
13/11/2020 17:55:29              dut.10.240.183.72: CC=gcc meson -Denable_kmods=True -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
13/11/2020 17:55:40              dut.10.240.183.72: The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc3
Using 'CC' from environment with value: 'gcc'
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 7.3.1 "gcc (GCC) 7.3.1 20180303 (Red Hat 7.3.1-5)")
C linker for the host machine: gcc ld.bfd 2.28-11
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: NO
Found pkg-config: /usr/bin/pkg-config (0.27.1)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Run-time dependency libpcap found: NO (tried pkgconfig)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:228: 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-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 -Waddress-of-packed-member: NO 
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: NO 
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" : 1 
Fetching value of define "__AVX512BW__" :  
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__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : NO 
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: NO 
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (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/librte_acl: Defining dependency "acl"
Message: lib/librte_bbdev: Defining dependency "bbdev"
Message: lib/librte_bitratestats: Defining dependency "bitratestats"
Message: lib/librte_cfgfile: Defining dependency "cfgfile"
Message: lib/librte_compressdev: Defining dependency "compressdev"
Message: lib/librte_cryptodev: Defining dependency "cryptodev"
Message: lib/librte_distributor: Defining dependency "distributor"
Message: lib/librte_efd: Defining dependency "efd"
Message: lib/librte_eventdev: Defining dependency "eventdev"
Message: lib/librte_gro: Defining dependency "gro"
Message: lib/librte_gso: Defining dependency "gso"
Message: lib/librte_ip_frag: Defining dependency "ip_frag"
Message: lib/librte_jobstats: Defining dependency "jobstats"
Message: lib/librte_kni: Defining dependency "kni"
Message: lib/librte_latencystats: Defining dependency "latencystats"
Message: lib/librte_lpm: Defining dependency "lpm"
Message: lib/librte_member: Defining dependency "member"
Message: lib/librte_power: Defining dependency "power"
Message: lib/librte_pdump: Defining dependency "pdump"
Message: lib/librte_rawdev: Defining dependency "rawdev"
Message: lib/librte_regexdev: Defining dependency "regexdev"
Message: lib/librte_rib: Defining dependency "rib"
Message: lib/librte_reorder: Defining dependency "reorder"
Message: lib/librte_sched: Defining dependency "sched"
Message: lib/librte_security: Defining dependency "security"
Message: lib/librte_stack: Defining dependency "stack"
Has header "linux/userfaultfd.h" : YES 
Message: lib/librte_vhost: Defining dependency "vhost"
Message: lib/librte_ipsec: Defining dependency "ipsec"
Fetching value of define "__AVX512F__" :  (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/librte_fib: Defining dependency "fib"
Message: lib/librte_port: Defining dependency "port"
Message: lib/librte_table: Defining dependency "table"
Message: lib/librte_pipeline: Defining dependency "pipeline"
Message: lib/librte_flow_classify: Defining dependency "flow_classify"
Run-time dependency libelf found: YES 0.176
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/common/qat: Defining dependency "common_qat"
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "net_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "net_ark"
Message: drivers/net/atlantic: Defining dependency "net_atlantic"
Message: drivers/net/avp: Defining dependency "net_avp"
Message: drivers/net/axgbe: Defining dependency "net_axgbe"
Message: drivers/net/bonding: Defining dependency "net_bond"
Run-time dependency zlib found: YES 1.2.7
Message: drivers/net/bnx2x: Defining dependency "net_bnx2x"
Message: drivers/net/bnxt: Defining dependency "net_bnxt"
Message: drivers/net/cxgbe: Defining dependency "net_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-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 -Wuninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES 
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "net_i40e"
Message: drivers/net/hinic: Defining dependency "net_hinic"
Message: drivers/net/hns3: Defining dependency "net_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Fetching value of define "__AVX512F__" :  (cached)
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Compiler for C supports arguments -march=skylake-avx512: YES 
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-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"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "net_ixgbe"
Message: drivers/net/kni: Defining dependency "net_kni"
Message: drivers/net/liquidio: Defining dependency "net_liquidio"
Message: drivers/net/memif: Defining dependency "net_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "net_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "net_nfp"
Message: drivers/net/null: Defining dependency "net_null"
Message: drivers/net/octeontx: Defining dependency "net_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "net_octeontx2"
Message: drivers/net/pcap: Defining dependency "net_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-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 -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "net_sfc"
Message: drivers/net/softnic: Defining dependency "net_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_KEY_VLAN_PRIO" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_UNSPEC" : YES 
Header <linux/pkt_cls.h> has symbol "TCA_BPF_FD" : NO 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_UNSPEC" : NO 
Header <linux/tc_act/tc_bpf.h> has symbol "TCA_ACT_BPF_FD" : NO 
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 -Wmaybe-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 -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "net_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "raw_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "raw_dpaa2_qdma"
Message: drivers/raw/ioat: Defining dependency "raw_ioat"
Message: drivers/raw/ntb: Defining dependency "raw_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "raw_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "raw_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "raw_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/bcmfs: Defining dependency "crypto_bcmfs"
Message: drivers/crypto/caam_jr: Defining dependency "crypto_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "crypto_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "crypto_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "crypto_nitrox"
Message: drivers/crypto/null: Defining dependency "crypto_null"
Message: drivers/crypto/octeontx: Defining dependency "crypto_octeontx"
Message: drivers/crypto/octeontx2: Defining dependency "crypto_octeontx2"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "crypto_virtio"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "compress_octeontx"
Dependency zlib found: YES 1.2.7 (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 -Wstrict-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 -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dlb: Defining dependency "event_dlb"
Message: drivers/event/dlb2: Defining dependency "event_dlb2"
Message: drivers/event/dpaa: Defining dependency "event_dpaa"
Message: drivers/event/dpaa2: Defining dependency "event_dpaa2"
Message: drivers/event/octeontx2: Defining dependency "event_octeontx2"
Message: drivers/event/opdl: Defining dependency "event_opdl"
Message: drivers/event/skeleton: Defining dependency "event_skeleton"
Message: drivers/event/sw: Defining dependency "event_sw"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "event_dsw"
Message: drivers/event/octeontx: Defining dependency "event_octeontx"
Message: drivers/baseband/null: Defining dependency "baseband_null"
Library libturbo found: NO
Library libldpc_decoder_5gnr found: NO
Message: drivers/baseband/turbo_sw: Defining dependency "baseband_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "baseband_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "baseband_fpga_5gnr_fec"
Message: drivers/baseband/acc100: Defining dependency "baseband_acc100"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.7 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: YES
Program generate_doxygen.sh found: YES
Program generate_examples.sh found: YES
Program doxy-html-custom.sh found: YES
Configuring doxy-api.conf using configuration
Program sphinx-build found: NO
Library execinfo found: NO
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

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

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

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

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

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

Build targets in project: 1001

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
13/11/2020 17:55:40              dut.10.240.183.72: ninja -C x86_64-native-linuxapp-gcc -j 86
13/11/2020 17:56:37              dut.10.240.183.72: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[2/2458] Generating rte_kvargs_def with a custom command
[3/2458] Generating rte_telemetry_def with a custom command
[4/2458] Generating rte_telemetry_mingw with a custom command
[5/2458] Generating rte_kvargs_mingw with a custom command
[6/2458] Generating rte_ring_def with a custom command
[7/2458] Generating rte_eal_mingw with a custom command
[8/2458] Generating rte_eal_def with a custom command
[9/2458] Generating rte_ring_mingw with a custom command
[10/2458] Generating rte_rcu_def with a custom command
[11/2458] Generating rte_meter_mingw with a custom command
[12/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[13/2458] Generating rte_rcu_mingw with a custom command
[14/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[15/2458] Generating rte_mempool_mingw with a custom command
[16/2458] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[17/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[18/2458] Generating rte_mempool_def with a custom command
[19/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[20/2458] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[21/2458] Generating rte_mbuf_mingw with a custom command
[22/2458] Generating rte_mbuf_def with a custom command
[23/2458] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[24/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[25/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[26/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[27/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[28/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[29/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[30/2458] Generating rte_net_def with a custom command
[31/2458] Generating rte_meter_def with a custom command
[32/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[33/2458] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[34/2458] Generating rte_net_mingw with a custom command
[35/2458] Generating rte_bbdev_mingw with a custom command
[36/2458] Generating rte_pdump_def with a custom command
[37/2458] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[38/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[39/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[40/2458] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[41/2458] Linking static target lib/librte_kvargs.a
[42/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[43/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[44/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[45/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[46/2458] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[47/2458] Generating rte_ethdev_def with a custom command
[48/2458] Generating rte_ethdev_mingw with a custom command
[49/2458] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[50/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[51/2458] Generating rte_pci_def with a custom command
[52/2458] Generating rte_pci_mingw with a custom command
[53/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[54/2458] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[55/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[56/2458] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[57/2458] Generating rte_cmdline_mingw with a custom command
[58/2458] Generating rte_cmdline_def with a custom command
[59/2458] Generating rte_metrics_def with a custom command
[60/2458] Generating rte_metrics_mingw with a custom command
[61/2458] Generating rte_hash_def with a custom command
[62/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[63/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[64/2458] Generating rte_hash_mingw with a custom command
[65/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[66/2458] Generating rte_timer_def with a custom command
[67/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[68/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[69/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[70/2458] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[71/2458] Generating rte_timer_mingw with a custom command
[72/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[73/2458] Linking static target lib/librte_ring.a
[74/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[75/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[76/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[77/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[78/2458] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[79/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[80/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[81/2458] Linking static target lib/librte_meter.a
[82/2458] Compiling C object buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
[83/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[84/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[85/2458] Generating rte_acl_mingw with a custom command
[86/2458] Generating rte_acl_def with a custom command
[87/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[88/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[89/2458] Generating rte_bbdev_def with a custom command
[90/2458] Generating rte_bitratestats_def with a custom command
[91/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[92/2458] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[93/2458] Generating rte_bitratestats_mingw with a custom command
[94/2458] Generating rte_cfgfile_def with a custom command
[95/2458] Linking static target lib/librte_pci.a
[96/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[97/2458] Linking target buildtools/pmdinfogen/pmdinfogen
[98/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[99/2458] Generating rte_cfgfile_mingw with a custom command
[100/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[101/2458] Generating rte_compressdev_mingw with a custom command
[102/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[103/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[104/2458] Generating rte_cryptodev_def with a custom command
[105/2458] Generating rte_compressdev_def with a custom command
[106/2458] Generating rte_cryptodev_mingw with a custom command
[107/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[108/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[109/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[110/2458] Generating rte_distributor_mingw with a custom command
[111/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[112/2458] Generating rte_distributor_def with a custom command
[113/2458] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[114/2458] Generating rte_flow_classify_def with a custom command
[115/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[116/2458] Generating rte_efd_def with a custom command
[117/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[118/2458] Generating rte_efd_mingw with a custom command
[119/2458] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[120/2458] Generating rte_eventdev_def with a custom command
[121/2458] Linking static target lib/librte_metrics.a
[122/2458] Generating rte_eventdev_mingw with a custom command
[123/2458] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[124/2458] Linking static target lib/librte_telemetry.a
[125/2458] Generating rte_gro_def with a custom command
[126/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[127/2458] Generating rte_gro_mingw with a custom command
[128/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[129/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[130/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[131/2458] Generating rte_gso_def with a custom command
[132/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[133/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[134/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[135/2458] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[136/2458] Generating rte_gso_mingw with a custom command
[137/2458] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[138/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[139/2458] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[140/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[141/2458] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[142/2458] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[143/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[144/2458] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[145/2458] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[146/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[147/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[148/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[149/2458] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[150/2458] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[151/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[152/2458] Generating rte_ip_frag_def with a custom command
[153/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[154/2458] Generating rte_ip_frag_mingw with a custom command
[155/2458] Generating rte_jobstats_def with a custom command
[156/2458] Generating rte_jobstats_mingw with a custom command
[157/2458] Generating rte_kni_def with a custom command
[158/2458] Generating rte_latencystats_def with a custom command
[159/2458] Generating rte_kni_mingw with a custom command
[160/2458] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[161/2458] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[162/2458] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[163/2458] Linking static target lib/librte_cmdline.a
[164/2458] Linking static target lib/librte_cfgfile.a
[165/2458] Generating rte_latencystats_mingw with a custom command
[166/2458] Generating rte_lpm_def with a custom command
[167/2458] Generating rte_lpm_mingw with a custom command
[168/2458] Generating rte_member_def with a custom command
[169/2458] Generating rte_member_mingw with a custom command
[170/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[171/2458] Generating rte_power_mingw with a custom command
[172/2458] Generating rte_power_def with a custom command
[173/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[174/2458] Generating rte_mempool_bucket_mingw with a custom command
[175/2458] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[176/2458] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[177/2458] Linking static target lib/librte_net.a
[178/2458] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[179/2458] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[180/2458] Linking static target lib/librte_bitratestats.a
[181/2458] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[182/2458] Generating rte_pdump_mingw with a custom command
[183/2458] Linking static target lib/librte_jobstats.a
[184/2458] Generating rte_rawdev_def with a custom command
[185/2458] Generating rte_rawdev_mingw with a custom command
[186/2458] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[187/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[188/2458] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[189/2458] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[190/2458] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[191/2458] Linking static target lib/librte_timer.a
[192/2458] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[193/2458] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[194/2458] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[195/2458] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[196/2458] Generating rte_regexdev_def with a custom command
[197/2458] Generating rte_regexdev_mingw with a custom command
[198/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[199/2458] Generating rte_rib_def with a custom command
[200/2458] Generating rte_rib_mingw with a custom command
[201/2458] Generating rte_reorder_def with a custom command
[202/2458] Generating rte_reorder_mingw with a custom command
[203/2458] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[204/2458] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[205/2458] Generating rte_sched_def with a custom command
[206/2458] Generating rte_sched_mingw with a custom command
[207/2458] Generating rte_security_def with a custom command
[208/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[209/2458] Generating rte_security_mingw with a custom command
[210/2458] Generating rte_stack_def with a custom command
[211/2458] Generating rte_stack_mingw with a custom command
[212/2458] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[213/2458] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[214/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[215/2458] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[216/2458] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[217/2458] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[218/2458] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[219/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[220/2458] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[221/2458] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[222/2458] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[223/2458] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[224/2458] Generating kvargs.sym_chk with a meson_exe.py custom command
[225/2458] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[226/2458] Generating rte_vhost_def with a custom command
[227/2458] Generating rte_vhost_mingw with a custom command
[228/2458] Generating ring.sym_chk with a meson_exe.py custom command
[229/2458] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[230/2458] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[231/2458] Linking static target lib/librte_stack.a
[232/2458] Generating pci.sym_chk with a meson_exe.py custom command
[233/2458] Linking static target lib/librte_mempool.a
[234/2458] Generating rte_ipsec_def with a custom command
[235/2458] Linking target lib/librte_kvargs.so.21.0
[236/2458] Generating rte_ipsec_mingw with a custom command
[237/2458] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[238/2458] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[239/2458] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[240/2458] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[241/2458] Linking static target lib/librte_compressdev.a
[242/2458] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[243/2458] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[244/2458] Linking static target lib/librte_rcu.a
[245/2458] Generating rte_fib_def with a custom command
[246/2458] Generating rte_fib_mingw with a custom command
[247/2458] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[248/2458] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[249/2458] Generating meter.sym_chk with a meson_exe.py custom command
[250/2458] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[251/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[252/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[253/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[254/2458] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[255/2458] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[256/2458] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[257/2458] Linking static target lib/librte_gro.a
[258/2458] Linking static target lib/librte_bbdev.a
[259/2458] Generating rte_port_def with a custom command
[260/2458] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[261/2458] Generating metrics.sym_chk with a meson_exe.py custom command
[262/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[263/2458] Generating rte_port_mingw with a custom command
[264/2458] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[265/2458] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[266/2458] Linking static target lib/librte_gso.a
[267/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[268/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[269/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[270/2458] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[271/2458] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[272/2458] Linking static target lib/librte_ip_frag.a
[273/2458] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[274/2458] Generating telemetry.sym_chk with a meson_exe.py custom command
[275/2458] Linking static target lib/librte_eal.a
[276/2458] Linking static target lib/librte_latencystats.a
[277/2458] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[278/2458] Linking target lib/librte_telemetry.so.21.0
[279/2458] Generating cfgfile.sym_chk with a meson_exe.py custom command
[280/2458] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[281/2458] Generating cmdline.sym_chk with a meson_exe.py custom command
[282/2458] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[283/2458] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[284/2458] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[285/2458] Linking static target lib/librte_security.a
[286/2458] Linking static target lib/librte_regexdev.a
[287/2458] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[288/2458] Linking static target lib/librte_mbuf.a
[289/2458] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[290/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[291/2458] Generating bitratestats.sym_chk with a meson_exe.py custom command
[292/2458] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[293/2458] Compiling C object lib/librte_fib/libtrie_avx512_tmp.a.p/trie_avx512.c.o
[294/2458] Linking static target lib/librte_fib/libtrie_avx512_tmp.a
[295/2458] Generating net.sym_chk with a meson_exe.py custom command
[296/2458] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[297/2458] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[298/2458] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[299/2458] Generating jobstats.sym_chk with a meson_exe.py custom command
[300/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[301/2458] Linking static target lib/librte_reorder.a
[302/2458] Linking static target lib/librte_rawdev.a
[303/2458] Generating rte_table_def with a custom command
[304/2458] Generating timer.sym_chk with a meson_exe.py custom command
[305/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[306/2458] Generating rte_table_mingw with a custom command
[307/2458] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[308/2458] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[309/2458] Linking static target lib/librte_cryptodev.a
[310/2458] Linking static target lib/librte_power.a
[311/2458] Compiling C object lib/librte_fib/libdir24_8_avx512_tmp.a.p/dir24_8_avx512.c.o
[312/2458] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[313/2458] Linking static target lib/librte_fib/libdir24_8_avx512_tmp.a
[314/2458] Generating rte_pipeline_def with a custom command
[315/2458] Generating rte_pipeline_mingw with a custom command
[316/2458] Linking static target lib/librte_kni.a
[317/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[318/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[319/2458] Generating rte_flow_classify_mingw with a custom command
[320/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[321/2458] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[322/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[323/2458] Generating symbol file lib/librte_kvargs.so.21.0.p/librte_kvargs.so.21.0.symbols
[324/2458] Generating stack.sym_chk with a meson_exe.py custom command
[325/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[326/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[327/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[328/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[329/2458] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[330/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[331/2458] Generating rte_bpf_def with a custom command
[332/2458] Generating rte_bpf_mingw with a custom command
[333/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[334/2458] Linking static target lib/librte_rib.a
[335/2458] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[336/2458] Generating mempool.sym_chk with a meson_exe.py custom command
[337/2458] Linking static target lib/librte_distributor.a
[338/2458] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[339/2458] Linking static target lib/librte_efd.a
[340/2458] Generating rcu.sym_chk with a meson_exe.py custom command
[341/2458] Generating gro.sym_chk with a meson_exe.py custom command
[342/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[343/2458] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[344/2458] Linking static target lib/librte_lpm.a
[345/2458] Generating rte_graph_def with a custom command
[346/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[347/2458] Generating rte_graph_mingw with a custom command
[348/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[349/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[350/2458] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[351/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[352/2458] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[353/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[354/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[355/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[356/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[357/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[358/2458] Linking static target lib/librte_pdump.a
[359/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[360/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[361/2458] Generating gso.sym_chk with a meson_exe.py custom command
[362/2458] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[363/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[364/2458] Generating rte_node_mingw with a custom command
[365/2458] Generating rte_common_cpt_mingw with a custom command
[366/2458] Generating rte_node_def with a custom command
[367/2458] Generating rte_common_cpt_def with a custom command
[368/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[369/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[370/2458] Generating rte_common_dpaax_mingw with a custom command
[371/2458] Generating rte_common_dpaax_def with a custom command
[372/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[373/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[374/2458] Generating ip_frag.sym_chk with a meson_exe.py custom command
[375/2458] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[376/2458] Generating rte_common_iavf_def with a custom command
[377/2458] Generating rte_common_iavf_mingw with a custom command
[378/2458] Generating latencystats.sym_chk with a meson_exe.py custom command
[379/2458] Generating rte_common_octeontx_def with a custom command
[380/2458] Generating rte_common_octeontx_mingw with a custom command
[381/2458] Generating symbol file lib/librte_telemetry.so.21.0.p/librte_telemetry.so.21.0.symbols
[382/2458] Generating rte_common_octeontx2_def with a custom command
[383/2458] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[384/2458] Generating rte_common_octeontx2_mingw with a custom command
[385/2458] Linking static target lib/librte_member.a
[386/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[387/2458] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[388/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[389/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[390/2458] Generating compressdev.sym_chk with a meson_exe.py custom command
[391/2458] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[392/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[393/2458] Generating bbdev.sym_chk with a meson_exe.py custom command
[394/2458] Linking static target drivers/libtmp_rte_common_octeontx.a
[395/2458] Generating rte_common_octeontx.pmd.c with a custom command
[396/2458] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[397/2458] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[398/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[399/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[400/2458] Generating security.sym_chk with a meson_exe.py custom command
[401/2458] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[402/2458] Compiling C object drivers/librte_common_octeontx.so.21.0.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[403/2458] Linking static target drivers/librte_common_octeontx.a
[404/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[405/2458] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[406/2458] Generating rawdev.sym_chk with a meson_exe.py custom command
[407/2458] Linking static target lib/librte_flow_classify.a
[408/2458] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[409/2458] Generating reorder.sym_chk with a meson_exe.py custom command
[410/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[411/2458] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[412/2458] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[413/2458] Generating mbuf.sym_chk with a meson_exe.py custom command
[414/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load_elf.c.o
[415/2458] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[416/2458] Generating kni.sym_chk with a meson_exe.py custom command
[417/2458] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[418/2458] Linking static target drivers/libtmp_rte_common_dpaax.a
[419/2458] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[420/2458] Generating rte_common_dpaax.pmd.c with a custom command
[421/2458] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[422/2458] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[423/2458] Linking static target drivers/librte_common_dpaax.a
[424/2458] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[425/2458] Generating power.sym_chk with a meson_exe.py custom command
[426/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[427/2458] Compiling C object drivers/librte_common_dpaax.so.21.0.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[428/2458] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[429/2458] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[430/2458] Generating regexdev.sym_chk with a meson_exe.py custom command
[431/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[432/2458] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[433/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[434/2458] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[435/2458] Linking static target drivers/libtmp_rte_common_cpt.a
[436/2458] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[437/2458] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[438/2458] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[439/2458] Linking static target lib/librte_graph.a
[440/2458] Generating rte_common_cpt.pmd.c with a custom command
[441/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[442/2458] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[443/2458] Linking static target drivers/librte_common_cpt.a
[444/2458] Compiling C object drivers/librte_common_cpt.so.21.0.p/meson-generated_.._rte_common_cpt.pmd.c.o
[445/2458] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[446/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[447/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[448/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[449/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[450/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[451/2458] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[452/2458] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[453/2458] Linking static target lib/librte_table.a
[454/2458] Generating efd.sym_chk with a meson_exe.py custom command
[455/2458] Generating distributor.sym_chk with a meson_exe.py custom command
[456/2458] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[457/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[458/2458] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[459/2458] Generating lpm.sym_chk with a meson_exe.py custom command
[460/2458] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[461/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[462/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[463/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[464/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[465/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[466/2458] Generating cryptodev.sym_chk with a meson_exe.py custom command
[467/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[468/2458] Generating pdump.sym_chk with a meson_exe.py custom command
[469/2458] Generating rte_common_sfc_efx_mingw with a custom command
[470/2458] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[471/2458] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[472/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[473/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[474/2458] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[475/2458] Generating rte_common_sfc_efx_def with a custom command
[476/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[477/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[478/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[479/2458] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[480/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[481/2458] Linking static target drivers/libtmp_rte_common_iavf.a
[482/2458] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[483/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[484/2458] Generating rte_bus_dpaa_mingw with a custom command
[485/2458] Generating rte_bus_dpaa_def with a custom command
[486/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[487/2458] Generating rte_common_iavf.pmd.c with a custom command
[488/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[489/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[490/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[491/2458] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[492/2458] Linking static target drivers/librte_common_iavf.a
[493/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[494/2458] Compiling C object drivers/librte_common_iavf.so.21.0.p/meson-generated_.._rte_common_iavf.pmd.c.o
[495/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[496/2458] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx2.c.o
[497/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[498/2458] Generating member.sym_chk with a meson_exe.py custom command
[499/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[500/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[501/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[502/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[503/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[504/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[505/2458] Generating rte_bus_fslmc_mingw with a custom command
[506/2458] Generating rib.sym_chk with a meson_exe.py custom command
[507/2458] Generating rte_bus_fslmc_def with a custom command
[508/2458] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[509/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[510/2458] Generating rte_bus_ifpga_def with a custom command
[511/2458] Linking static target lib/librte_ipsec.a
[512/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[513/2458] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[514/2458] Generating rte_bus_ifpga_mingw with a custom command
[515/2458] Linking static target lib/librte_fib.a
[516/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[517/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[518/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[519/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[520/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[521/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[522/2458] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[523/2458] Generating rte_bus_pci_def with a custom command
[524/2458] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[525/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[526/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[527/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[528/2458] Generating rte_bus_pci_mingw with a custom command
[529/2458] Linking static target drivers/libtmp_rte_common_octeontx2.a
[530/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[531/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[532/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[533/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[534/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[535/2458] Generating rte_common_octeontx2.pmd.c with a custom command
[536/2458] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[537/2458] Generating rte_bus_vdev_def with a custom command
[538/2458] Generating rte_bus_vdev_mingw with a custom command
[539/2458] Linking static target lib/librte_sched.a
[540/2458] Generating rte_bus_vmbus_mingw with a custom command
[541/2458] Generating rte_bus_vmbus_def with a custom command
[542/2458] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[543/2458] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[544/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[545/2458] Compiling C object drivers/librte_common_octeontx2.so.21.0.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[546/2458] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[547/2458] Linking static target drivers/librte_common_octeontx2.a
[548/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mae.c.o
[549/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[550/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[551/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[552/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_logs.c.o
[553/2458] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[554/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[555/2458] Generating rte_common_qat_mingw with a custom command
[556/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[557/2458] Generating rte_common_qat_def with a custom command
[558/2458] Generating rte_mempool_bucket_def with a custom command
[559/2458] Generating rte_mempool_dpaa.pmd.c with a custom command
[560/2458] Generating rte_mempool_dpaa_def with a custom command
[561/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[562/2458] Generating rte_mempool_dpaa_mingw with a custom command
[563/2458] Compiling C object drivers/librte_mempool_dpaa.so.21.0.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[564/2458] Generating rte_mempool_dpaa2_def with a custom command
[565/2458] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[566/2458] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[567/2458] Generating rte_common_octeontx.sym_chk with a meson_exe.py custom command
[568/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[569/2458] Generating rte_mempool_dpaa2_mingw with a custom command
[570/2458] Linking static target drivers/librte_mempool_dpaa.a
[571/2458] Generating rte_mempool_octeontx_def with a custom command
[572/2458] Linking static target lib/librte_eventdev.a
[573/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[574/2458] Generating rte_mempool_octeontx_mingw with a custom command
[575/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[576/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[577/2458] Generating flow_classify.sym_chk with a meson_exe.py custom command
[578/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[579/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[580/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[581/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[582/2458] Generating rte_mempool_octeontx2_mingw with a custom command
[583/2458] Generating rte_mempool_octeontx2_def with a custom command
[584/2458] Generating rte_mempool_ring_def with a custom command
[585/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[586/2458] Generating rte_mempool_ring_mingw with a custom command
[587/2458] Generating rte_mempool_stack_def with a custom command
[588/2458] Compiling C object lib/librte_acl/libavx512_tmp.a.p/acl_run_avx512.c.o
[589/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[590/2458] Generating rte_mempool_stack_mingw with a custom command
[591/2458] Linking static target lib/librte_acl/libavx512_tmp.a
[592/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[593/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[594/2458] Generating rte_net_af_packet_def with a custom command
[595/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[596/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[597/2458] Linking static target lib/librte_acl.a
[598/2458] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[599/2458] Generating rte_net_af_packet_mingw with a custom command
[600/2458] Linking static target drivers/libtmp_rte_bus_ifpga.a
[601/2458] Generating rte_bus_ifpga.pmd.c with a custom command
[602/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[603/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[604/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[605/2458] Generating rte_net_ark_def with a custom command
[606/2458] Generating rte_net_ark_mingw with a custom command
[607/2458] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[608/2458] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[609/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[610/2458] Compiling C object drivers/librte_bus_ifpga.so.21.0.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[611/2458] Linking static target lib/librte_node.a
[612/2458] Linking static target drivers/librte_bus_ifpga.a
[613/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[614/2458] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[615/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[616/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[617/2458] Generating rte_net_atlantic_mingw with a custom command
[618/2458] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[619/2458] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[620/2458] Linking static target drivers/libtmp_rte_bus_vmbus.a
[621/2458] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[622/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[623/2458] Linking static target drivers/libtmp_rte_bus_vdev.a
[624/2458] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[625/2458] Linking static target lib/librte_ethdev.a
[626/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ddm.c.o
[627/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_rqp.c.o
[628/2458] Generating rte_bus_vdev.pmd.c with a custom command
[629/2458] Generating rte_common_sfc_efx.pmd.c with a custom command
[630/2458] Generating rte_net_atlantic_def with a custom command
[631/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_mpu.c.o
[632/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[633/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[634/2458] Generating rte_net_avp_def with a custom command
[635/2458] Generating rte_net_avp_mingw with a custom command
[636/2458] Generating rte_bus_vmbus.pmd.c with a custom command
[637/2458] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[638/2458] Compiling C object drivers/librte_common_sfc_efx.so.21.0.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[639/2458] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[640/2458] Compiling C object drivers/librte_bus_vdev.so.21.0.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[641/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[642/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_udm.c.o
[643/2458] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[644/2458] Generating rte_common_cpt.sym_chk with a meson_exe.py custom command
[645/2458] Linking static target drivers/librte_bus_vdev.a
[646/2458] Linking static target drivers/librte_bus_vmbus.a
[647/2458] Generating table.sym_chk with a meson_exe.py custom command
[648/2458] Generating rte_common_dpaax.sym_chk with a meson_exe.py custom command
[649/2458] Generating rte_net_axgbe_def with a custom command
[650/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[651/2458] Compiling C object drivers/librte_bus_vmbus.so.21.0.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[652/2458] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[653/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[654/2458] Generating rte_net_axgbe_mingw with a custom command
[655/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[656/2458] Linking static target lib/librte_bpf.a
[657/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[658/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[659/2458] Generating rte_net_bond_mingw with a custom command
[660/2458] Generating rte_net_bond_def with a custom command
[661/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[662/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[663/2458] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[664/2458] Generating rte_net_bnx2x_def with a custom command
[665/2458] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[666/2458] Linking static target drivers/librte_common_sfc_efx.a
[667/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[668/2458] Generating rte_net_bnx2x_mingw with a custom command
[669/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev.c.o
[670/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_common.c.o
[671/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[672/2458] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[673/2458] Generating graph.sym_chk with a meson_exe.py custom command
[674/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[675/2458] Linking static target drivers/libtmp_rte_bus_pci.a
[676/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[677/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[678/2458] Generating rte_bus_pci.pmd.c with a custom command
[679/2458] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[680/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[681/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_device.c.o
[682/2458] Linking static target drivers/librte_bus_pci.a
[683/2458] Generating rte_common_iavf.sym_chk with a meson_exe.py custom command
[684/2458] Compiling C object drivers/librte_bus_pci.so.21.0.p/meson-generated_.._rte_bus_pci.pmd.c.o
[685/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[686/2458] Generating ipsec.sym_chk with a meson_exe.py custom command
[687/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[688/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[689/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktdir.c.o
[690/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[691/2458] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[692/2458] Linking static target drivers/libtmp_rte_mempool_stack.a
[693/2458] Generating rte_mempool_stack.pmd.c with a custom command
[694/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp_pmd.c.o
[695/2458] Generating rte_crypto_scheduler_mingw with a custom command
[696/2458] Generating rte_crypto_scheduler_def with a custom command
[697/2458] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[698/2458] Compiling C object drivers/librte_mempool_stack.so.21.0.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[699/2458] Linking static target drivers/librte_mempool_stack.a
[700/2458] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtqueue.c.o
[701/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[702/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[703/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[704/2458] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[705/2458] Generating rte_mempool_octeontx.pmd.c with a custom command
[706/2458] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[707/2458] Generating rte_crypto_virtio_mingw with a custom command
[708/2458] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[709/2458] Linking static target drivers/librte_mempool_octeontx.a
[710/2458] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[711/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[712/2458] Generating sched.sym_chk with a meson_exe.py custom command
[713/2458] Generating rte_mempool_dpaa2.pmd.c with a custom command
[714/2458] Compiling C object drivers/librte_mempool_octeontx.so.21.0.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[715/2458] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[716/2458] Compiling C object drivers/librte_mempool_dpaa2.so.21.0.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[717/2458] Linking static target drivers/librte_mempool_dpaa2.a
[718/2458] Generating eal.sym_chk with a meson_exe.py custom command
[719/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/common_qat_qat_qp.c.o
[720/2458] Generating rte_crypto_virtio_def with a custom command
[721/2458] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[722/2458] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[723/2458] Generating rte_mempool_dpaa.sym_chk with a meson_exe.py custom command
[724/2458] Generating rte_mempool_octeontx2.pmd.c with a custom command
[725/2458] Generating fib.sym_chk with a meson_exe.py custom command
[726/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_tx.c.o
[727/2458] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[728/2458] Compiling C object drivers/librte_mempool_octeontx2.so.21.0.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[729/2458] Linking static target drivers/librte_mempool_octeontx2.a
[730/2458] Linking target lib/librte_eal.so.21.0
[731/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[732/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[733/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktchkr.c.o
[734/2458] Generating acl.sym_chk with a meson_exe.py custom command
[735/2458] Generating eventdev.sym_chk with a meson_exe.py custom command
[736/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_pktgen.c.o
[737/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[738/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[739/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev.c.o
[740/2458] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[741/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[742/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[743/2458] Linking static target drivers/libtmp_rte_bus_fslmc.a
[744/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[745/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[746/2458] Generating rte_bus_ifpga.sym_chk with a meson_exe.py custom command
[747/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[748/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[749/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[750/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[751/2458] Compiling C object drivers/libtmp_rte_common_qat.a.p/compress_qat_qat_comp.c.o
[752/2458] Linking static target drivers/libtmp_rte_common_qat.a
[753/2458] Generating rte_bus_fslmc.pmd.c with a custom command
[754/2458] Generating node.sym_chk with a meson_exe.py custom command
[755/2458] Generating rte_common_qat.pmd.c with a custom command
[756/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[757/2458] Compiling C object drivers/librte_bus_fslmc.so.21.0.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[758/2458] Compiling C object drivers/librte_common_qat.a.p/meson-generated_.._rte_common_qat.pmd.c.o
[759/2458] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[760/2458] Linking static target drivers/librte_common_qat.a
[761/2458] Linking static target drivers/librte_bus_fslmc.a
[762/2458] Generating rte_common_octeontx2.sym_chk with a meson_exe.py custom command
[763/2458] Generating rte_bus_vmbus.sym_chk with a meson_exe.py custom command
[764/2458] Compiling C object drivers/librte_common_qat.so.21.0.p/meson-generated_.._rte_common_qat.pmd.c.o
[765/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[766/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[767/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_util.c.o
[768/2458] Generating bpf.sym_chk with a meson_exe.py custom command
[769/2458] Generating rte_bus_vdev.sym_chk with a meson_exe.py custom command
[770/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[771/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[772/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[773/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[774/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[775/2458] Compiling C object drivers/libtmp_rte_net_ark.a.p/net_ark_ark_ethdev_rx.c.o
[776/2458] Linking static target drivers/libtmp_rte_net_ark.a
[777/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[778/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[779/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[780/2458] Generating rte_net_ark.pmd.c with a custom command
[781/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[782/2458] Compiling C object drivers/librte_net_ark.a.p/meson-generated_.._rte_net_ark.pmd.c.o
[783/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[784/2458] Generating rte_net_bnxt_mingw with a custom command
[785/2458] Linking static target drivers/librte_net_ark.a
[786/2458] Compiling C object drivers/librte_net_ark.so.21.0.p/meson-generated_.._rte_net_ark.pmd.c.o
[787/2458] Generating rte_net_bnxt_def with a custom command
[788/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[789/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[790/2458] Compiling C object drivers/libtmp_rte_net_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[791/2458] Linking static target drivers/libtmp_rte_net_af_packet.a
[792/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[793/2458] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip.c.o
[794/2458] Generating rte_net_af_packet.pmd.c with a custom command
[795/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[796/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[797/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[798/2458] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_pci.c.o
[799/2458] Compiling C object drivers/librte_net_af_packet.a.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[800/2458] Compiling C object drivers/librte_net_af_packet.so.21.0.p/meson-generated_.._rte_net_af_packet.pmd.c.o
[801/2458] Linking static target drivers/librte_net_af_packet.a
[802/2458] Generating rte_bus_pci.sym_chk with a meson_exe.py custom command
[803/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[804/2458] Generating rte_net_cxgbe_def with a custom command
[805/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[806/2458] Generating rte_net_cxgbe_mingw with a custom command
[807/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[808/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[809/2458] Generating rte_mempool_stack.sym_chk with a meson_exe.py custom command
[810/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[811/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[812/2458] Generating rte_net_dpaa_mingw with a custom command
[813/2458] Generating rte_net_dpaa_def with a custom command
[814/2458] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[815/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[816/2458] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_rxtx.c.o
[817/2458] Linking static target drivers/libtmp_rte_mempool_ring.a
[818/2458] Generating rte_mempool_ring.pmd.c with a custom command
[819/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[820/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[821/2458] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[822/2458] Compiling C object drivers/librte_mempool_ring.so.21.0.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[823/2458] Linking static target drivers/librte_mempool_ring.a
[824/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[825/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[826/2458] Generating rte_mempool_octeontx.sym_chk with a meson_exe.py custom command
[827/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[828/2458] Generating rte_net_dpaa2_mingw with a custom command
[829/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[830/2458] Generating rte_mempool_dpaa2.sym_chk with a meson_exe.py custom command
[831/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[832/2458] Generating rte_net_dpaa2_def with a custom command
[833/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_act.c.o
[834/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_act.c.o
[835/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[836/2458] Generating rte_mempool_octeontx2.sym_chk with a meson_exe.py custom command
[837/2458] Generating symbol file lib/librte_eal.so.21.0.p/librte_eal.so.21.0.symbols
[838/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[839/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dprtc.c.o
[840/2458] Linking target lib/librte_ring.so.21.0
[841/2458] Linking target lib/librte_meter.so.21.0
[842/2458] Compiling C object drivers/libtmp_rte_crypto_virtio.a.p/crypto_virtio_virtio_cryptodev.c.o
[843/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[844/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[845/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_tun.c.o
[846/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[847/2458] Linking target lib/librte_pci.so.21.0
[848/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[849/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[850/2458] Compiling C object drivers/libtmp_rte_net_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[851/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[852/2458] Linking target lib/librte_timer.so.21.0
[853/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[854/2458] Linking target lib/librte_metrics.so.21.0
[855/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[856/2458] Linking target lib/librte_jobstats.so.21.0
[857/2458] Linking target lib/librte_cfgfile.so.21.0
[858/2458] Linking target lib/librte_acl.so.21.0
[859/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[860/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[861/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_wh_plus_class.c.o
[862/2458] Linking target lib/librte_rawdev.so.21.0
[863/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[864/2458] Linking static target drivers/libtmp_rte_net_atlantic.a
[865/2458] Linking static target drivers/libtmp_rte_crypto_virtio.a
[866/2458] Linking target lib/librte_stack.so.21.0
[867/2458] Linking target lib/librte_graph.so.21.0
[868/2458] Linking target drivers/librte_common_dpaax.so.21.0
[869/2458] Linking target drivers/librte_common_iavf.so.21.0
[870/2458] Generating rte_crypto_virtio.pmd.c with a custom command
[871/2458] Linking target drivers/librte_common_octeontx.so.21.0
[872/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_stingray_class.c.o
[873/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[874/2458] Generating rte_net_atlantic.pmd.c with a custom command
[875/2458] Linking target drivers/librte_bus_vdev.so.21.0
[876/2458] Linking target drivers/librte_bus_vmbus.so.21.0
[877/2458] Compiling C object drivers/librte_crypto_virtio.a.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[878/2458] Compiling C object drivers/libtmp_rte_net_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[879/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[880/2458] Compiling C object drivers/librte_crypto_virtio.so.21.0.p/meson-generated_.._rte_crypto_virtio.pmd.c.o
[881/2458] Linking static target drivers/librte_crypto_virtio.a
[882/2458] Compiling C object drivers/librte_net_atlantic.a.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[883/2458] Linking static target drivers/libtmp_rte_net_axgbe.a
[884/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[885/2458] Generating rte_common_qat.sym_chk with a meson_exe.py custom command
[886/2458] Compiling C object drivers/librte_net_atlantic.so.21.0.p/meson-generated_.._rte_net_atlantic.pmd.c.o
[887/2458] Linking static target drivers/librte_net_atlantic.a
[888/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[889/2458] Generating rte_net_axgbe.pmd.c with a custom command
[890/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[891/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[892/2458] Compiling C object drivers/librte_net_axgbe.so.21.0.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[893/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[894/2458] Compiling C object drivers/librte_net_axgbe.a.p/meson-generated_.._rte_net_axgbe.pmd.c.o
[895/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[896/2458] Linking static target drivers/librte_net_axgbe.a
[897/2458] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[898/2458] Linking static target drivers/libtmp_rte_bus_dpaa.a
[899/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[900/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_l2t.c.o
[901/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[902/2458] Generating rte_bus_dpaa.pmd.c with a custom command
[903/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_e1000_logs.c.o
[904/2458] Generating rte_net_ark.sym_chk with a meson_exe.py custom command
[905/2458] Compiling C object drivers/librte_bus_dpaa.so.21.0.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[906/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[907/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[908/2458] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[909/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_smt.c.o
[910/2458] Linking static target drivers/librte_bus_dpaa.a
[911/2458] Generating rte_net_e1000_def with a custom command
[912/2458] Generating rte_net_e1000_mingw with a custom command
[913/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[914/2458] Generating rte_net_ena_def with a custom command
[915/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[916/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[917/2458] Generating rte_net_ena_mingw with a custom command
[918/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[919/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[920/2458] Generating rte_net_af_packet.sym_chk with a meson_exe.py custom command
[921/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ptp.c.o
[922/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[923/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[924/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[925/2458] Generating rte_net_enetc_def with a custom command
[926/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[927/2458] Generating rte_net_enetc_mingw with a custom command
[928/2458] Compiling C object drivers/libtmp_rte_net_avp.a.p/net_avp_avp_ethdev.c.o
[929/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[930/2458] Linking static target drivers/libtmp_rte_net_avp.a
[931/2458] Generating rte_net_avp.pmd.c with a custom command
[932/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[933/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[934/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[935/2458] Compiling C object drivers/librte_net_avp.a.p/meson-generated_.._rte_net_avp.pmd.c.o
[936/2458] Compiling C object drivers/librte_net_avp.so.21.0.p/meson-generated_.._rte_net_avp.pmd.c.o
[937/2458] Linking static target drivers/librte_net_avp.a
[938/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[939/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[940/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[941/2458] Generating rte_net_enic_mingw with a custom command
[942/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[943/2458] Generating rte_net_enic_def with a custom command
[944/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_intr.c.o
[945/2458] Generating rte_mempool_ring.sym_chk with a meson_exe.py custom command
[946/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[947/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[948/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[949/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[950/2458] Generating ethdev.sym_chk with a meson_exe.py custom command
[951/2458] Generating rte_net_failsafe_mingw with a custom command
[952/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[953/2458] Generating rte_net_failsafe_def with a custom command
[954/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[955/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[956/2458] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_eth_com.c.o
[957/2458] Generating symbol file lib/librte_meter.so.21.0.p/librte_meter.so.21.0.symbols
[958/2458] Generating symbol file lib/librte_ring.so.21.0.p/librte_ring.so.21.0.symbols
[959/2458] Generating symbol file lib/librte_pci.so.21.0.p/librte_pci.so.21.0.symbols
[960/2458] Generating symbol file lib/librte_metrics.so.21.0.p/librte_metrics.so.21.0.symbols
[961/2458] Generating symbol file lib/librte_rawdev.so.21.0.p/librte_rawdev.so.21.0.symbols
[962/2458] Generating symbol file lib/librte_timer.so.21.0.p/librte_timer.so.21.0.symbols
[963/2458] Linking target lib/librte_rcu.so.21.0
[964/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[965/2458] Linking target lib/librte_mempool.so.21.0
[966/2458] Generating symbol file lib/librte_acl.so.21.0.p/librte_acl.so.21.0.symbols
[967/2458] Generating symbol file drivers/librte_common_dpaax.so.21.0.p/librte_common_dpaax.so.21.0.symbols
[968/2458] Generating symbol file drivers/librte_common_octeontx.so.21.0.p/librte_common_octeontx.so.21.0.symbols
[969/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[970/2458] Linking target drivers/librte_bus_ifpga.so.21.0
[971/2458] Linking target drivers/librte_bus_pci.so.21.0
[972/2458] Generating symbol file lib/librte_stack.so.21.0.p/librte_stack.so.21.0.symbols
[973/2458] Linking target lib/librte_power.so.21.0
[974/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[975/2458] Generating symbol file drivers/librte_common_iavf.so.21.0.p/librte_common_iavf.so.21.0.symbols
[976/2458] Generating symbol file lib/librte_graph.so.21.0.p/librte_graph.so.21.0.symbols
[977/2458] Generating symbol file drivers/librte_bus_vdev.so.21.0.p/librte_bus_vdev.so.21.0.symbols
[978/2458] Generating rte_net_fm10k_def with a custom command
[979/2458] Generating rte_net_fm10k_mingw with a custom command
[980/2458] Generating symbol file drivers/librte_bus_vmbus.so.21.0.p/librte_bus_vmbus.so.21.0.symbols
[981/2458] Generating rte_crypto_virtio.sym_chk with a meson_exe.py custom command
[982/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[983/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[984/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_cq.c.o
[985/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_rq.c.o
[986/2458] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[987/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[988/2458] Linking static target lib/librte_port.a
[989/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_wq.c.o
[990/2458] Generating rte_net_axgbe.sym_chk with a meson_exe.py custom command
[991/2458] Generating rte_net_atlantic.sym_chk with a meson_exe.py custom command
[992/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[993/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[994/2458] Generating rte_net_i40e_mingw with a custom command
[995/2458] Generating rte_net_i40e_def with a custom command
[996/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_pf.c.o
[997/2458] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_rxtx.c.o
[998/2458] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[999/2458] Linking static target lib/librte_hash.a
[1000/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_clsf.c.o
[1001/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_res.c.o
[1002/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1003/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[1004/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1005/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1006/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_vf_representor.c.o
[1007/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1008/2458] Generating rte_bus_fslmc.sym_chk with a meson_exe.py custom command
[1009/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1010/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1011/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1012/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe.c.o
[1013/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_ethdev.c.o
[1014/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1015/2458] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_base_ena_com.c.o
[1016/2458] Generating rte_net_hinic_def with a custom command
[1017/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1018/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1019/2458] Generating rte_net_avp.sym_chk with a meson_exe.py custom command
[1020/2458] Generating rte_net_hinic_mingw with a custom command
[1021/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[1022/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1023/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1024/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1025/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_flow.c.o
[1026/2458] Generating rte_net_hns3_mingw with a custom command
[1027/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1028/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_ethdev.c.o
[1029/2458] Generating rte_net_hns3_def with a custom command
[1030/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1031/2458] Generating symbol file lib/librte_mempool.so.21.0.p/librte_mempool.so.21.0.symbols
[1032/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1033/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_flow.c.o
[1034/2458] Generating symbol file lib/librte_rcu.so.21.0.p/librte_rcu.so.21.0.symbols
[1035/2458] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1036/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1037/2458] Linking target lib/librte_mbuf.so.21.0
[1038/2458] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1039/2458] Linking target lib/librte_rib.so.21.0
[1040/2458] Linking target drivers/librte_mempool_ring.so.21.0
[1041/2458] Compiling C object drivers/libtmp_rte_net_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1042/2458] Linking static target drivers/libtmp_rte_net_bond.a
[1043/2458] Generating symbol file drivers/librte_bus_pci.so.21.0.p/librte_bus_pci.so.21.0.symbols
[1044/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_sge.c.o
[1045/2458] Linking target drivers/librte_mempool_stack.so.21.0
[1046/2458] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[1047/2458] Generating rte_net_bond.pmd.c with a custom command
[1048/2458] Linking static target drivers/libtmp_rte_mempool_bucket.a
[1049/2458] Generating rte_mempool_bucket.pmd.c with a custom command
[1050/2458] Generating rte_net_iavf_def with a custom command
[1051/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1052/2458] Generating rte_net_iavf_mingw with a custom command
[1053/2458] Compiling C object drivers/librte_net_bond.so.21.0.p/meson-generated_.._rte_net_bond.pmd.c.o
[1054/2458] Compiling C object drivers/librte_mempool_bucket.so.21.0.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[1055/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1056/2458] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[1057/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1058/2458] Compiling C object drivers/librte_net_bond.a.p/meson-generated_.._rte_net_bond.pmd.c.o
[1059/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1060/2458] Linking static target drivers/librte_mempool_bucket.a
[1061/2458] Linking static target drivers/librte_net_bond.a
[1062/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1063/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1064/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1065/2458] Compiling C object drivers/libtmp_rte_net_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1066/2458] Linking static target drivers/libtmp_rte_net_cxgbe.a
[1067/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_base_vnic_dev.c.o
[1068/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1069/2458] Generating rte_net_cxgbe.pmd.c with a custom command
[1070/2458] Generating port.sym_chk with a meson_exe.py custom command
[1071/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_rxtx.c.o
[1072/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1073/2458] Compiling C object drivers/librte_net_cxgbe.a.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1074/2458] Compiling C object drivers/librte_net_cxgbe.so.21.0.p/meson-generated_.._rte_net_cxgbe.pmd.c.o
[1075/2458] Linking static target drivers/librte_net_cxgbe.a
[1076/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1077/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o
[1078/2458] Compiling C object drivers/libtmp_rte_net_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1079/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1080/2458] Linking static target drivers/libtmp_rte_net_enetc.a
[1081/2458] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1082/2458] Linking static target drivers/net/e1000/base/libe1000_base.a
[1083/2458] Generating rte_net_enetc.pmd.c with a custom command
[1084/2458] Compiling C object drivers/librte_net_enetc.a.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1085/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1086/2458] Linking static target drivers/librte_net_enetc.a
[1087/2458] Generating hash.sym_chk with a meson_exe.py custom command
[1088/2458] Generating rte_common_sfc_efx.sym_chk with a meson_exe.py custom command
[1089/2458] Compiling C object drivers/librte_net_enetc.so.21.0.p/meson-generated_.._rte_net_enetc.pmd.c.o
[1090/2458] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[1091/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_cmd.c.o
[1092/2458] Linking target lib/librte_hash.so.21.0
[1093/2458] Linking target drivers/librte_common_sfc_efx.so.21.0
[1094/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mp.c.o
[1095/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_regs.c.o
[1096/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1097/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_mbx.c.o
[1098/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rss.c.o
[1099/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_em_rxtx.c.o
[1100/2458] Generating rte_net_ice_def with a custom command
[1101/2458] Generating rte_net_ice_mingw with a custom command
[1102/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1103/2458] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1104/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_main.c.o
[1105/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1106/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o
[1107/2458] Generating rte_bus_dpaa.sym_chk with a meson_exe.py custom command
[1108/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_stats.c.o
[1109/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_intr.c.o
[1110/2458] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1111/2458] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_logs.c.o
[1112/2458] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1113/2458] Linking static target drivers/net/hinic/base/libhinic_base.a
[1114/2458] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1115/2458] Generating symbol file lib/librte_rib.so.21.0.p/librte_rib.so.21.0.symbols
[1116/2458] Generating symbol file lib/librte_mbuf.so.21.0.p/librte_mbuf.so.21.0.symbols
[1117/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1118/2458] Compiling C object drivers/libtmp_rte_net_enic.a.p/net_enic_enic_fm_flow.c.o
[1119/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1120/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_fdir.c.o
[1121/2458] Generating rte_net_igc_def with a custom command
[1122/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1123/2458] Linking target lib/librte_fib.so.21.0
[1124/2458] Linking target lib/librte_compressdev.so.21.0
[1125/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_hash.c.o
[1126/2458] Linking target lib/librte_bbdev.so.21.0
[1127/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1128/2458] Linking target lib/librte_net.so.21.0
[1129/2458] Linking target lib/librte_distributor.so.21.0
[1130/2458] Linking target lib/librte_cryptodev.so.21.0
[1131/2458] Linking static target drivers/libtmp_rte_net_enic.a
[1132/2458] Linking target lib/librte_regexdev.so.21.0
[1133/2458] Linking target lib/librte_reorder.so.21.0
[1134/2458] Linking target lib/librte_sched.so.21.0
[1135/2458] Linking target drivers/librte_mempool_octeontx.so.21.0
[1136/2458] Generating rte_net_igc_mingw with a custom command
[1137/2458] Generating rte_net_enic.pmd.c with a custom command
[1138/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1139/2458] Generating rte_net_bond.sym_chk with a meson_exe.py custom command
[1140/2458] Compiling C object drivers/librte_net_enic.a.p/meson-generated_.._rte_net_enic.pmd.c.o
[1141/2458] Generating rte_mempool_bucket.sym_chk with a meson_exe.py custom command
[1142/2458] Compiling C object drivers/librte_net_enic.so.21.0.p/meson-generated_.._rte_net_enic.pmd.c.o
[1143/2458] Linking static target drivers/librte_net_enic.a
[1144/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_fdir.c.o
[1145/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1146/2458] Linking target drivers/librte_mempool_bucket.so.21.0
[1147/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1148/2458] Compiling C object drivers/libtmp_rte_net_ena.a.p/net_ena_ena_ethdev.c.o
[1149/2458] Linking static target drivers/libtmp_rte_net_ena.a
[1150/2458] Generating rte_net_ena.pmd.c with a custom command
[1151/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_rxtx.c.o
[1152/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_flow.c.o
[1153/2458] Generating rte_net_cxgbe.sym_chk with a meson_exe.py custom command
[1154/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1155/2458] Compiling C object drivers/librte_net_ena.a.p/meson-generated_.._rte_net_ena.pmd.c.o
[1156/2458] Compiling C object drivers/librte_net_ena.so.21.0.p/meson-generated_.._rte_net_ena.pmd.c.o
[1157/2458] Linking static target drivers/librte_net_ena.a
[1158/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_hash.c.o
[1159/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_dcb.c.o
[1160/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1161/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1162/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1163/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1164/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1165/2458] Generating symbol file lib/librte_hash.so.21.0.p/librte_hash.so.21.0.symbols
[1166/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1167/2458] Generating rte_net_enetc.sym_chk with a meson_exe.py custom command
[1168/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1169/2458] Generating symbol file drivers/librte_common_sfc_efx.so.21.0.p/librte_common_sfc_efx.so.21.0.symbols
[1170/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1171/2458] Linking target lib/librte_efd.so.21.0
[1172/2458] Linking target lib/librte_lpm.so.21.0
[1173/2458] Linking target lib/librte_member.so.21.0
[1174/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1175/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_generic_flow.c.o
[1176/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1177/2458] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1178/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1179/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_parent.c.o
[1180/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1181/2458] Generating rte_net_ixgbe_mingw with a custom command
[1182/2458] Generating rte_net_ixgbe_def with a custom command
[1183/2458] Generating rte_net_kni_def with a custom command
[1184/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o
[1185/2458] Generating rte_net_kni_mingw with a custom command
[1186/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1187/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1188/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1189/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1190/2458] Generating rte_net_liquidio_mingw with a custom command
[1191/2458] Generating rte_net_liquidio_def with a custom command
[1192/2458] Generating rte_net_memif_def with a custom command
[1193/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1194/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1195/2458] Compiling C object drivers/libtmp_rte_net_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1196/2458] Linking static target drivers/libtmp_rte_net_failsafe.a
[1197/2458] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1198/2458] Generating rte_net_memif_mingw with a custom command
[1199/2458] Compiling C object drivers/libtmp_rte_net_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1200/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1201/2458] Generating rte_net_failsafe.pmd.c with a custom command
[1202/2458] Linking static target drivers/libtmp_rte_net_hinic.a
[1203/2458] Generating rte_net_netvsc_def with a custom command
[1204/2458] Compiling C object drivers/librte_net_failsafe.so.21.0.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1205/2458] Generating rte_net_netvsc_mingw with a custom command
[1206/2458] Compiling C object drivers/librte_net_failsafe.a.p/meson-generated_.._rte_net_failsafe.pmd.c.o
[1207/2458] Generating rte_net_hinic.pmd.c with a custom command
[1208/2458] Linking static target drivers/librte_net_failsafe.a
[1209/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1210/2458] Compiling C object drivers/librte_net_hinic.a.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1211/2458] Linking static target drivers/librte_net_hinic.a
[1212/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1213/2458] Compiling C object drivers/librte_net_hinic.so.21.0.p/meson-generated_.._rte_net_hinic.pmd.c.o
[1214/2458] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_filter.c.o
[1215/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1216/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_acl_filter.c.o
[1217/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1218/2458] Compiling C object drivers/libtmp_rte_net_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1219/2458] Linking static target drivers/libtmp_rte_net_dpaa.a
[1220/2458] Generating rte_net_dpaa.pmd.c with a custom command
[1221/2458] Generating symbol file lib/librte_net.so.21.0.p/librte_net.so.21.0.symbols
[1222/2458] Generating symbol file lib/librte_cryptodev.so.21.0.p/librte_cryptodev.so.21.0.symbols
[1223/2458] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_flow.c.o
[1224/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1225/2458] Compiling C object drivers/librte_net_dpaa.a.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1226/2458] Generating symbol file drivers/librte_mempool_octeontx.so.21.0.p/librte_mempool_octeontx.so.21.0.symbols
[1227/2458] Generating symbol file lib/librte_bbdev.so.21.0.p/librte_bbdev.so.21.0.symbols
[1228/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o
[1229/2458] Linking static target drivers/librte_net_dpaa.a
[1230/2458] Generating symbol file lib/librte_reorder.so.21.0.p/librte_reorder.so.21.0.symbols
[1231/2458] Generating symbol file lib/librte_compressdev.so.21.0.p/librte_compressdev.so.21.0.symbols
[1232/2458] Generating symbol file lib/librte_sched.so.21.0.p/librte_sched.so.21.0.symbols
[1233/2458] Linking target lib/librte_ethdev.so.21.0
[1234/2458] Linking target lib/librte_cmdline.so.21.0
[1235/2458] Compiling C object drivers/librte_net_dpaa.so.21.0.p/meson-generated_.._rte_net_dpaa.pmd.c.o
[1236/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1237/2458] Linking target lib/librte_security.so.21.0
[1238/2458] Linking target drivers/librte_common_cpt.so.21.0
[1239/2458] Linking target drivers/librte_crypto_virtio.so.21.0
[1240/2458] Generating symbol file lib/librte_regexdev.so.21.0.p/librte_regexdev.so.21.0.symbols
[1241/2458] Linking target drivers/librte_common_qat.so.21.0
[1242/2458] Generating rte_net_nfp_mingw with a custom command
[1243/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1244/2458] Generating rte_net_nfp_def with a custom command
[1245/2458] Generating rte_net_null_def with a custom command
[1246/2458] Generating rte_net_enic.sym_chk with a meson_exe.py custom command
[1247/2458] Generating rte_net_null_mingw with a custom command
[1248/2458] Compiling C object drivers/libtmp_rte_net_e1000.a.p/net_e1000_igb_ethdev.c.o
[1249/2458] Linking static target drivers/libtmp_rte_net_e1000.a
[1250/2458] Compiling C object drivers/libtmp_rte_net_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1251/2458] Compiling C object drivers/libtmp_rte_net_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1252/2458] Linking static target drivers/libtmp_rte_net_fm10k.a
[1253/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_dcf.c.o
[1254/2458] Linking static target drivers/libtmp_rte_net_bnxt.a
[1255/2458] Generating rte_net_e1000.pmd.c with a custom command
[1256/2458] Generating rte_net_fm10k.pmd.c with a custom command
[1257/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_fdir_filter.c.o
[1258/2458] Compiling C object drivers/librte_net_e1000.a.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1259/2458] Compiling C object drivers/librte_net_e1000.so.21.0.p/meson-generated_.._rte_net_e1000.pmd.c.o
[1260/2458] Generating rte_net_octeontx_def with a custom command
[1261/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1262/2458] Linking static target drivers/librte_net_e1000.a
[1263/2458] Compiling C object drivers/librte_net_fm10k.a.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1264/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1265/2458] Compiling C object drivers/librte_net_fm10k.so.21.0.p/meson-generated_.._rte_net_fm10k.pmd.c.o
[1266/2458] Linking static target drivers/librte_net_fm10k.a
[1267/2458] Generating rte_net_octeontx_mingw with a custom command
[1268/2458] Generating rte_net_ena.sym_chk with a meson_exe.py custom command
[1269/2458] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1270/2458] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1271/2458] Linking static target drivers/net/igc/base/libigc_base.a
[1272/2458] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1273/2458] Generating symbol file lib/librte_lpm.so.21.0.p/librte_lpm.so.21.0.symbols
[1274/2458] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1275/2458] Linking static target drivers/net/i40e/base/libi40e_base.a
[1276/2458] Generating rte_net_bnxt.pmd.c with a custom command
[1277/2458] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1278/2458] Compiling C object drivers/libtmp_rte_net_kni.a.p/net_kni_rte_eth_kni.c.o
[1279/2458] Compiling C object drivers/librte_net_bnxt.a.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1280/2458] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1281/2458] Linking static target drivers/libtmp_rte_net_kni.a
[1282/2458] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1283/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1284/2458] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1285/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1286/2458] Compiling C object drivers/librte_net_bnxt.so.21.0.p/meson-generated_.._rte_net_bnxt.pmd.c.o
[1287/2458] Generating rte_net_kni.pmd.c with a custom command
[1288/2458] Linking static target drivers/librte_net_bnxt.a
[1289/2458] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1290/2458] Compiling C object drivers/librte_net_kni.a.p/meson-generated_.._rte_net_kni.pmd.c.o
[1291/2458] Linking static target drivers/librte_net_kni.a
[1292/2458] Compiling C object drivers/librte_net_kni.so.21.0.p/meson-generated_.._rte_net_kni.pmd.c.o
[1293/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1294/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1295/2458] Compiling C object drivers/net/ice/libice_avx512_lib.a.p/ice_rxtx_vec_avx512.c.o
[1296/2458] Linking static target drivers/net/ice/libice_avx512_lib.a
[1297/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1298/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[1299/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1300/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1301/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_switch_filter.c.o
[1302/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1303/2458] Generating rte_net_octeontx2_mingw with a custom command
[1304/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1305/2458] Generating rte_net_octeontx2_def with a custom command
[1306/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1307/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1308/2458] Generating rte_net_pcap_def with a custom command
[1309/2458] Generating rte_net_pcap_mingw with a custom command
[1310/2458] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1311/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1312/2458] Generating rte_net_pfe_def with a custom command
[1313/2458] Generating rte_net_pfe_mingw with a custom command
[1314/2458] Generating rte_net_failsafe.sym_chk with a meson_exe.py custom command
[1315/2458] Generating rte_net_hinic.sym_chk with a meson_exe.py custom command
[1316/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1317/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1318/2458] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1319/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1320/2458] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_memif_socket.c.o
[1321/2458] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_ethdev.c.o
[1322/2458] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1323/2458] Generating symbol file lib/librte_ethdev.so.21.0.p/librte_ethdev.so.21.0.symbols
[1324/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1325/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1326/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1327/2458] Generating symbol file lib/librte_security.so.21.0.p/librte_security.so.21.0.symbols
[1328/2458] Generating symbol file drivers/librte_common_cpt.so.21.0.p/librte_common_cpt.so.21.0.symbols
[1329/2458] Generating rte_net_dpaa.sym_chk with a meson_exe.py custom command
[1330/2458] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1331/2458] Linking target lib/librte_bitratestats.so.21.0
[1332/2458] Linking target lib/librte_eventdev.so.21.0
[1333/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1334/2458] Linking target lib/librte_gro.so.21.0
[1335/2458] Linking target lib/librte_gso.so.21.0
[1336/2458] Linking target lib/librte_ip_frag.so.21.0
[1337/2458] Linking target lib/librte_latencystats.so.21.0
[1338/2458] Linking target lib/librte_kni.so.21.0
[1339/2458] Linking target lib/librte_pdump.so.21.0
[1340/2458] Linking target lib/librte_ipsec.so.21.0
[1341/2458] Linking target lib/librte_bpf.so.21.0
[1342/2458] Linking target lib/librte_node.so.21.0
[1343/2458] Linking target drivers/librte_common_octeontx2.so.21.0
[1344/2458] Linking target drivers/librte_net_af_packet.so.21.0
[1345/2458] Linking target drivers/librte_net_ark.so.21.0
[1346/2458] Linking target drivers/librte_net_atlantic.so.21.0
[1347/2458] Linking target drivers/librte_net_avp.so.21.0
[1348/2458] Linking target drivers/librte_net_axgbe.so.21.0
[1349/2458] Generating rte_net_e1000.sym_chk with a meson_exe.py custom command
[1350/2458] Linking target drivers/librte_net_cxgbe.so.21.0
[1351/2458] Linking target drivers/librte_net_ena.so.21.0
[1352/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1353/2458] Linking target drivers/librte_net_enetc.so.21.0
[1354/2458] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1355/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1356/2458] Linking target drivers/librte_net_enic.so.21.0
[1357/2458] Generating rte_net_fm10k.sym_chk with a meson_exe.py custom command
[1358/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1359/2458] Linking target drivers/librte_net_failsafe.so.21.0
[1360/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1361/2458] Linking target drivers/librte_net_e1000.so.21.0
[1362/2458] Linking target drivers/librte_net_hinic.so.21.0
[1363/2458] Linking target drivers/librte_net_fm10k.so.21.0
[1364/2458] Generating rte_net_qede_mingw with a custom command
[1365/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1366/2458] Generating rte_net_qede_def with a custom command
[1367/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1368/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1369/2458] Generating rte_net_ring_def with a custom command
[1370/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1371/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1372/2458] Generating rte_net_ring_mingw with a custom command
[1373/2458] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1374/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1375/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1376/2458] Compiling C object drivers/net/iavf/libiavf_avx512_lib.a.p/iavf_rxtx_vec_avx512.c.o
[1377/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1378/2458] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1379/2458] Linking static target drivers/net/iavf/libiavf_avx512_lib.a
[1380/2458] Compiling C object drivers/libtmp_rte_net_igc.a.p/net_igc_igc_txrx.c.o
[1381/2458] Compiling C object drivers/libtmp_rte_net_null.a.p/net_null_rte_eth_null.c.o
[1382/2458] Linking static target drivers/libtmp_rte_net_igc.a
[1383/2458] Linking static target drivers/libtmp_rte_net_null.a
[1384/2458] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hal.c.o
[1385/2458] Generating rte_net_kni.sym_chk with a meson_exe.py custom command
[1386/2458] Generating rte_net_null.pmd.c with a custom command
[1387/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1388/2458] Generating rte_net_igc.pmd.c with a custom command
[1389/2458] Compiling C object drivers/librte_net_null.so.21.0.p/meson-generated_.._rte_net_null.pmd.c.o
[1390/2458] Generating rte_net_bnxt.sym_chk with a meson_exe.py custom command
[1391/2458] Compiling C object drivers/librte_net_null.a.p/meson-generated_.._rte_net_null.pmd.c.o
[1392/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1393/2458] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1394/2458] Compiling C object drivers/librte_net_igc.a.p/meson-generated_.._rte_net_igc.pmd.c.o
[1395/2458] Linking static target drivers/librte_net_null.a
[1396/2458] Compiling C object drivers/libtmp_rte_net_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1397/2458] Compiling C object drivers/librte_net_igc.so.21.0.p/meson-generated_.._rte_net_igc.pmd.c.o
[1398/2458] Compiling C object drivers/libtmp_rte_net_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1399/2458] Linking static target drivers/librte_net_igc.a
[1400/2458] Linking static target drivers/libtmp_rte_net_liquidio.a
[1401/2458] Linking static target drivers/libtmp_rte_net_hns3.a
[1402/2458] Generating rte_net_liquidio.pmd.c with a custom command
[1403/2458] Compiling C object drivers/libtmp_rte_net_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1404/2458] Compiling C object drivers/librte_net_liquidio.a.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1405/2458] Linking static target drivers/libtmp_rte_net_iavf.a
[1406/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1407/2458] Linking static target drivers/librte_net_liquidio.a
[1408/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1409/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1410/2458] Generating rte_net_hns3.pmd.c with a custom command
[1411/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1412/2458] Linking target drivers/librte_net_bnxt.so.21.0
[1413/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1414/2458] Compiling C object drivers/librte_net_liquidio.so.21.0.p/meson-generated_.._rte_net_liquidio.pmd.c.o
[1415/2458] Compiling C object drivers/librte_net_hns3.a.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1416/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_dp.c.o
[1417/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1418/2458] Generating rte_net_iavf.pmd.c with a custom command
[1419/2458] Compiling C object drivers/librte_net_hns3.so.21.0.p/meson-generated_.._rte_net_hns3.pmd.c.o
[1420/2458] Linking static target drivers/librte_net_hns3.a
[1421/2458] Compiling C object drivers/librte_net_iavf.so.21.0.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1422/2458] Generating rte_net_sfc_def with a custom command
[1423/2458] Compiling C object drivers/librte_net_iavf.a.p/meson-generated_.._rte_net_iavf.pmd.c.o
[1424/2458] Generating rte_net_sfc_mingw with a custom command
[1425/2458] Linking static target drivers/librte_net_iavf.a
[1426/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1427/2458] Compiling C object drivers/libtmp_rte_net_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1428/2458] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1429/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1430/2458] Linking static target drivers/libtmp_rte_net_dpaa2.a
[1431/2458] Linking static target drivers/libtmp_rte_net_memif.a
[1432/2458] Generating rte_net_memif.pmd.c with a custom command
[1433/2458] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif.c.o
[1434/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1435/2458] Compiling C object drivers/libtmp_rte_net_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1436/2458] Compiling C object drivers/librte_net_memif.a.p/meson-generated_.._rte_net_memif.pmd.c.o
[1437/2458] Linking static target drivers/libtmp_rte_net_octeontx.a
[1438/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1439/2458] Linking static target drivers/librte_net_memif.a
[1440/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1441/2458] Compiling C object drivers/librte_net_memif.so.21.0.p/meson-generated_.._rte_net_memif.pmd.c.o
[1442/2458] Generating rte_net_dpaa2.pmd.c with a custom command
[1443/2458] Generating rte_net_octeontx.pmd.c with a custom command
[1444/2458] Compiling C object drivers/librte_net_dpaa2.a.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1445/2458] Compiling C object drivers/librte_net_dpaa2.so.21.0.p/meson-generated_.._rte_net_dpaa2.pmd.c.o
[1446/2458] Linking static target drivers/librte_net_dpaa2.a
[1447/2458] Compiling C object drivers/librte_net_octeontx.a.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1448/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1449/2458] Linking static target drivers/librte_net_octeontx.a
[1450/2458] Compiling C object drivers/librte_net_octeontx.so.21.0.p/meson-generated_.._rte_net_octeontx.pmd.c.o
[1451/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_ethdev.c.o
[1452/2458] Generating symbol file lib/librte_gso.so.21.0.p/librte_gso.so.21.0.symbols
[1453/2458] Generating symbol file lib/librte_eventdev.so.21.0.p/librte_eventdev.so.21.0.symbols
[1454/2458] Generating symbol file lib/librte_ip_frag.so.21.0.p/librte_ip_frag.so.21.0.symbols
[1455/2458] Generating symbol file lib/librte_kni.so.21.0.p/librte_kni.so.21.0.symbols
[1456/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1457/2458] Generating symbol file drivers/librte_common_octeontx2.so.21.0.p/librte_common_octeontx2.so.21.0.symbols
[1458/2458] Linking target drivers/librte_bus_fslmc.so.21.0
[1459/2458] Linking target drivers/librte_bus_dpaa.so.21.0
[1460/2458] Linking target lib/librte_port.so.21.0
[1461/2458] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1462/2458] Linking target drivers/librte_net_bond.so.21.0
[1463/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1464/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1465/2458] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1466/2458] Compiling C object drivers/libtmp_rte_net_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1467/2458] Linking static target drivers/libtmp_rte_net_netvsc.a
[1468/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1469/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1470/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_sriov.c.o
[1471/2458] Linking static target drivers/libtmp_rte_net_pfe.a
[1472/2458] Linking target drivers/librte_mempool_octeontx2.so.21.0
[1473/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_filter.c.o
[1474/2458] Linking target drivers/librte_net_kni.so.21.0
[1475/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1476/2458] Generating rte_net_netvsc.pmd.c with a custom command
[1477/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_sriov.c.o
[1478/2458] Generating rte_net_pfe.pmd.c with a custom command
[1479/2458] Compiling C object drivers/librte_net_netvsc.a.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1480/2458] Generating rte_net_softnic_mingw with a custom command
[1481/2458] Generating rte_net_softnic_def with a custom command
[1482/2458] Linking static target drivers/librte_net_netvsc.a
[1483/2458] Compiling C object drivers/librte_net_netvsc.so.21.0.p/meson-generated_.._rte_net_netvsc.pmd.c.o
[1484/2458] Compiling C object drivers/librte_net_pfe.a.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1485/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_regs.c.o
[1486/2458] Linking static target drivers/librte_net_pfe.a
[1487/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1488/2458] Compiling C object drivers/librte_net_pfe.so.21.0.p/meson-generated_.._rte_net_pfe.pmd.c.o
[1489/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_switch.c.o
[1490/2458] Generating rte_net_tap_def with a custom command
[1491/2458] Generating rte_net_tap_mingw with a custom command
[1492/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_intr.c.o
[1493/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_port.c.o
[1494/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tso.c.o
[1495/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_conn.c.o
[1496/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1497/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_main.c.o
[1498/2458] Generating rte_net_thunderx_def with a custom command
[1499/2458] Generating rte_net_thunderx_mingw with a custom command
[1500/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1501/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_netlink.c.o
[1502/2458] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1503/2458] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1504/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1505/2458] Linking static target drivers/libtmp_rte_net_ice.a
[1506/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ev.c.o
[1507/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1508/2458] Generating rte_net_ice.pmd.c with a custom command
[1509/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1510/2458] Generating rte_net_igc.sym_chk with a meson_exe.py custom command
[1511/2458] Generating rte_net_null.sym_chk with a meson_exe.py custom command
[1512/2458] Compiling C object drivers/librte_net_ice.a.p/meson-generated_.._rte_net_ice.pmd.c.o
[1513/2458] Compiling C object drivers/librte_net_ice.so.21.0.p/meson-generated_.._rte_net_ice.pmd.c.o
[1514/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1515/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1516/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_filter.c.o
[1517/2458] Generating rte_net_txgbe_def with a custom command
[1518/2458] Linking target drivers/librte_net_igc.so.21.0
[1519/2458] Generating rte_net_txgbe_mingw with a custom command
[1520/2458] Linking target drivers/librte_net_null.so.21.0
[1521/2458] Generating rte_net_vdev_netvsc_def with a custom command
[1522/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc.c.o
[1523/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mbx.c.o
[1524/2458] Generating rte_net_vdev_netvsc_mingw with a custom command
[1525/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1526/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1527/2458] Generating rte_net_liquidio.sym_chk with a meson_exe.py custom command
[1528/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_eeprom.c.o
[1529/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb_hw.c.o
[1530/2458] Generating rte_net_vhost_def with a custom command
[1531/2458] Generating rte_net_vhost_mingw with a custom command
[1532/2458] Generating rte_net_hns3.sym_chk with a meson_exe.py custom command
[1533/2458] Linking target drivers/librte_net_liquidio.so.21.0
[1534/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_mng.c.o
[1535/2458] Generating rte_net_iavf.sym_chk with a meson_exe.py custom command
[1536/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_parser.c.o
[1537/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1538/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1539/2458] Linking target drivers/librte_net_hns3.so.21.0
[1540/2458] Generating rte_net_virtio_mingw with a custom command
[1541/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1542/2458] Compiling C object drivers/libtmp_rte_net_bnx2x.a.p/net_bnx2x_elink.c.o
[1543/2458] Generating rte_net_virtio_def with a custom command
[1544/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_dcb.c.o
[1545/2458] Linking static target drivers/libtmp_rte_net_bnx2x.a
[1546/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1547/2458] Linking target drivers/librte_net_iavf.so.21.0
[1548/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_mae.c.o
[1549/2458] Generating rte_net_vmxnet3_mingw with a custom command
[1550/2458] Generating rte_net_vmxnet3_def with a custom command
[1551/2458] Generating rte_net_memif.sym_chk with a meson_exe.py custom command
[1552/2458] Generating rte_net_bnx2x.pmd.c with a custom command
[1553/2458] Generating rte_raw_dpaa2_cmdif_def with a custom command
[1554/2458] Generating rte_raw_dpaa2_cmdif_mingw with a custom command
[1555/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_rx.c.o
[1556/2458] Generating rte_raw_dpaa2_qdma_def with a custom command
[1557/2458] Compiling C object drivers/librte_net_bnx2x.a.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1558/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_bpf_api.c.o
[1559/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_intr.c.o
[1560/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1561/2458] Compiling C object drivers/librte_net_bnx2x.so.21.0.p/meson-generated_.._rte_net_bnx2x.pmd.c.o
[1562/2458] Linking static target drivers/librte_net_bnx2x.a
[1563/2458] Generating rte_raw_dpaa2_qdma_mingw with a custom command
[1564/2458] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1565/2458] Linking target drivers/librte_net_memif.so.21.0
[1566/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_tcmsgs.c.o
[1567/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_tx.c.o
[1568/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1569/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1570/2458] Generating rte_raw_ioat_mingw with a custom command
[1571/2458] Generating rte_raw_ioat_def with a custom command
[1572/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1573/2458] Generating rte_raw_ntb_def with a custom command
[1574/2458] Generating rte_raw_ntb_mingw with a custom command
[1575/2458] Generating rte_net_octeontx.sym_chk with a meson_exe.py custom command
[1576/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1577/2458] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfp_net.c.o
[1578/2458] Linking static target drivers/libtmp_rte_net_nfp.a
[1579/2458] Generating rte_raw_octeontx2_dma_def with a custom command
[1580/2458] Generating rte_raw_octeontx2_dma_mingw with a custom command
[1581/2458] Generating rte_net_dpaa2.sym_chk with a meson_exe.py custom command
[1582/2458] Generating symbol file lib/librte_port.so.21.0.p/librte_port.so.21.0.symbols
[1583/2458] Generating symbol file drivers/librte_bus_fslmc.so.21.0.p/librte_bus_fslmc.so.21.0.symbols
[1584/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1585/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1586/2458] Generating symbol file drivers/librte_bus_dpaa.so.21.0.p/librte_bus_dpaa.so.21.0.symbols
[1587/2458] Generating rte_raw_octeontx2_ep_def with a custom command
[1588/2458] Generating rte_raw_octeontx2_ep_mingw with a custom command
[1589/2458] Generating rte_net_nfp.pmd.c with a custom command
[1590/2458] Linking target drivers/librte_net_octeontx.so.21.0
[1591/2458] Generating symbol file drivers/librte_mempool_octeontx2.so.21.0.p/librte_mempool_octeontx2.so.21.0.symbols
[1592/2458] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1593/2458] Compiling C object drivers/librte_net_nfp.a.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1594/2458] Compiling C object drivers/librte_net_nfp.so.21.0.p/meson-generated_.._rte_net_nfp.pmd.c.o
[1595/2458] Generating rte_raw_skeleton_mingw with a custom command
[1596/2458] Linking static target drivers/librte_net_nfp.a
[1597/2458] Linking static target drivers/net/ice/base/libice_base.a
[1598/2458] Linking static target drivers/librte_net_ice.a
[1599/2458] Generating rte_raw_skeleton_def with a custom command
[1600/2458] Linking target drivers/librte_mempool_dpaa2.so.21.0
[1601/2458] Linking target lib/librte_table.so.21.0
[1602/2458] Linking target drivers/librte_mempool_dpaa.so.21.0
[1603/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_rx.c.o
[1604/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_logs.c.o
[1605/2458] Compiling C object drivers/libtmp_rte_raw_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1606/2458] Linking static target drivers/libtmp_rte_raw_dpaa2_cmdif.a
[1607/2458] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ptypes.c.o
[1608/2458] Generating rte_raw_dpaa2_cmdif.pmd.c with a custom command
[1609/2458] Compiling C object drivers/librte_raw_dpaa2_cmdif.a.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1610/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_phy.c.o
[1611/2458] Generating rte_net_netvsc.sym_chk with a meson_exe.py custom command
[1612/2458] Linking static target drivers/librte_raw_dpaa2_cmdif.a
[1613/2458] Generating rte_net_pfe.sym_chk with a meson_exe.py custom command
[1614/2458] Compiling C object drivers/librte_raw_dpaa2_cmdif.so.21.0.p/meson-generated_.._rte_raw_dpaa2_cmdif.pmd.c.o
[1615/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_vfio.c.o
[1616/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1617/2458] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1618/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1619/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs_rm_common.c.o
[1620/2458] Linking target drivers/librte_net_netvsc.so.21.0
[1621/2458] Linking target drivers/librte_net_pfe.so.21.0
[1622/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef100_tx.c.o
[1623/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_flow.c.o
[1624/2458] Generating rte_crypto_bcmfs_mingw with a custom command
[1625/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1626/2458] Generating rte_crypto_bcmfs_def with a custom command
[1627/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1628/2458] Generating rte_crypto_caam_jr_mingw with a custom command
[1629/2458] Generating rte_crypto_caam_jr_def with a custom command
[1630/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1631/2458] Generating rte_crypto_dpaa_sec_def with a custom command
[1632/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_qp.c.o
[1633/2458] Generating rte_crypto_dpaa_sec_mingw with a custom command
[1634/2458] Generating rte_crypto_dpaa2_sec_def with a custom command
[1635/2458] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1636/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1637/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1638/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_ethdev.c.o
[1639/2458] Generating rte_crypto_dpaa2_sec_mingw with a custom command
[1640/2458] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1641/2458] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1642/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1643/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1644/2458] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1645/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1646/2458] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1647/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs5_rm.c.o
[1648/2458] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_common.c.o
[1649/2458] Generating rte_crypto_nitrox_def with a custom command
[1650/2458] Generating rte_crypto_nitrox_mingw with a custom command
[1651/2458] Generating rte_crypto_null_def with a custom command
[1652/2458] Generating rte_crypto_null_mingw with a custom command
[1653/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_hw_bcmfs4_rm.c.o
[1654/2458] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_idxd_pci.c.o
[1655/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1656/2458] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_pf.c.o
[1657/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1658/2458] Generating rte_crypto_octeontx_def with a custom command
[1659/2458] Generating rte_crypto_octeontx_mingw with a custom command
[1660/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_pci.c.o
[1661/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1662/2458] Generating rte_crypto_octeontx2_def with a custom command
[1663/2458] Generating rte_crypto_octeontx2_mingw with a custom command
[1664/2458] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1665/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_tap_flow.c.o
[1666/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1667/2458] Compiling C object drivers/libtmp_rte_net_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1668/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1669/2458] Compiling C object drivers/libtmp_rte_net_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1670/2458] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1671/2458] Linking static target drivers/libtmp_rte_net_vdev_netvsc.a
[1672/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1673/2458] Linking static target drivers/libtmp_rte_net_pcap.a
[1674/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym.c.o
[1675/2458] Generating rte_net_vdev_netvsc.pmd.c with a custom command
[1676/2458] Generating rte_net_pcap.pmd.c with a custom command
[1677/2458] Compiling C object drivers/libtmp_rte_net_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1678/2458] Compiling C object drivers/librte_net_vdev_netvsc.a.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1679/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_device.c.o
[1680/2458] Generating rte_compress_octeontx_def with a custom command
[1681/2458] Compiling C object drivers/libtmp_rte_net_ring.a.p/net_ring_rte_eth_ring.c.o
[1682/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtqueue.c.o
[1683/2458] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1684/2458] Generating rte_compress_octeontx_mingw with a custom command
[1685/2458] Linking static target drivers/librte_net_vdev_netvsc.a
[1686/2458] Generating rte_compress_zlib_mingw with a custom command
[1687/2458] Linking static target drivers/libtmp_rte_net_sfc.a
[1688/2458] Linking static target drivers/libtmp_rte_net_ring.a
[1689/2458] Compiling C object drivers/librte_net_pcap.a.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1690/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1691/2458] Compiling C object drivers/librte_net_pcap.so.21.0.p/meson-generated_.._rte_net_pcap.pmd.c.o
[1692/2458] Linking static target drivers/librte_net_pcap.a
[1693/2458] Generating rte_net_ring.pmd.c with a custom command
[1694/2458] Compiling C object drivers/librte_net_vdev_netvsc.so.21.0.p/meson-generated_.._rte_net_vdev_netvsc.pmd.c.o
[1695/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1696/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1697/2458] Generating rte_net_bnx2x.sym_chk with a meson_exe.py custom command
[1698/2458] Compiling C object drivers/librte_net_ring.so.21.0.p/meson-generated_.._rte_net_ring.pmd.c.o
[1699/2458] Compiling C object drivers/librte_net_ring.a.p/meson-generated_.._rte_net_ring.pmd.c.o
[1700/2458] Generating rte_compress_zlib_def with a custom command
[1701/2458] Linking static target drivers/librte_net_ring.a
[1702/2458] Compiling C object drivers/libtmp_rte_raw_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1703/2458] Linking static target drivers/libtmp_rte_raw_skeleton.a
[1704/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_capabilities.c.o
[1705/2458] Generating rte_regex_octeontx2_def with a custom command
[1706/2458] Generating rte_regex_octeontx2_mingw with a custom command
[1707/2458] Generating rte_net_sfc.pmd.c with a custom command
[1708/2458] Generating rte_raw_skeleton.pmd.c with a custom command
[1709/2458] Compiling C object drivers/librte_net_sfc.so.21.0.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1710/2458] Compiling C object drivers/librte_net_sfc.a.p/meson-generated_.._rte_net_sfc.pmd.c.o
[1711/2458] Linking target drivers/librte_net_bnx2x.so.21.0
[1712/2458] Generating rte_vdpa_ifc_mingw with a custom command
[1713/2458] Generating rte_vdpa_ifc_def with a custom command
[1714/2458] Linking static target drivers/librte_net_sfc.a
[1715/2458] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1716/2458] Generating symbol file lib/librte_table.so.21.0.p/librte_table.so.21.0.symbols
[1717/2458] Generating symbol file drivers/librte_mempool_dpaa2.so.21.0.p/librte_mempool_dpaa2.so.21.0.symbols
[1718/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1719/2458] Compiling C object drivers/librte_raw_skeleton.so.21.0.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1720/2458] Compiling C object drivers/librte_raw_skeleton.a.p/meson-generated_.._rte_raw_skeleton.pmd.c.o
[1721/2458] Linking static target drivers/librte_raw_skeleton.a
[1722/2458] Generating symbol file drivers/librte_net_octeontx.so.21.0.p/librte_net_octeontx.so.21.0.symbols
[1723/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1724/2458] Generating symbol file drivers/librte_mempool_dpaa.so.21.0.p/librte_mempool_dpaa.so.21.0.symbols
[1725/2458] Generating rte_net_nfp.sym_chk with a meson_exe.py custom command
[1726/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1727/2458] Linking static target drivers/libtmp_rte_raw_octeontx2_ep.a
[1728/2458] Linking target drivers/librte_net_dpaa2.so.21.0
[1729/2458] Linking target lib/librte_flow_classify.so.21.0
[1730/2458] Generating rte_raw_octeontx2_ep.pmd.c with a custom command
[1731/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[1732/2458] Linking target drivers/librte_net_nfp.so.21.0
[1733/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_session.c.o
[1734/2458] Linking target drivers/librte_net_dpaa.so.21.0
[1735/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1736/2458] Compiling C object drivers/librte_raw_octeontx2_ep.a.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1737/2458] Compiling C object drivers/librte_raw_octeontx2_ep.so.21.0.p/meson-generated_.._rte_raw_octeontx2_ep.pmd.c.o
[1738/2458] Generating rte_event_dlb_def with a custom command
[1739/2458] Generating rte_net_ice.sym_chk with a meson_exe.py custom command
[1740/2458] Linking static target drivers/librte_raw_octeontx2_ep.a
[1741/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1742/2458] Generating rte_event_dlb_mingw with a custom command
[1743/2458] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1744/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1745/2458] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1746/2458] Compiling C object drivers/net/txgbe/base/libtxgbe_base.a.p/txgbe_hw.c.o
[1747/2458] Linking static target drivers/net/txgbe/base/libtxgbe_base.a
[1748/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[1749/2458] Linking target drivers/librte_net_ice.so.21.0
[1750/2458] Generating rte_event_dlb2_def with a custom command
[1751/2458] Generating rte_raw_dpaa2_cmdif.sym_chk with a meson_exe.py custom command
[1752/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_pmd.c.o
[1753/2458] Compiling C object drivers/libtmp_rte_raw_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1754/2458] Compiling C object drivers/libtmp_rte_crypto_bcmfs.a.p/crypto_bcmfs_bcmfs_sym_engine.c.o
[1755/2458] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1756/2458] Generating rte_event_dlb2_mingw with a custom command
[1757/2458] Generating rte_event_dpaa_def with a custom command
[1758/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_iface.c.o
[1759/2458] Linking static target drivers/libtmp_rte_raw_octeontx2_dma.a
[1760/2458] Linking static target drivers/libtmp_rte_crypto_bcmfs.a
[1761/2458] Generating rte_event_dpaa_mingw with a custom command
[1762/2458] Generating rte_raw_octeontx2_dma.pmd.c with a custom command
[1763/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1764/2458] Generating rte_event_dpaa2_mingw with a custom command
[1765/2458] Generating rte_event_dpaa2_def with a custom command
[1766/2458] Linking target drivers/librte_raw_dpaa2_cmdif.so.21.0
[1767/2458] Compiling C object drivers/librte_raw_octeontx2_dma.a.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1768/2458] Compiling C object drivers/libtmp_rte_net_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1769/2458] Linking static target drivers/librte_raw_octeontx2_dma.a
[1770/2458] Generating rte_crypto_bcmfs.pmd.c with a custom command
[1771/2458] Linking static target drivers/libtmp_rte_net_vhost.a
[1772/2458] Compiling C object drivers/librte_raw_octeontx2_dma.so.21.0.p/meson-generated_.._rte_raw_octeontx2_dma.pmd.c.o
[1773/2458] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1774/2458] Generating rte_net_vhost.pmd.c with a custom command
[1775/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[1776/2458] Compiling C object drivers/librte_crypto_bcmfs.a.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1777/2458] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1778/2458] Compiling C object drivers/librte_crypto_bcmfs.so.21.0.p/meson-generated_.._rte_crypto_bcmfs.pmd.c.o
[1779/2458] Compiling C object drivers/librte_net_vhost.so.21.0.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1780/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1781/2458] Linking static target drivers/librte_crypto_bcmfs.a
[1782/2458] Compiling C object drivers/librte_net_vhost.a.p/meson-generated_.._rte_net_vhost.pmd.c.o
[1783/2458] Linking static target drivers/librte_net_vhost.a
[1784/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1785/2458] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed_avx.c.o
[1786/2458] Compiling C object drivers/libtmp_rte_raw_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1787/2458] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1788/2458] Linking static target drivers/libtmp_rte_raw_ioat.a
[1789/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1790/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1791/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[1792/2458] Generating rte_event_octeontx2_mingw with a custom command
[1793/2458] Generating rte_raw_ioat.pmd.c with a custom command
[1794/2458] Generating rte_event_octeontx2_def with a custom command
[1795/2458] Compiling C object drivers/librte_raw_ioat.a.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1796/2458] Compiling C object drivers/librte_raw_ioat.so.21.0.p/meson-generated_.._rte_raw_ioat.pmd.c.o
[1797/2458] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1798/2458] Linking static target drivers/librte_raw_ioat.a
[1799/2458] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1800/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_main.c.o
[1801/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_iface.c.o
[1802/2458] Generating rte_event_opdl_def with a custom command
[1803/2458] Compiling C object drivers/libtmp_rte_crypto_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[1804/2458] Generating rte_event_opdl_mingw with a custom command
[1805/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1806/2458] Linking static target drivers/libtmp_rte_crypto_nitrox.a
[1807/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1808/2458] Generating rte_event_skeleton_def with a custom command
[1809/2458] Generating rte_event_skeleton_mingw with a custom command
[1810/2458] Generating rte_crypto_nitrox.pmd.c with a custom command
[1811/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_rte_pmd_dlb.c.o
[1812/2458] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[1813/2458] Compiling C object drivers/librte_crypto_nitrox.a.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1814/2458] Compiling C object drivers/librte_crypto_nitrox.so.21.0.p/meson-generated_.._rte_crypto_nitrox.pmd.c.o
[1815/2458] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1816/2458] Linking static target drivers/librte_crypto_nitrox.a
[1817/2458] Linking static target drivers/libtmp_rte_net_ixgbe.a
[1818/2458] Compiling C object drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1819/2458] Linking static target drivers/libtmp_rte_net_i40e.a
[1820/2458] Generating rte_event_sw_def with a custom command
[1821/2458] Generating rte_event_sw_mingw with a custom command
[1822/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1823/2458] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1824/2458] Generating rte_net_ixgbe.pmd.c with a custom command
[1825/2458] Generating rte_net_i40e.pmd.c with a custom command
[1826/2458] Compiling C object drivers/librte_net_ixgbe.a.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1827/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_main.c.o
[1828/2458] Generating rte_event_dsw_def with a custom command
[1829/2458] Compiling C object drivers/librte_net_i40e.so.21.0.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1830/2458] Compiling C object drivers/librte_net_ixgbe.so.21.0.p/meson-generated_.._rte_net_ixgbe.pmd.c.o
[1831/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1832/2458] Generating rte_net_vdev_netvsc.sym_chk with a meson_exe.py custom command
[1833/2458] Compiling C object drivers/librte_net_i40e.a.p/meson-generated_.._rte_net_i40e.pmd.c.o
[1834/2458] Linking static target drivers/librte_net_ixgbe.a
[1835/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_xstats.c.o
[1836/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1837/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_rte_pmd_dlb2.c.o
[1838/2458] Linking static target drivers/librte_net_i40e.a
[1839/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_rxtx.c.o
[1840/2458] Generating rte_net_pcap.sym_chk with a meson_exe.py custom command
[1841/2458] Generating rte_event_dsw_mingw with a custom command
[1842/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1843/2458] Linking target drivers/librte_net_vdev_netvsc.so.21.0
[1844/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_dlb_pf.c.o
[1845/2458] Linking target drivers/librte_net_pcap.so.21.0
[1846/2458] Generating rte_event_octeontx_mingw with a custom command
[1847/2458] Generating rte_net_ring.sym_chk with a meson_exe.py custom command
[1848/2458] Generating rte_event_octeontx_def with a custom command
[1849/2458] Compiling C object drivers/libtmp_rte_regex_octeontx2.a.p/regex_octeontx2_otx2_regexdev.c.o
[1850/2458] Linking static target drivers/libtmp_rte_regex_octeontx2.a
[1851/2458] Generating rte_baseband_null_def with a custom command
[1852/2458] Generating rte_net_sfc.sym_chk with a meson_exe.py custom command
[1853/2458] Generating symbol file drivers/librte_net_dpaa2.so.21.0.p/librte_net_dpaa2.so.21.0.symbols
[1854/2458] Generating rte_baseband_null_mingw with a custom command
[1855/2458] Generating rte_regex_octeontx2.pmd.c with a custom command
[1856/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1857/2458] Linking target drivers/librte_net_ring.so.21.0
[1858/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_dlb2_pf.c.o
[1859/2458] Generating rte_raw_skeleton.sym_chk with a meson_exe.py custom command
[1860/2458] Generating rte_baseband_turbo_sw_def with a custom command
[1861/2458] Compiling C object drivers/librte_regex_octeontx2.a.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1862/2458] Compiling C object drivers/librte_regex_octeontx2.so.21.0.p/meson-generated_.._rte_regex_octeontx2.pmd.c.o
[1863/2458] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1864/2458] Generating rte_baseband_turbo_sw_mingw with a custom command
[1865/2458] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_ethdev.c.o
[1866/2458] Linking static target drivers/librte_regex_octeontx2.a
[1867/2458] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1868/2458] Generating rte_baseband_fpga_lte_fec_def with a custom command
[1869/2458] Linking target drivers/librte_net_sfc.so.21.0
[1870/2458] Linking static target drivers/net/qede/base/libqede_base.a
[1871/2458] Generating rte_baseband_fpga_lte_fec_mingw with a custom command
[1872/2458] Linking target drivers/librte_raw_skeleton.so.21.0
[1873/2458] Generating rte_baseband_fpga_5gnr_fec_def with a custom command
[1874/2458] Generating rte_baseband_fpga_5gnr_fec_mingw with a custom command
[1875/2458] Generating rte_baseband_acc100_def with a custom command
[1876/2458] Generating symbol file drivers/librte_net_dpaa.so.21.0.p/librte_net_dpaa.so.21.0.symbols
[1877/2458] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_xstats.c.o
[1878/2458] Generating rte_baseband_acc100_mingw with a custom command
[1879/2458] Generating rte_raw_octeontx2_ep.sym_chk with a meson_exe.py custom command
[1880/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_xstats.c.o
[1881/2458] Linking target drivers/librte_raw_octeontx2_ep.so.21.0
[1882/2458] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_xstats.c.o
[1883/2458] Compiling C object drivers/libtmp_rte_raw_ntb.a.p/raw_ntb_ntb.c.o
[1884/2458] Linking static target drivers/libtmp_rte_raw_ntb.a
[1885/2458] Generating rte_raw_ntb.pmd.c with a custom command
[1886/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_crypto_adptr.c.o
[1887/2458] Compiling C object drivers/librte_raw_ntb.a.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1888/2458] Linking static target drivers/librte_raw_ntb.a
[1889/2458] Compiling C object drivers/libtmp_rte_vdpa_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1890/2458] Compiling C object drivers/librte_raw_ntb.so.21.0.p/meson-generated_.._rte_raw_ntb.pmd.c.o
[1891/2458] Linking static target drivers/libtmp_rte_vdpa_ifc.a
[1892/2458] Generating rte_vdpa_ifc.pmd.c with a custom command
[1893/2458] Compiling C object drivers/libtmp_rte_net_tap.a.p/net_tap_rte_eth_tap.c.o
[1894/2458] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev.c.o
[1895/2458] Generating rte_raw_octeontx2_dma.sym_chk with a meson_exe.py custom command
[1896/2458] Linking static target drivers/libtmp_rte_net_tap.a
[1897/2458] Compiling C object drivers/librte_vdpa_ifc.a.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[1898/2458] Compiling C object drivers/librte_vdpa_ifc.so.21.0.p/meson-generated_.._rte_vdpa_ifc.pmd.c.o
[1899/2458] Linking static target drivers/librte_vdpa_ifc.a
[1900/2458] Generating rte_net_tap.pmd.c with a custom command
[1901/2458] Compiling C object drivers/libtmp_rte_event_skeleton.a.p/event_skeleton_skeleton_eventdev.c.o
[1902/2458] Compiling C object drivers/librte_net_tap.a.p/meson-generated_.._rte_net_tap.pmd.c.o
[1903/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_irq.c.o
[1904/2458] Linking target drivers/librte_raw_octeontx2_dma.so.21.0
[1905/2458] Generating rte_crypto_bcmfs.sym_chk with a meson_exe.py custom command
[1906/2458] Linking static target drivers/libtmp_rte_event_skeleton.a
[1907/2458] Linking static target drivers/librte_net_tap.a
[1908/2458] Compiling C object drivers/librte_net_tap.so.21.0.p/meson-generated_.._rte_net_tap.pmd.c.o
[1909/2458] Generating rte_event_skeleton.pmd.c with a custom command
[1910/2458] Generating rte_net_vhost.sym_chk with a meson_exe.py custom command
[1911/2458] Compiling C object drivers/librte_event_skeleton.a.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[1912/2458] Linking static target drivers/librte_event_skeleton.a
[1913/2458] Linking target drivers/librte_crypto_bcmfs.so.21.0
[1914/2458] Compiling C object drivers/librte_event_skeleton.so.21.0.p/meson-generated_.._rte_event_skeleton.pmd.c.o
[1915/2458] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[1916/2458] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[1917/2458] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_evdev_init.c.o
[1918/2458] Compiling C object drivers/libtmp_rte_compress_zlib.a.p/compress_zlib_zlib_pmd.c.o
[1919/2458] Generating rte_raw_ioat.sym_chk with a meson_exe.py custom command
[1920/2458] Compiling C object drivers/libtmp_rte_event_dpaa.a.p/event_dpaa_dpaa_eventdev.c.o
[1921/2458] Linking static target drivers/libtmp_rte_compress_zlib.a
[1922/2458] Compiling C object drivers/libtmp_rte_crypto_null.a.p/crypto_null_null_crypto_pmd.c.o
[1923/2458] Linking static target drivers/libtmp_rte_event_dpaa.a
[1924/2458] Generating rte_compress_zlib.pmd.c with a custom command
[1925/2458] Linking static target drivers/libtmp_rte_crypto_null.a
[1926/2458] Generating rte_event_dpaa.pmd.c with a custom command
[1927/2458] Generating rte_crypto_null.pmd.c with a custom command
[1928/2458] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev.c.o
[1929/2458] Linking target drivers/librte_raw_ioat.so.21.0
[1930/2458] Compiling C object drivers/libtmp_rte_net_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1931/2458] Compiling C object drivers/librte_compress_zlib.a.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1932/2458] Compiling C object drivers/librte_compress_zlib.so.21.0.p/meson-generated_.._rte_compress_zlib.pmd.c.o
[1933/2458] Compiling C object drivers/librte_crypto_null.so.21.0.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1934/2458] Linking static target drivers/libtmp_rte_net_thunderx.a
[1935/2458] Linking static target drivers/librte_compress_zlib.a
[1936/2458] Compiling C object drivers/librte_crypto_null.a.p/meson-generated_.._rte_crypto_null.pmd.c.o
[1937/2458] Generating rte_crypto_nitrox.sym_chk with a meson_exe.py custom command
[1938/2458] Compiling C object drivers/librte_event_dpaa.a.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[1939/2458] Generating rte_net_thunderx.pmd.c with a custom command
[1940/2458] Linking static target drivers/librte_crypto_null.a
[1941/2458] Compiling C object drivers/librte_event_dpaa.so.21.0.p/meson-generated_.._rte_event_dpaa.pmd.c.o
[1942/2458] Linking static target drivers/librte_event_dpaa.a
[1943/2458] Compiling C object drivers/librte_net_thunderx.a.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1944/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb_selftest.c.o
[1945/2458] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_xstats.c.o
[1946/2458] Linking static target drivers/librte_net_thunderx.a
[1947/2458] Compiling C object drivers/librte_net_thunderx.so.21.0.p/meson-generated_.._rte_net_thunderx.pmd.c.o
[1948/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_probe.c.o
[1949/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_probe.c.o
[1950/2458] Linking target drivers/librte_crypto_nitrox.so.21.0
[1951/2458] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[1952/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_evdev.c.o
[1953/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[1954/2458] Compiling C object drivers/libtmp_rte_compress_octeontx.a.p/compress_octeontx_otx_zip_pmd.c.o
[1955/2458] Linking static target drivers/libtmp_rte_compress_octeontx.a
[1956/2458] Compiling C object drivers/libtmp_rte_raw_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1957/2458] Linking static target drivers/libtmp_rte_raw_dpaa2_qdma.a
[1958/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_worker.c.o
[1959/2458] Generating rte_compress_octeontx.pmd.c with a custom command
[1960/2458] Generating rte_raw_dpaa2_qdma.pmd.c with a custom command
[1961/2458] Compiling C object drivers/librte_compress_octeontx.a.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[1962/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_timvf_evdev.c.o
[1963/2458] Compiling C object drivers/librte_raw_dpaa2_qdma.a.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1964/2458] Compiling C object drivers/libtmp_rte_net_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1965/2458] Linking static target drivers/librte_compress_octeontx.a
[1966/2458] Linking static target drivers/librte_raw_dpaa2_qdma.a
[1967/2458] Compiling C object drivers/libtmp_rte_event_dpaa2.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[1968/2458] Linking static target drivers/libtmp_rte_net_vmxnet3.a
[1969/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[1970/2458] Linking static target drivers/libtmp_rte_event_dpaa2.a
[1971/2458] Compiling C object drivers/librte_raw_dpaa2_qdma.so.21.0.p/meson-generated_.._rte_raw_dpaa2_qdma.pmd.c.o
[1972/2458] Generating rte_net_vmxnet3.pmd.c with a custom command
[1973/2458] Compiling C object drivers/librte_compress_octeontx.so.21.0.p/meson-generated_.._rte_compress_octeontx.pmd.c.o
[1974/2458] Generating rte_event_dpaa2.pmd.c with a custom command
[1975/2458] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_evdev.c.o
[1976/2458] Compiling C object drivers/librte_net_vmxnet3.a.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1977/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2_selftest.c.o
[1978/2458] Compiling C object drivers/librte_net_vmxnet3.so.21.0.p/meson-generated_.._rte_net_vmxnet3.pmd.c.o
[1979/2458] Linking static target drivers/librte_net_vmxnet3.a
[1980/2458] Compiling C object drivers/librte_event_dpaa2.a.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[1981/2458] Compiling C object drivers/librte_event_dpaa2.so.21.0.p/meson-generated_.._rte_event_dpaa2.pmd.c.o
[1982/2458] Linking static target drivers/librte_event_dpaa2.a
[1983/2458] Generating rte_net_i40e.sym_chk with a meson_exe.py custom command
[1984/2458] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_test.c.o
[1985/2458] Generating rte_net_ixgbe.sym_chk with a meson_exe.py custom command
[1986/2458] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev.c.o
[1987/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev.c.o
[1988/2458] Generating rte_regex_octeontx2.sym_chk with a meson_exe.py custom command
[1989/2458] Compiling C object drivers/libtmp_rte_net_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1990/2458] Linking static target drivers/libtmp_rte_net_softnic.a
[1991/2458] Linking target drivers/librte_net_i40e.so.21.0
FAILED: drivers/librte_net_i40e.so.21.0 
gcc  -o drivers/librte_net_i40e.so.21.0 drivers/librte_net_i40e.so.21.0.p/meson-generated_.._rte_net_i40e.pmd.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_pf.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_fdir.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_flow.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_tm.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_vf_representor.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_rte_pmd_i40e.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o -Wl,--as-needed -Wl,--no-undefined -Wl,-O1 -shared -fPIC -Wl,--start-group -Wl,-soname,librte_net_i40e.so.21 -Wl,--no-as-needed -pthread -lm -ldl -lnuma lib/librte_ethdev.so.21.0 lib/librte_eal.so.21.0 lib/librte_kvargs.so.21.0 lib/librte_telemetry.so.21.0 lib/librte_net.so.21.0 lib/librte_mbuf.so.21.0 lib/librte_mempool.so.21.0 lib/librte_ring.so.21.0 lib/librte_meter.so.21.0 drivers/librte_bus_pci.so.21.0 lib/librte_pci.so.21.0 drivers/librte_bus_vdev.so.21.0 lib/librte_hash.so.21.0 lib/librte_rcu.so.21.0 -Wl,--end-group -Wl,--version-script=/root/dpdk/drivers/net/i40e/version.map '-Wl,-rpath,$ORIGIN/../lib:$ORIGIN/' -Wl,-rpath-link,/root/dpdk/x86_64-native-linuxapp-gcc/lib -Wl,-rpath-link,/root/dpdk/x86_64-native-linuxapp-gcc/drivers
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_recv_pkts_vec':
i40e_rxtx_vec_sse.c:(.text+0x17c0): multiple definition of `i40e_recv_pkts_vec'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x0): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_recv_scattered_pkts_vec':
i40e_rxtx_vec_sse.c:(.text+0x2150): multiple definition of `i40e_recv_scattered_pkts_vec'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x50): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_xmit_fixed_burst_vec':
i40e_rxtx_vec_sse.c:(.text+0x21d0): multiple definition of `i40e_xmit_fixed_burst_vec'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0xb4e0): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_rx_queue_release_mbufs_vec':
i40e_rxtx_vec_sse.c:(.text.unlikely+0x0): multiple definition of `i40e_rx_queue_release_mbufs_vec'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x9790): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_rxq_vec_setup':
i40e_rxtx_vec_sse.c:(.text.unlikely+0x3c4): multiple definition of `i40e_rxq_vec_setup'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x8ea0): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_txq_vec_setup':
i40e_rxtx_vec_sse.c:(.text.unlikely+0x433): multiple definition of `i40e_txq_vec_setup'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x8eb0): first defined here
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o: In function `i40e_rx_vec_dev_conf_condition_check':
i40e_rxtx_vec_sse.c:(.text.unlikely+0x436): multiple definition of `i40e_rx_vec_dev_conf_condition_check'
drivers/libtmp_rte_net_i40e.a.p/net_i40e_i40e_rxtx.c.o:i40e_rxtx.c:(.text+0x8e90): first defined here
collect2: error: ld returned 1 exit status
[1992/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[1993/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[1994/2458] Linking target drivers/librte_regex_octeontx2.so.21.0
[1995/2458] Generating rte_net_softnic.pmd.c with a custom command
[1996/2458] Linking target drivers/librte_net_ixgbe.so.21.0
[1997/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[1998/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[1999/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2000/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2001/2458] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[2002/2458] Compiling C object drivers/libtmp_rte_net_qede.a.p/net_qede_qede_debug.c.o
[2003/2458] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[2004/2458] Generating rte_raw_ntb.sym_chk with a meson_exe.py custom command
[2005/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2006/2458] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_worker.c.o
[2007/2458] Generating rte_vdpa_ifc.sym_chk with a meson_exe.py custom command
[2008/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2009/2458] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2010/2458] Generating rte_net_tap.sym_chk with a meson_exe.py custom command
[2011/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2012/2458] Generating rte_event_skeleton.sym_chk with a meson_exe.py custom command
[2013/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2014/2458] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2015/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2016/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2017/2458] Compiling C object drivers/libtmp_rte_baseband_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2018/2458] Compiling C object drivers/libtmp_rte_baseband_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2019/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2020/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2021/2458] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2022/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2023/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2024/2458] Generating rte_net_vmxnet3.sym_chk with a meson_exe.py custom command
[2025/2458] Generating rte_compress_zlib.sym_chk with a meson_exe.py custom command
[2026/2458] Generating rte_crypto_null.sym_chk with a meson_exe.py custom command
[2027/2458] Generating rte_event_dpaa.sym_chk with a meson_exe.py custom command
[2028/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2029/2458] Generating rte_net_thunderx.sym_chk with a meson_exe.py custom command
[2030/2458] Generating rte_compress_octeontx.sym_chk with a meson_exe.py custom command
[2031/2458] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[2032/2458] Generating rte_raw_dpaa2_qdma.sym_chk with a meson_exe.py custom command
[2033/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2034/2458] Generating rte_event_dpaa2.sym_chk with a meson_exe.py custom command
[2035/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2036/2458] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2037/2458] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2038/2458] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2039/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2040/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2041/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2042/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2043/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2044/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2045/2458] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2046/2458] Compiling C object drivers/libtmp_rte_net_txgbe.a.p/net_txgbe_txgbe_rxtx.c.o
[2047/2458] Compiling C object drivers/libtmp_rte_event_opdl.a.p/event_opdl_opdl_ring.c.o
[2048/2458] Compiling C object drivers/libtmp_rte_crypto_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2049/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_tim_worker.c.o
[2050/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2051/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_dlb2.c.o
[2052/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2053/2458] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_scheduler.c.o
[2054/2458] Compiling C object drivers/libtmp_rte_baseband_null.a.p/baseband_null_bbdev_null.c.o
[2055/2458] Compiling C object drivers/libtmp_rte_net_virtio.a.p/net_virtio_virtio_rxtx.c.o
[2056/2458] Compiling C object drivers/libtmp_rte_event_dlb2.a.p/event_dlb2_pf_base_dlb2_resource.c.o
[2057/2458] Compiling C object drivers/libtmp_rte_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2058/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_dlb.c.o
[2059/2458] Compiling C object drivers/libtmp_rte_event_octeontx.a.p/event_octeontx_ssovf_worker.c.o
[2060/2458] Compiling C object drivers/libtmp_rte_event_dsw.a.p/event_dsw_dsw_event.c.o
[2061/2458] Compiling C object drivers/libtmp_rte_event_sw.a.p/event_sw_sw_evdev_selftest.c.o
[2062/2458] Compiling C object drivers/libtmp_rte_event_dlb.a.p/event_dlb_pf_base_dlb_resource.c.o
[2063/2458] Compiling C object drivers/libtmp_rte_baseband_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2064/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_evdev.c.o
[2065/2458] Compiling C object drivers/libtmp_rte_crypto_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2066/2458] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2067/2458] Compiling C object drivers/libtmp_rte_baseband_acc100.a.p/baseband_acc100_rte_acc100_pmd.c.o
[2068/2458] Compiling C object drivers/libtmp_rte_crypto_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2069/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx2.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2070/2458] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2071/2458] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2072/2458] Compiling C object drivers/libtmp_rte_crypto_octeontx.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2073/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2074/2458] Compiling C object drivers/libtmp_rte_net_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2075/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker.c.o
[2076/2458] Compiling C object drivers/libtmp_rte_event_octeontx2.a.p/event_octeontx2_otx2_worker_dual.c.o
ninja: build stopped: subcommand failed.
13/11/2020 17:56:37                TestFlexibleRxd: Test Case test_dpdk_test Result ERROR: Traceback (most recent call last):
  File "/home/zhaohy/dts_origi/framework/test_case.py", line 319, in _execute_test_case
    case_obj()
  File "tests/TestSuite_flexible_rxd.py", line 68, in test_dpdk_test
    self.prepare_test_pmd()
  File "tests/TestSuite_flexible_rxd.py", line 84, in prepare_test_pmd
    self.dut.build_install_dpdk(self.dut.target)
  File "/home/zhaohy/dts_origi/framework/project_dpdk.py", line 278, in build_install_dpdk
    build_install_dpdk(target, extra_options)
  File "/home/zhaohy/dts_origi/framework/project_dpdk.py", line 317, in build_install_dpdk_linux_meson
    assert ("FAILED" not in out), "ninja complie failed ..."
AssertionError: ninja complie failed ...

13/11/2020 17:56:37              dut.10.240.183.72: kill_all: called by dut and has no prefix list.
13/11/2020 17:56:40                            dts: 
TEST SUITE ENDED: TestFlexibleRxd

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

* Re: [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed
  2020-11-13 10:06 [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Haiyang Zhao
                   ` (2 preceding siblings ...)
  2020-11-13 10:18 ` [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Zhao, HaiyangX
@ 2020-11-18  3:26 ` Tu, Lijuan
  3 siblings, 0 replies; 5+ messages in thread
From: Tu, Lijuan @ 2020-11-18  3:26 UTC (permalink / raw)
  To: Zhao, HaiyangX, dts; +Cc: Zhao, HaiyangX

> 
> when compiling failed by meson, the error msg exceed the maximum length
> of xlwt cell, so save result will be failed and DTS will be terminated, drop the
> compile error msg and truncate msg length in excel cell to fix it.
> 
> Haiyang Zhao (2):
>   framework/project_dpdk: drop the detailed errors when complie failed
>   framework/excel_reporter: fix issue of msg exceed xlwt maximum cell
>     length

Applied


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

end of thread, other threads:[~2020-11-18  3:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13 10:06 [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Haiyang Zhao
2020-11-13 10:06 ` [dts] [PATCH V1 1/2] framework/project_dpdk: drop the detailed errors when complie failed Haiyang Zhao
2020-11-13 10:06 ` [dts] [PATCH V1 2/2] framework/excel_reporter: fix issue of msg exceed xlwt maximum cell length Haiyang Zhao
2020-11-13 10:18 ` [dts] [PATCH V1 0/2] framework: fix error msg too long cause saving result failed Zhao, HaiyangX
2020-11-18  3: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).