From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id D43E0568B for ; Wed, 9 Dec 2015 18:57:37 +0100 (CET) Received: by wmww144 with SMTP id w144so233460860wmw.1 for ; Wed, 09 Dec 2015 09:57:37 -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=UV6ATdpR0+Oy0nDYVg5WPxSgWyRrN8k/AA+kQ0DAXxY=; b=Fs4MDfgxEPb5X7KuuF+WSzBGSvC5l4lZBEGcu/UV8MSWb1sGGGB+hOdel1kEFxrAzM Qk+EH+/Wh/P63j+6uALeA2y+8eVoe6+M2v+QRcDPc3254VEwqrI75oogj4IGv+N4nmAR SfeHbB4AQKaL6Zi+UitHpc4S5JooirHaZMnU5IraqEjj9VAStN/4pfGnM89bWZUMoZJj TcLbyBunmVNeDbrw34FlM/lLtJtyYIhI5o4GqnBgi9vRSvc5uIwOna/lRVi+jD+3LDGG MEDD2RayI5QTyVUHnsrTEPT8Mb8EZ8/XogzR72pMW01WIiXZ6RqyCtWSsol2uvm71+e7 ul3g== 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=UV6ATdpR0+Oy0nDYVg5WPxSgWyRrN8k/AA+kQ0DAXxY=; b=V3zwHUwBBk2y7YyWeAs4MfRWNumbDZod03C06lbFtt0Ya6sWBaMOrj/NbEj61tMwOS nofiftqtZIrvxMhw/ub3aRaYSuUfcxPcfLxuDqTR9gIBSPrtIEU/PCxk8WzDBerUJM9q BAahLPuYY4CsKVEwZSlaZtirWpiP0FWIrJkT5Kq1hUSUPz04dNi4WWBMHgwUhqe3JYT6 adC8prQ2MXKcelMe2g9Dv+6TZ6SAg2v1dPcJIl/XgOilGNQNndfX294JWNu2W8l4e6bI dqK/maX06qm113VBK1fj/zU35Xir+XvlkpqJL2J86Av5ZjuvdJZ3VgG27MkIV2QRIz5c rfSw== X-Gm-Message-State: ALoCoQn4trIrmANB/oHEBOBXFITW1MOP/5jpjwiv1fof0EMyooy+PueO9oCYMCd5JZu7a0/B+pzSEo5vskYP6s4o5YTKHO/6FQ== X-Received: by 10.28.103.84 with SMTP id b81mr12167297wmc.39.1449683857680; Wed, 09 Dec 2015 09:57:37 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id h67sm27041905wmf.17.2015.12.09.09.57.36 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Dec 2015 09:57:37 -0800 (PST) From: Thomas Monjalon To: "Wiles, Keith" Date: Wed, 09 Dec 2015 18:56:21 +0100 Message-ID: <8796313.MZ6Xhbmc6L@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <93DC6E80-9DF5-4335-94D2-E45CC42C9640@intel.com> References: <3389553.DHxrbPlyKc@xps13> <93DC6E80-9DF5-4335-94D2-E45CC42C9640@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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 17:57:38 -0000 2015-12-09 17:31, Wiles, Keith: > On 12/9/15, 10:19 AM, "Thomas Monjalon" wrote: > >Between "make config" and "make" you can modify the configuration. > >In the next release, "make config" will be wrapped by a "configure" script > >which will allow to configure your target in one line. > >So we will end up with: > > ./configure > > make > > make install > >It may be weird to you but it is standard to others. > > I understand the above configure steps and yes it is nice to have, the only problem is we do not have a real automake-autolib configuration system. > > Personally I would not use automake-autolib as it requires more system resources and different version cause different problems plus M4 maybe a great language, but not very friendly. The current DPDK build system just requires make and a shell, which is very common plus very simple to install. If cross-compiling it will be harder to get all of the tools in place to support a real automake system on a embedded environment. Cross-compiling has its own problems to address. I said "make config" will be wrapped by a "configure" script. Does it sound like using autotools? No