From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 38BADA052A; Wed, 27 Jan 2021 15:47:19 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D892D140E24; Wed, 27 Jan 2021 15:47:08 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 531C7140E0C for ; Wed, 27 Jan 2021 15:47:04 +0100 (CET) IronPort-SDR: m2dq3YQrf3WKG9sSBtHXQMn5zEcRCoC5L+GDKy8a2CpOVEeB2dvGH7tl7lXajMARfxoIaGZ0qP T6FHKDfNhLHA== X-IronPort-AV: E=McAfee;i="6000,8403,9877"; a="159248218" X-IronPort-AV: E=Sophos;i="5.79,379,1602572400"; d="scan'208";a="159248218" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Jan 2021 06:47:03 -0800 IronPort-SDR: 2oxs+I4RBsvhX9L3Wl4r4cSTsLoOvgSsRsB+oSu580cb753RE6Zn6Z2mYJhTNv63ajwYrm4Du4 xdh724nfyVSA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,379,1602572400"; d="scan'208";a="388330994" Received: from dpdk-lrong-srv-04.sh.intel.com ([10.67.119.221]) by orsmga008.jf.intel.com with ESMTP; 27 Jan 2021 06:47:01 -0800 From: Leyi Rong To: bruce.richardson@intel.com, talshn@nvidia.com, qi.z.zhang@intel.com, pallavi.kadam@intel.com, ferruh.yigit@intel.com, ranjit.menon@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, Leyi Rong Date: Wed, 27 Jan 2021 22:27:05 +0800 Message-Id: <20210127142706.6290-2-leyi.rong@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210127142706.6290-1-leyi.rong@intel.com> References: <20210126153819.63625-1-leyi.rong@intel.com> <20210127142706.6290-1-leyi.rong@intel.com> Subject: [dpdk-dev] [PATCH v3 1/2] config: disable avx512 on mingw cross build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Disable avx512 when on mingw cross build, as .seh_savexmm build error reports if avx512 is enabled. Signed-off-by: Leyi Rong --- config/x86/cross-mingw | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/x86/cross-mingw b/config/x86/cross-mingw index 4c15a7fa2e..48a82b457e 100644 --- a/config/x86/cross-mingw +++ b/config/x86/cross-mingw @@ -11,3 +11,6 @@ system = 'windows' cpu_family = 'x86_64' cpu = 'native' endian = 'little' + +[properties] +c_args = '-mno-avx512f' -- 2.17.1