On Fri, Feb 11, 2022 at 10:31:38AM +0000, Bruce Richardson wrote: > On Thu, Feb 10, 2022 at 10:58:37PM +0100, Thomas Monjalon wrote: > > 10/02/2022 16:42, Bruce Richardson: > > > +executable('chkincs-cpp', cpp_sources, + cpp_args: ['-include', > > > 'rte_config.h', cflags], + link_args: dpdk_extra_ldflags, + > > > include_directories: includes, + dependencies: deps, + > > > link_whole: dpdk_static_libraries + dpdk_drivers, + install: > > > false) > > > > devtools/test-meson-builds.sh is failing on build-x86-generic at link > > stage: /usr/bin/ld: cannot find -lIPSec_MB That's probably because there > > is no pkg-config file for this lib, and it is not installed in a standard > > directory, so my setup is adding -L in LDFLAGS. > > > The test-meson-build.sh script works fine for me on my system with the > ipsec_mb libraries being found ok [installed in standard path]. Can you > share how you are adding the extra library paths, is it via environment or > via c_link_args? > Actually, I just realised that these chkincs binaries don't need to be linked with all these libraries at all, since they don't actually call any functions and are just meant to check includes. Let me test with removing all the "link_whole:" parameters and if that works, submit it as a new patch. That might solve your issues here - again depending on how your environment is set up.
/Bruce