From patchwork Fri Mar 25 06:27:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxim Uvarov X-Patchwork-Id: 64452 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp18482lbc; Thu, 24 Mar 2016 23:28:45 -0700 (PDT) X-Received: by 10.50.138.233 with SMTP id qt9mr12792608igb.13.1458887325201; Thu, 24 Mar 2016 23:28:45 -0700 (PDT) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id gb2si1350011igd.4.2016.03.24.23.28.44; Thu, 24 Mar 2016 23:28:45 -0700 (PDT) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id AC63161B5F; Fri, 25 Mar 2016 06:28:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ip-10-142-244-252 X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, URIBL_BLOCKED autolearn=disabled version=3.4.0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id D066061B69; Fri, 25 Mar 2016 06:27:55 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 2A5CC61979; Fri, 25 Mar 2016 06:27:50 +0000 (UTC) Received: from mail-lf0-f49.google.com (mail-lf0-f49.google.com [209.85.215.49]) by lists.linaro.org (Postfix) with ESMTPS id BDC5161973 for ; Fri, 25 Mar 2016 06:27:47 +0000 (UTC) Received: by mail-lf0-f49.google.com with SMTP id d82so49724432lfe.3 for ; Thu, 24 Mar 2016 23:27:47 -0700 (PDT) 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:in-reply-to :references; bh=X0ZB76XTD5OJ8ykeRTl1fQQFwic4gkyujzbVVE0af7c=; b=lbAe8sGWFT1+C09N//sPa4YGZiPEfxx5rz1VVBc8x0lyn74GyPb/l10CK1nacIc0f2 KRKbzdxz9oMdpkX03VB1l7er6rnbNwYrP9GtPMZM11veFkc7nPwxTdz6JP76MbPp2AcU nmKm6vJbHUhZO0NQubHzZYE0FSRRKDqsw46dGxBEQP0IA/eUUcmhe/KP4M89xMuL2Xgo ZvPwQX0O2oyBnD5JsjuC/FM0WvdOrT1g6m1Tht2SkRS1GIRjVW5PWRFXOzMKWNOKW6jr gVM1b8dya6pQuVVbhkq0EH66DVVtga3HkLmviozs+2hYc6b+iko84bE4AYmySwdJ4Q5h ZNcQ== X-Gm-Message-State: AD7BkJJVfgY7A7unn/f5CfX1pjVrDgp7KyYWlWSocrynlbhiKmL+oBoGJkbKV4631sr5QA81YKY= X-Received: by 10.25.210.75 with SMTP id j72mr5285958lfg.75.1458887266659; Thu, 24 Mar 2016 23:27:46 -0700 (PDT) Received: from localhost.localdomain (ppp91-77-172-79.pppoe.mtu-net.ru. [91.77.172.79]) by smtp.gmail.com with ESMTPSA id a14sm1800351lfe.7.2016.03.24.23.27.45 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 24 Mar 2016 23:27:46 -0700 (PDT) From: Maxim Uvarov To: lng-odp@lists.linaro.org Date: Fri, 25 Mar 2016 09:27:41 +0300 Message-Id: <1458887262-14520-2-git-send-email-maxim.uvarov@linaro.org> X-Mailer: git-send-email 2.7.1.250.gff4ea60 In-Reply-To: <1458887262-14520-1-git-send-email-maxim.uvarov@linaro.org> References: <1458887262-14520-1-git-send-email-maxim.uvarov@linaro.org> X-Topics: patch Subject: [lng-odp] [PATCHv5 1/2] scripts: add builddpdk X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Add script to quickly build odp with dpdk pktio support. Signed-off-by: Maxim Uvarov --- .gitignore | 1 + scripts/build-pktio-dpdk | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100755 scripts/build-pktio-dpdk diff --git a/.gitignore b/.gitignore index b4c146b..4945d25 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ core cscope.out depcomp doc/output +dpdk/ install-sh lib/ libtool diff --git a/scripts/build-pktio-dpdk b/scripts/build-pktio-dpdk new file mode 100755 index 0000000..7bf979f --- /dev/null +++ b/scripts/build-pktio-dpdk @@ -0,0 +1,34 @@ +#!/bin/bash + +TARGET=${TARGET:-"x86_64-native-linuxapp-gcc"} + +export ROOT_DIR=$(readlink -e $(dirname $0) | sed 's|/scripts||') +pushd ${ROOT_DIR} + +echo '#include "pcap.h"' | cpp -H -o /dev/null 2>&1 +if [ "$?" != "0" ]; then + echo "Error: pcap is not installed. You may need to install libpcap-dev" +fi + +git clone http://dpdk.org/git/dpdk dpdk +pushd dpdk +git checkout -b bv2.2.0 v2.2.0 + +#Make and edit DPDK configuration +make config T=${TARGET} O=${TARGET} +pushd ${TARGET} +sed -ri 's,(CONFIG_RTE_BUILD_COMBINE_LIBS=).*,\1y,' .config +#To use I/O without DPDK supported NIC's enable pcap pmd: +sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config +popd + +#Build DPDK +make install T=${TARGET} EXTRA_CFLAGS="-fPIC" +popd + +#Build ODP +./bootstrap; +./configure --enable-test-vald --enable-test-perf --enable-test-cpp \ + --enable-debug --enable-debug-print \ + --with-dpdk-path=`pwd`/dpdk/${TARGET} +make