From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A5988A0589; Fri, 27 Mar 2020 10:14:42 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 62F6C1C02E; Fri, 27 Mar 2020 10:14:41 +0100 (CET) Received: from smtp-3.sys.kth.se (smtp-3.sys.kth.se [130.237.48.192]) by dpdk.org (Postfix) with ESMTP id 4F0351C028 for ; Fri, 27 Mar 2020 10:14:40 +0100 (CET) Received: from smtp-3.sys.kth.se (localhost.localdomain [127.0.0.1]) by smtp-3.sys.kth.se (Postfix) with ESMTP id E02E65892; Fri, 27 Mar 2020 10:14:39 +0100 (CET) X-Virus-Scanned: by amavisd-new at kth.se Received: from smtp-3.sys.kth.se ([127.0.0.1]) by smtp-3.sys.kth.se (smtp-3.sys.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xsYHNOiV4mCS; Fri, 27 Mar 2020 10:14:39 +0100 (CET) X-KTH-Auth: barbette [2a02:a03f:4070:7c00:790a:1678:9957:28ed] DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kth.se; s=default; t=1585300479; bh=ogWC1co3rdoRSqRA0Mu3MKiVmWsZ9BnvgmDQZ7fE6RY=; h=Subject:From:To:References:Cc:Date:In-Reply-To; b=GjzLdAP/FY8KH5NfSrAbcjcJdpjDvUbyYebsdGNyA7pQqZ6TZ5gkIf8cNhG8T+sTZ 5qyNsEN/qh9SvxN2XGK9D08aDd9spG9zEafVXusthEsK65XevAYaLJYi9vfufZn1wQ /3STum77oOwTMy7Ymp8XRLedziX8Uqq2e8kKCBKI= X-KTH-mail-from: barbette@kth.se Received: from [IPv6:2a02:a03f:4070:7c00:790a:1678:9957:28ed] (unknown [IPv6:2a02:a03f:4070:7c00:790a:1678:9957:28ed]) by smtp-3.sys.kth.se (Postfix) with ESMTPSA id 8FC7F37BB; Fri, 27 Mar 2020 10:14:38 +0100 (CET) From: Tom Barbette To: dev@dpdk.org References: Cc: Matthew Hall , Thomas Monjalon Message-ID: <83f48ac2-cf68-dc19-dc6b-d775e0b3de4e@kth.se> Date: Fri, 27 Mar 2020 10:14:35 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: fr Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] Impossible to build external application if user build DPDK with "make config" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" CC'ing original participants as I don't see a way out of this. Le 12/03/2020 à 13:04, Tom Barbette a écrit : > Hi all, > > If the user follows the quick guide > (http://core.dpdk.org/doc/quick-start/) DPDK will be compiled in the > "build" folder. > > However, external applications will always fail to build because > RTE_SDK_BIN is strictly defined as $RTE_SDK/$RTE_TARGET, and > mk/internal/rte.extvars.mk needs to find .config in $RTE_SDK_BIN. > > Therefore please apply the patch at: > http://patchwork.dpdk.org/patch/9991/ that allows external apps to > override $RTE_SDK_BIN. > > Or (less preferable) modify the quick start guide to use something more > standard that allows to build with external apps (eg use the menu or > propose "make config T=x86_64-native-linuxapp-gcc > O=x86_64-native-linuxapp-gcc" instead). It's much easier for external > apps maintainer to refer to the DPDK tutorial for DPDK installation. > > Thanks! > > Tom