From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 6B7EA4F98; Fri, 14 Sep 2018 16:52:55 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Sep 2018 07:52:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,373,1531810800"; d="scan'208";a="70859914" Received: from btwcube1.sh.intel.com ([10.67.104.151]) by fmsmga008.fm.intel.com with ESMTP; 14 Sep 2018 07:52:53 -0700 From: Tiwei Bie To: ferruh.yigit@intel.com, maxime.coquelin@redhat.com, zhihong.wang@intel.com, dev@dpdk.org Cc: stable@dpdk.org Date: Fri, 14 Sep 2018 22:51:41 +0800 Message-Id: <20180914145141.32044-1-tiwei.bie@intel.com> X-Mailer: git-send-email 2.18.0 Subject: [dpdk-dev] [PATCH] vhost: add missing cflags in meson build 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, 14 Sep 2018 14:52:56 -0000 Fixes: 6ee380ffb5e7 ("vhost: fix vhost interrupt support") Signed-off-by: Tiwei Bie --- Hi Ferruh, The hash in above fixes line isn't really right, because that patch hasn't been committed to the main repo yet. Please squash this patch to that one if possible. Thanks! lib/librte_vhost/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_vhost/meson.build b/lib/librte_vhost/meson.build index bd62e0e39..9d25b4d88 100644 --- a/lib/librte_vhost/meson.build +++ b/lib/librte_vhost/meson.build @@ -9,6 +9,7 @@ if has_libnuma == 1 endif version = 4 allow_experimental_apis = true +cflags += '-fno-strict-aliasing' sources = files('fd_man.c', 'iotlb.c', 'socket.c', 'vdpa.c', 'vhost.c', 'vhost_user.c', 'virtio_net.c', 'vhost_crypto.c') -- 2.18.0