From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D0C26A329E for ; Wed, 23 Oct 2019 23:53:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 09B211C2A8; Wed, 23 Oct 2019 23:53:10 +0200 (CEST) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id E03F71C2A5 for ; Wed, 23 Oct 2019 23:53:08 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 68E7421470; Wed, 23 Oct 2019 17:53:08 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 23 Oct 2019 17:53:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=rccKC1oxaS8Xz+NRYUnZhSIZWTEIVbBr6hef8wwVzS0=; b=MHjsS7brSO3n sdb9aK364E/nvjRUrrnGwZyp6Ho836fhdI7ZQxtJ4i44S0me3I0iYj13RHEddQhT WrOVI1WyfyKfh5dJM1Drrt9bhSkIoVR4Z1COhX4eQn71Eg8sVPitsokAPpr+R+My 7MSbtJ/15qIK1cmcNjkhM3JCsBBoD+c= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=rccKC1oxaS8Xz+NRYUnZhSIZWTEIVbBr6hef8wwVz S0=; b=Fna1Y3qyJRDdzdh0pp11AwjfcrIs2AOibfnqOcl5WPUO3L+MfiO76esdX o6Pzk7mou83jlynVMbIBxwcbaDmWtZJpRsOxZQGlkISvAFIj3O/gTjJAXuLB+O/N 4JuNdQn735bz1LlNUe1dbc7IQoMzuqEQpCduPfvnIIUo54oqkuqJdWhNGEhj0iyO Z+Unix5VwsnEE6GiPMshnlzL2q/b9WoSKSz3dDSAHIqAMSVczN/qQmcHO/oPtpJW aUyOSAHqv0kl+EaUR2uroQygwikpCh3Stw0sB1cGYQDGzyKncMVGOeBhhVjLlibL BywepZO6TUtOZ94DNxLkrsmNpeKHw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrledtgddtudcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhho mhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 38CC9D6005A; Wed, 23 Oct 2019 17:53:07 -0400 (EDT) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org, bluca@debian.org Date: Wed, 23 Oct 2019 23:53:06 +0200 Message-ID: <27101982.kvcG6rCrS4@xps> In-Reply-To: <20191007143013.16252-1-bruce.richardson@intel.com> References: <20190725143831.25116-1-bruce.richardson@intel.com> <20191007143013.16252-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/4] synchronise meson warnings with make 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 07/10/2019 16:30, Bruce Richardson: > The warnings used when building DPDK with make were stricter than those > used with meson, so this patchset aligns the two as far as is possible, > while also adding in -Wextra as a general compile flag. > > The one difference is that with "make" we allow different flags for GCC > and clang, while with meson we are (for now) keeping them common. > Therefore we drop the -Wcast-align flag as is generates too many > false positive warnings on clang, and we globally use the > Wno-missing-field-initializers flag for the same reason. > > v2: fix path to ifpga driver in patch 2, since it has moved in the repo > > Bruce Richardson (4): > build: allow compile with stricter fallthrough warnings > raw/ifpga: remove unneeded compiler flags > build: enable extra warnings for meson build > drivers: remove duplicated compiler flags Applied, thanks