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 <leyi.rong@intel.com>
Tested-by: Pallavi Kadam <pallavi.kadam@intel.com>
Tested-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Leyi Rong 2021-01-27 22:27:05 +08:00 committed by Thomas Monjalon
parent 7ac31e82bc
commit 549bfc8316

View File

@ -11,3 +11,6 @@ system = 'windows'
cpu_family = 'x86_64'
cpu = 'native'
endian = 'little'
[properties]
c_args = '-mno-avx512f'