From: Leyi Rong Date: Wed, 27 Jan 2021 14:27:05 +0000 (+0800) Subject: config: disable AVX512 with MinGW X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=549bfc83168f8c19b55f3d76020b530cadddb856;p=dpdk.git config: disable AVX512 with MinGW Disable AVX512 when on MinGW cross build, as .seh_savexmm build error reports if AVX512 is enabled: Error: invalid register for .seh_savexmm Signed-off-by: Leyi Rong Tested-by: Pallavi Kadam Tested-by: David Marchand --- 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'