From 6765af555a320030ce55903277d64615e8fcb794 Mon Sep 17 00:00:00 2001 From: Georgy Kirichenko Date: Thu, 18 Apr 2024 22:28:57 +0300 Subject: [PATCH] Do not build unused DPDK libraries Relates #169 --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index a9428d85..17dceae1 100644 --- a/meson.build +++ b/meson.build @@ -23,6 +23,7 @@ libdpdk = subproject('dpdk', default_options: [ 'platform=generic', 'cpu_instruction_set=corei7', 'disable_apps=dumpcap,graph,pdump,proc-info,test-acl,test-bbdev,test-cmdline,test-compress-perf,test-crypto-perf,test-dma-perf,test-eventdev,test-fib,test-flow-perf,test-gpudev,test-mldev,test-pipeline,test-pmd,test-regex,test-sad,test-security-perf', + 'disable_libs=bitratestats,cfgfile,flow_classify,gpudev,gro,gso,kni,jobstats,latencystats,metrics,node,pdump,pipeline,port,power,table,vhost', 'enable_driver_sdk=true', 'disable_drivers=net/mlx4', 'default_library=static', 'tests=false' ] )