From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id 6F2F85686 for ; Sat, 8 Oct 2016 01:15:09 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id i130so67942512wmg.1 for ; Fri, 07 Oct 2016 16:15:09 -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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=1US1BemQH7fvS3rZkUURlUMFJSko6gpiKGeASlTvZa0=; b=vlHlK82AEFE+Ts85XHyVbYr751Rt6x8xD+f0IhNhGh9HTYFynfmeYwv0/jwy1U1myV knYc3YzO3XdMS1WhFacCN3LYuK+iLwi/0FmjA74pBH291ay9es57QI/MrDZ4Ch6P1nxa LOvZdeTpZ5g8Zb1sHDcM7Sdii9sUUxZV/WH4cnn8BjGbjR59X2sG0h/IsDI5yBijbp2B cXSCHw75CYR/hB/69rsqjQNyIEEKGAeIGU75jlAlUd7bHZEEGS66Unahsz8gi7VfTwma haOYrafylkuQbrfgojoiv8qysWbLGH8i9V6IQDmV1Ql3M8z4aMZ+oqDrGMTa4EkM6l3R VOQQ== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=1US1BemQH7fvS3rZkUURlUMFJSko6gpiKGeASlTvZa0=; b=Lv3YmzOhwqbKAU7BrC1CvrAXtoDxeMNebHNVDyMSwG53e4QUpH66mjUBl5vtk64WbT 8pLtFFLFqiLXiQmo4NziX3LHMJ4cCUFsLR2HIRoqgjLKNp7v/pLB7k8nvPIHnAkXDfGY HsB/HYACRT6+Ov+v+Hb8YTSRaf+V5mP+mq7gPYvlwSKduHvb4rGqDl+p0zXv1fqBeegN uNpGJBwyV9yVFafmqpAtZ5nJ1Ig2BeHmRYHpkHgWCunh7/E+DTBIEu4Am8nk4vtmGEYH qsYbRn22tlqZxv6Bcat3kb657QK4r9lt1pMobDPzcWx3+bAg9YV/xX+29hCBAN7J3eMz 772w== X-Gm-Message-State: AA6/9RmKErRhLYP5HA0N7cgFvbmou6QnLAl3rApXrhJkfbiMftYuH7T395QWdXZWuUlzn0qa X-Received: by 10.28.211.209 with SMTP id k200mr844745wmg.83.1475882109209; Fri, 07 Oct 2016 16:15:09 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id n7sm5193001wmf.18.2016.10.07.16.15.08 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 07 Oct 2016 16:15:08 -0700 (PDT) From: Thomas Monjalon To: Nishant Verma Cc: users@dpdk.org Date: Sat, 08 Oct 2016 01:15:05 +0200 Message-ID: <2871637.lskxxgeZ0v@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Fri, 07 Oct 2016 23:15:09 -0000 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.