From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vk0-f48.google.com (mail-vk0-f48.google.com [209.85.213.48]) by dpdk.org (Postfix) with ESMTP id F12E437B3 for ; Sun, 9 Oct 2016 04:46:19 +0200 (CEST) Received: by mail-vk0-f48.google.com with SMTP id z126so71036162vkd.0 for ; Sat, 08 Oct 2016 19:46:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=ulk7ukGZrOXKPYn7nhqsJarw5pmJ631bNaljdAmq7pQ=; b=jqMjZsDcM4tyYwsyVsUE9X9GaMomPppEg+RhVY/SE7g1isjSg/lEXjGTITbQyrQwlk DZ7HwQtlUYuT1RH7JP3TvmfdnYRIIL/4YrXcQiGyjNrPExwnIKFlIEDj0m86HDPdH0BU WmIrLKq1uVhc1NV/l8ESCb8q27Kt9+KC+ePlGNsgboV4TelkXfCrTbucrmzAkgTG454p L9OvrhKL8iKDqphNO2eo1N2tl0ch1lHibmrFCKJBoH6Jzd+iRICWMicpRacNRtpG+MkU Yih/JL3596iYWLfq+zrP3hw8TKchGWUDQWwfbxDLt//SdacxZFCVqamjbp0yplm+Nxhl pnzA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=ulk7ukGZrOXKPYn7nhqsJarw5pmJ631bNaljdAmq7pQ=; b=QX86lG8CJKm226fPhCdlEX5AKjTGlRuO3zEdU21HA4LOYsKk9QcvMhUUjkqouDZ2Ao 4Yv4x2waMzlDslzCecHe0fNz6cGQig0y1e2P1tVBJCCIzEpY0KE5rUp0F5XDD/b52TG7 OMmRKgEakBIDRkt1CDXg6lfSRGaeoCgbw3hVgHB41MyQVK1taWPrf58kbGUUgKfV9poY PGM23KdvCawqcKRvmszThkzVPqZDSbRGHjD1sO5eMqfNeOs3SCkKSOCKIFArZh2q2fca ACZ1l5oNtLwdNLA4REq/BCGcqAHtrtqxGcusLZkIEBDvsXbcGIbgBqqWLpAOqG0LuWVL +i5g== X-Gm-Message-State: AA6/9RlO/FsswXfLHWSCZyWWnULlY8UQHCF1xRS2iTnS3ZU58tMxH0wvA1F3JcfXtfSnsWxdwd/DCfyzEvmtKQ== X-Received: by 10.31.149.73 with SMTP id x70mr5485734vkd.86.1475981179388; Sat, 08 Oct 2016 19:46:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.31.218.68 with HTTP; Sat, 8 Oct 2016 19:46:19 -0700 (PDT) In-Reply-To: <2871637.lskxxgeZ0v@xps13> References: <2871637.lskxxgeZ0v@xps13> From: Nishant Verma Date: Sat, 8 Oct 2016 22:46:19 -0400 Message-ID: To: Thomas Monjalon Cc: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-users] KNI on 32 bit X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Oct 2016 02:46:20 -0000 But i am persuaded by this link. http://dpdk.org/ml/archives/dev/2014-January/001143.html If it really can't, then some one has to dismiss this as well. On Fri, Oct 7, 2016 at 7:15 PM, Thomas Monjalon wrote: > 2016-10-07 17:46, Nishant Verma: > > Hi All, > > > > My machine is 64 bit. > > I am trying to compile DPDK 16.07 with i686. It's giving me error : > > *"/cm_data/onewebcommon/data_fw/hfdp/script/intel-dpdk/lib/ > librte_port/rte_port_kni.c:38:21: > > fatal error: rte_kni.h: No such file or directory"* > > > > Little bit of reading of previous question indicated that in .config i > > need to set the *CONFIG_RTE_LIBRTE_KNI=y* manually. > > > > I tried that too, but still getting same error. > > > > Any clue??????? to resolve the issue. > > See this config template: > http://dpdk.org/browse/dpdk/tree/config/defconfig_i686- > native-linuxapp-gcc#n45 > "KNI is not supported on 32-bit" > > You should not see this error. See the makefile: > http://dpdk.org/browse/dpdk/tree/lib/librte_port/Makefile#n59 > ifeq ($(CONFIG_RTE_LIBRTE_KNI),y) > SRCS-$(CONFIG_RTE_LIBRTE_PORT) += rte_port_kni.c > endif > > And CONFIG_RTE_LIBRTE_KNI must be disabled for 32-bit. > -- Rgds, Nishant