From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 7FA0A2BC2 for ; Tue, 22 Mar 2016 14:38:02 +0100 (CET) Received: by mail-wm0-f42.google.com with SMTP id l68so153361148wml.0 for ; Tue, 22 Mar 2016 06:38:02 -0700 (PDT) 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; bh=ZVnBPEORs8Tq9ea9JpoWk/JEPtMo660OfPXNlVbXvIY=; b=segD3gkoO7SE7n3cwAvzw7VJ6OlHVRz4xJA7AhL/PoNxbJz0fDwaaEEKkMyqxSJyr1 0E7Jc6gHIReKdv4uyFQC+NnlhESuGuWnhwc2NV3rqGra1D4dzPeYl5peBSWz/rh4J/9U Lw4GfKNXVS2Ve/RDiFvjFHFsVHh3B1DTsBt/90i/Dw13jdKua7vM8O97ncE4kaJQqgY5 ddkI44X9qV6MMEiRmtmLnSU9mLzEF/BlDXDr5LEik7E9C4+RvpZ3QB7q7B66Yq2RGBsZ n0WhI/zq0YSkVmo42mL6avqqdD0DCJCZnZIWIyFqLQpc2GtD5hhpfwwi5eCNpnyDt1aU 8gBw== 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; bh=ZVnBPEORs8Tq9ea9JpoWk/JEPtMo660OfPXNlVbXvIY=; b=MP4Hoo9+N2mlmtMW0588Fhvgc/AuAt8glT2dy6OXnmvd75TTG6ZtSGPvTH5lQT5HyH Sz4T3PMBZcXzmqWdnLGIlPV0wNSRbEAeW1dGimf+HlFd5NGvaTFZmyn9QPl+qNNHmXl7 p3hkVmefGbUTwmpbW57DsayWLlUvuaqe4+tQ71JyYFz4goCcJ/MP8pfjHjj8ADlnlX0v yG8/B/jxdPHToTzhX45MCx94i2CUsEv4f5hoqwS6yyCV1it+PQQyfnQNQOzFLkpnEjtp R9ED9fr77nXP9QUWFe9aXOPduxCuLhgwihItoMnv2L1f882KBy+JBnWf7DDd51Lh2h/5 6Fig== X-Gm-Message-State: AD7BkJILunPzJOhBNAlluBI6QPfOXCgpeKPUqKLiBTBvccTr7KOdsagoZnzlOMWqJsYYk/pA X-Received: by 10.194.89.70 with SMTP id bm6mr41635969wjb.0.1458653882272; Tue, 22 Mar 2016 06:38:02 -0700 (PDT) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id bg1sm30374742wjc.27.2016.03.22.06.38.00 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Mar 2016 06:38:01 -0700 (PDT) From: Thomas Monjalon To: Vivek Gupta Cc: dev@dpdk.org Date: Tue, 22 Mar 2016 14:36:21 +0100 Message-ID: <3056682.peQ5fAMurd@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <488FF59D9020184C9DCF4B4A0DA4781425547192@NDA-HCLT-MBS03.hclt.corp.hcl.in> References: <488FF59D9020184C9DCF4B4A0DA4781425547192@NDA-HCLT-MBS03.hclt.corp.hcl.in> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] Regarding DPDK installation 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: Tue, 22 Mar 2016 13:38:02 -0000 2016-03-22 13:13, Vivek Gupta: > I am trying to install DPDK 2.2 on Ubuntu 14. Do you just want to compile DPDK or really install it? Where do you want to install DPDK? > After configuring all necessary variables in common_linuxapp > file, I run following two commands > > make config T=x86_64-ivshmem-linuxapp-gcc The "make config" command is useless if using "install T=" after. > make install T=x86_64-ivshmem-linuxapp-gcc The install directory is not specified in this command. > After 'make install T=x86_64-ivshmem-linuxapp-gcc' , installation fails with message as below > > ************** > Build complete [x86_64-native-linuxapp-gcc] > Installation cannot run with T defined and DESTDIR undefined > ****************************** Why don't you use DESTDIR as suggested? Or instead of using the old all-in-one "install T=", you can use the more standard syntax in 3 commands: make config T= make make install [DESTDIR=] [prefix=] > I have gone through following patches: > http://dpdk.org/dev/patchwork/patch/9270/ > http://dpdk.org/dev/patchwork/patch/9272/ > More interestingly I found that changes suggested in above patches > were already in place except of below two- > addition of 'prefix' in file .../doc/build-sdk-quick-txt [ Applied in ] > addition of 'make install T=X86_64-native-linuxapp-gcc' in file ../doc/guides/prog_guide/dev_kit_root_make_help.rst These patches have been Superseded by newer (see the State field). > In file doc/guides/prog_guide/dev_kit_root_make_help.rst , I had "make install DESTDIR=myinstall" which i replaced with "make install DESTDIR=myinstall prefix=/usr"and tried but no success > so change the content as suggested in patch#9270 as "make install T=x86_64-native-linuxapp-gcc prefix=/usr" but no progress. > > Kindly suggest to solve this issue. Please read the whole doc/guides/prog_guide/dev_kit_root_make_help.rst and don't hesitate to suggest any change if something is not clear. Thanks > ::DISCLAIMER:: [...] no disclaimer please