devtools: reduce examples in static builds
Static builds can take a lot of space, so reduce the number of examples built when testing those static builds. As makefile-based build is close to end of life, completely skip examples in case of static linkage with make. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
parent
4e648fb70c
commit
1cab496414
@ -257,6 +257,7 @@ for conf in $configs ; do
|
||||
echo "================== Build examples for $conf"
|
||||
export RTE_SDK=$(readlink -f $dir)/install/share/dpdk
|
||||
ln -sTf $(pwd)/lib $RTE_SDK/lib # workaround for vm_power_manager
|
||||
grep -q 'SHARED_LIB=n' $dir/.config || # skip examples with static libs
|
||||
${MAKE} -j$J -sC examples \
|
||||
EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \
|
||||
O=$(readlink -f $dir)/examples
|
||||
|
@ -74,7 +74,12 @@ config () # <dir> <builddir> <meson options>
|
||||
return
|
||||
fi
|
||||
options=
|
||||
options="$options --werror -Dexamples=all"
|
||||
options="$options --werror"
|
||||
if echo $* | grep -qw -- '--default-library=shared' ; then
|
||||
options="$options -Dexamples=all"
|
||||
else
|
||||
options="$options -Dexamples=l3fwd" # save disk space
|
||||
fi
|
||||
options="$options --buildtype=debugoptimized"
|
||||
for option in $DPDK_MESON_OPTIONS ; do
|
||||
options="$options -D$option"
|
||||
|
Loading…
x
Reference in New Issue
Block a user