From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 768FAA0A0F for ; Mon, 5 Jul 2021 16:14:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F340F40040; Mon, 5 Jul 2021 16:14:53 +0200 (CEST) Received: from frogstar.hit.bme.hu (frogstar.hit.bme.hu [152.66.248.44]) by mails.dpdk.org (Postfix) with ESMTP id E91C44003C for ; Mon, 5 Jul 2021 16:14:51 +0200 (CEST) Received: from [10.4.66.238] (fwsm-nat8.sze.hu [193.224.131.38] (may be forged)) (authenticated bits=0) by frogstar.hit.bme.hu (8.15.2/8.15.2) with ESMTPSA id 165EEiD6020364 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 5 Jul 2021 16:14:50 +0200 (CEST) (envelope-from lencse@hit.bme.hu) X-Authentication-Warning: frogstar.hit.bme.hu: Host fwsm-nat8.sze.hu [193.224.131.38] (may be forged) claimed to be [10.4.66.238] To: users@dpdk.org From: Gabor LENCSE Message-ID: <390f368b-bfc2-e725-31e2-7cab1ac13f01@hit.bme.hu> Date: Mon, 5 Jul 2021 16:14:42 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-Virus-Scanned: clamav-milter 0.102.4 at frogstar.hit.bme.hu X-Virus-Status: Clean Received-SPF: pass (frogstar.hit.bme.hu: authenticated connection) receiver=frogstar.hit.bme.hu; client-ip=193.224.131.38; helo=[10.4.66.238]; envelope-from=lencse@hit.bme.hu; x-software=spfmilter 2.001 http://www.acme.com/software/spfmilter/ with libspf2-1.2.10; X-DCC-wuwien-Metrics: frogstar.hit.bme.hu; whitelist X-Spam-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,TW_PD autolearn=disabled version=3.4.1-frogstar X-Spam-Checker-Version: SpamAssassin 3.4.1-frogstar (2015-04-28) on frogstar.hit.bme.hu X-Scanned-By: MIMEDefang 2.79 on 152.66.248.44 Subject: [dpdk-users] How can I update the compilation of my 16.11.11-1+deb9u2 version DPDK project to 18.11.11-1~deb10u1 X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org Sender: "users" Dear DPDK Users, I hope that I am writing to the right place, I have just signed to this mailing list. I have written siitperf, a DPDK-based, RFC 8219 compliant SIIT tester: https://github.com/lencsegabor/siitperf/ Currently, I can compile it under Debian 9 (DPDK version is: 16.11.11-1+deb9u2) using the following Makefile, which I wrote on the basis of an example: https://github.com/lencsegabor/siitperf/blob/master/Makefile-tp It needs the environment variables set by the /usr/share/dpdk/dpdk-sdk-env.sh, which is a part of the version 16.11.11-1+deb9u2 "dpdk-dev" Debian package. However, I need to use Debian 10 instead of Debian 9, for hardware support issues. Unfortunately, I have experienced, that the dpdk-sdk-env.sh file is missing from DPDK 18.11.11. ( I have also read that dpdk-sdk-env.sh is no longer included: https://linux.debian.bugs.dist.narkive.com/gOb82oOD/bug-921043-dpdk-dev-dpdk-sdk-env-sh-no-longer-included-in-dpdk-dev .) Of course, I could set the environment variables manually as follows: export RTE_TARGET="x86_64-default-linuxapp-gcc" export RTE_SDK="/usr/share/dpdk/" export RTE_INCLUDE="/usr/include/dpdk" However it does not help: root@tester:~/siitperf# make Makefile:54: /usr/share/dpdk//mk/rte.extapp.mk: No such file or directory make: *** No rule to make target '/usr/share/dpdk//mk/rte.extapp.mk'.  Stop. root@tester:~/siitperf# find / -name rte.extapp.mk root@tester:~/siitperf# As you can see, "rte.extapp.mk" does not exist any more. Could anyone help me, how to compile my project under DPDK 18.11.11? Thank you very much for your help in advance! Best regards, Gábor Lencse