From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id C30B11B1B5 for ; Sat, 7 Oct 2017 00:00:29 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 34C4B20DCD; Fri, 6 Oct 2017 18:00:29 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 06 Oct 2017 18:00:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=P5DETSBWvONO2N2 0uF33uhRvOLQxtp+zMeGuEIosfrg=; b=Cp50zbKE/Biqc0ODMRM5/58mDHDo9Jq ij6X1R5ihuZxFqpUnWkqgxEnC95r0fpbvdqAeI1GQH83rGTItC/hT82xbW1OKzWd zjVsXOrkxFdL1oiwl/vJ55U1fA0SGIQliEG8Nq/w/SXhByu8A1rBFaRR/hpKR8Zr b0hm1zi5bB+Q= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=P5DETSBWvONO2N20uF33uhRvOLQxtp+zMeGuEIosfrg=; b=od4tihx/ j4/mm9v3ehmh8hhLyDvM5uwwIMT6WrLzhvPX+Af2bv//UACHKw4XuZJyWHNQpMtA fYqJrOfcDu7i/YN3gccPpM7hwdv2YYtDjGnjMf95BDlOD57Vsg2x7nnuntzrtHhb 5Wo3fPtMmt4q+nl4J+1yFx/PkBOs7s1rrb03/Y5ZzE2IjeEAyvpwnl/v6PMOWQ66 08lGucaC/eqwncc8L+cxLSqxLtHwfpVndvZMVTDAGp40R0kNE6xSI3wkPVbTj7wa d5/SQwdubmp9rE0rzNJmWNvB+9nViDIw7gyou9kJS3Si0/wznhE+u8y0rgWcQIpc Ek9nJS09yJ1DBw== X-ME-Sender: X-Sasl-enc: akYJGo38Ba3PRfcQ2PKwVePYQRlslzMfeMF/NbBhAc26 1507327228 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id E25CA2413F; Fri, 6 Oct 2017 18:00:28 -0400 (EDT) From: Thomas Monjalon To: Keith Wiles Cc: dev@dpdk.org, "Burakov, Anatoly" Date: Sat, 07 Oct 2017 00:00:27 +0200 Message-ID: <2007012.7sd1xRBU0h@xps> In-Reply-To: References: <20170815135305.70024-1-keith.wiles@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] app: fix gcc -O3 compiler errors 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: , X-List-Received-Date: Fri, 06 Oct 2017 22:00:30 -0000 04/10/2017 14:59, Burakov, Anatoly: > On 15-Aug-17 2:53 PM, Keith Wiles wrote: > > When using EXTRA_CFLAGS="-g -O3" in the build the -O3 causes > > compiler warnings for these two applications. Using Ubuntu 17.04 > > gcc compiler. > > > > Signed-off-by: Keith Wiles > > Acked-by: Anatoly Burakov Rebased and re-targetted to procinfo only as the crypto app is already fixed by Olivier for -Og compilation. Applied, thanks