From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id F03A65958 for ; Wed, 9 Dec 2015 16:00:48 +0100 (CET) Received: by wmec201 with SMTP id c201so77438466wme.1 for ; Wed, 09 Dec 2015 07:00:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=hz1qcWG1CAH75o5H5BQFkh+GleodkEkA1GMKrqK/QxU=; b=Ly+qSXowRdF0YeqKgRPLCriQT774XuUPrwVNUBZaQw0mVqVfHtKJVPiVmOB7OZsSUA ZsKUreIYeC5RyPQIVxcvnvLuK6Yfk3SPPCKrnx1dg+IM+3Bm54yYUhXCdjyBckWPQ24j w6ekTlnrM+MU9cf0WWspXUYvCtgZmgnvledvad2EW85t6paS/OxxxJ8HdFhP7z2S00oq lKHysmQEO6EuXuUG2Gs9MMgwS41ApKz0O2LVddEESZUYpN+BxlteELe8zzliFSUdNF0u tGH0UMFZxs7rcNa1bAMuk2Em1kFJS0rO3IIbfPBvGi0Vq9gQGGryZO1REW6vUzgVseyc W2aQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=hz1qcWG1CAH75o5H5BQFkh+GleodkEkA1GMKrqK/QxU=; b=UGnTSASpD6WeXChuS5q2dy9/tX+pVqL2d80+8d56n0YbLX2KGIenDkMlxEaCQ84Xov JLGmZhD1V4TOf1RG038iPL2KESobbjrxONNV7v2jxWBipRigm7M0XTfTaGPohnpj0NSE 60/k9UCF7YZl3j8FAgChYO8iM4yNe2EzucBYZfFUjc1D0V9fG4LG1lhsXFzJZ7TZ74Qt GMcrzEC6VPU3nHflCIzX+ZUAHW+gKyb3vUktD/IcgcipzpqHVeqBZk1gPdWp/b7AFy12 jYvVSemdYL0NlM6GFJekA/j0aOkujdOgdPITqTyfUvEfbTx4EYwy0CJQpQUSDdpmHMkz vHGQ== X-Gm-Message-State: ALoCoQnl6o71fPkA5cqER0sIrse69PeLwZejq/oTSj5rptFaAAggJ8uErzr9IWIA3No6CMhMwoXkCZuDnymoJ1dU9GVDF/TQhQ== X-Received: by 10.28.89.137 with SMTP id n131mr36249802wmb.9.1449673248778; Wed, 09 Dec 2015 07:00:48 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id gl4sm8082074wjd.17.2015.12.09.07.00.47 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Dec 2015 07:00:47 -0800 (PST) From: Thomas Monjalon To: "Wiles, Keith" Date: Wed, 09 Dec 2015 15:59:32 +0100 Message-ID: <10748670.5QWvKQimdm@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] Building with 'make install T=' and 'make config T=' X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Dec 2015 15:00:49 -0000 2015-12-09 14:39, Wiles, Keith: > I am having a problem with =E2=80=98make install T=3D=E2=80=98 comman= d as I was using it before. I would normally build a x86_64-native-linu= xapp-gcc, clang and icc or a different config all together. Currently t= he =E2=80=98make install T=3D=E2=80=98 gives a warning message at the e= nd of the build plus creates the x86_64-native-linuxapp-XXX directory. = If I use the suggested =E2=80=98make config T=3D=E2=80=98 command this = command create a directory =E2=80=98build=E2=80=99 with a .config file.= The problem is this method does not allow me to have multiple builds a= t the same time. >=20 > What is the suggested method to have multiple builds without installi= ng into the local file system? The multiple build is not supported anymore. It was only building with the default configuration. If you want to test various builds, I suggest to use this script: =09scripts/test-build.sh =09http://dpdk.org/browse/dpdk/commit/?id=3Dcd31ca579c If you just want to compile, it is simple: =09make config T=3Dx86_64-native-linuxapp-gcc O=3Dmy-gcc-build =09make O=3Dmy-gcc-build Note: the documentation was updated when doing this change. If you think something is missing, please comment.