From: Thomas Monjalon Date: Tue, 29 Mar 2016 09:51:27 +0000 (+0200) Subject: scripts: remove legacy build method test X-Git-Tag: spdx-start~7040 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=462cc98b5c8f90fc84c8993d58470831d7a3deca;p=dpdk.git scripts: remove legacy build method test Building with "make install T=" is now deprecated. The script will test only the standard "make" command. Signed-off-by: Thomas Monjalon --- diff --git a/scripts/test-build.sh b/scripts/test-build.sh index be8275ef9f..b23d6c8565 100755 --- a/scripts/test-build.sh +++ b/scripts/test-build.sh @@ -96,7 +96,7 @@ cd $(dirname $(readlink -m $0))/.. config () # { if [ ! -e $1/.config ] ; then - echo Custom configuration + echo "================== Configure $1" make T=$2 O=$1 config echo $3 | grep -q next || \ sed -ri 's,(NEXT_ABI=)y,\1n,' $1/.config @@ -140,21 +140,23 @@ for conf in $configs ; do options=$(echo $conf | cut -d'+' -sf2- --output-delimiter='-') if [ -z "$options" ] ; then dir=$target - config $dir $target - # Use install rule - make -j$J T=$target install EXTRA_CFLAGS="$DPDK_DEP_CFLAGS" EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" - $short || make -j$J T=$target examples O=$dir/examples EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" else dir=$target-$options - config $dir $target $options - echo "================== Build $dir" - # Use O variable without install - make -j$J O=$dir EXTRA_CFLAGS="$DPDK_DEP_CFLAGS" EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" - echo "================== Build examples for $dir" - make -j$J -sC examples RTE_SDK=$(pwd) RTE_TARGET=$dir O=$(readlink -m $dir/examples) EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" fi - echo "################## $dir done." + config $dir $target $options + + echo "================== Build $dir" + make -j$J EXTRA_CFLAGS="$DPDK_DEP_CFLAGS" \ + EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" O=$dir ! $short || break + echo "================== Build examples for $dir" + export RTE_SDK=$(pwd) + export RTE_TARGET=$dir + make -j$J -sC examples \ + EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" \ + O=$(readlink -m $dir/examples) + unset RTE_TARGET + echo "################## $dir done." done if ! $short ; then