diff options
author | Bradley Sepos <[email protected]> | 2019-01-07 19:08:48 -0500 |
---|---|---|
committer | sr55 <[email protected]> | 2019-01-09 20:36:26 +0000 |
commit | f5b80290425591d99084ce43cf99e45c55d9fe3c (patch) | |
tree | aeb579077827852663d980e2848fbc2c8c3ea118 /contrib/libvpx/module.defs | |
parent | 3389a25dbf44cb11b823194a4a8cceafa4133100 (diff) |
contrib: Fix potential assembly issues with libvpx and AVX-512.
Fixes cross compilation with gcc 8 and where clang is acting weird.
Diffstat (limited to 'contrib/libvpx/module.defs')
-rw-r--r-- | contrib/libvpx/module.defs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/libvpx/module.defs b/contrib/libvpx/module.defs index f9b38a886..d04672713 100644 --- a/contrib/libvpx/module.defs +++ b/contrib/libvpx/module.defs @@ -39,3 +39,7 @@ ifeq (0-darwin,$(BUILD.cross)-$(BUILD.system)) LIBVPX.CONFIGURE.extra += --target=x86_64-darwin14-gcc endif endif + +ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system)) + LIBVPX.CONFIGURE.extra += --disable-avx512 +endif |