From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH 2/8] scripts: remove legacy build method test Date: Tue, 29 Mar 2016 18:15:48 +0200 Message-ID: <1459268154-29558-3-git-send-email-thomas.monjalon@6wind.com> References: <1459268154-29558-1-git-send-email-thomas.monjalon@6wind.com> To: dev@dpdk.org Return-path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 2DC6D5595 for ; Tue, 29 Mar 2016 18:18:07 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id p65so34106626wmp.0 for ; Tue, 29 Mar 2016 09:18:07 -0700 (PDT) Received: from XPS13.dev.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id jf6sm30004635wjb.2.2016.03.29.09.18.05 for (version=TLSv1/SSLv3 cipher=OTHER); Tue, 29 Mar 2016 09:18:06 -0700 (PDT) In-Reply-To: <1459268154-29558-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Building with "make install T=" is now deprecated. The script will test only the standard "make" command. Signed-off-by: Thomas Monjalon --- scripts/test-build.sh | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/scripts/test-build.sh b/scripts/test-build.sh index be8275e..b23d6c8 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 -- 2.7.0