[MPlayer-cvslog] r38013 - trunk/configure
al
subversion at mplayerhq.hu
Thu Jan 4 22:12:30 EET 2018
Author: al
Date: Thu Jan 4 22:12:30 2018
New Revision: 38013
Log:
configure: Generate negative results for AVX512
Since AVX512 support was added to FFmpeg the build with internal
FFmpeg was broken.
This unbreaks the build for now. Though detection for AVX512 should
be added later.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Jan 1 07:27:29 2018 (r38012)
+++ trunk/configure Thu Jan 4 22:12:30 2018 (r38013)
@@ -632,6 +632,7 @@ _sse4_1=auto
_sse4_2=auto
_avx=auto
_avx2=auto
+_avx512=no
_xop=auto
_fma3=auto
_fma4=auto
@@ -3285,7 +3286,7 @@ if arm ; then
echores "$_iwmmxt"
fi
-cpuexts_all='ALTIVEC XOP AVX AVX2 FMA3 FMA4 MMX MMX2 MMXEXT AMD3DNOW AMD3DNOWEXT SSE SSE2 SSE3 SSSE3 SSE4 SSE42 FAST_CMOV I686 FAST_CLZ ARMV5TE ARMV6 ARMV6T2 VFP VFPV3 SETEND NEON IWMMXT MMI VIS MVI'
+cpuexts_all='ALTIVEC XOP AVX AVX2 AVX512 FMA3 FMA4 MMX MMX2 MMXEXT AMD3DNOW AMD3DNOWEXT SSE SSE2 SSE3 SSSE3 SSE4 SSE42 FAST_CMOV I686 FAST_CLZ ARMV5TE ARMV6 ARMV6T2 VFP VFPV3 SETEND NEON IWMMXT MMI VIS MVI'
test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
test "$_mmx" = yes && cpuexts="MMX $cpuexts"
test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
@@ -3300,6 +3301,7 @@ test "$_sse4_1" = yes && cpuexts="SSE
test "$_sse4_2" = yes && cpuexts="SSE42 $cpuexts"
test "$_avx" = yes && cpuexts="AVX $cpuexts"
test "$_avx2" = yes && cpuexts="AVX2 $cpuexts"
+test "$_avx512" = yes && cpuexts="AVX512 $cpuexts"
test "$_xop" = yes && cpuexts="XOP $cpuexts"
test "$_fma3" = yes && cpuexts="FMA3 $cpuexts"
test "$_fma4" = yes && cpuexts="FMA4 $cpuexts"
More information about the MPlayer-cvslog
mailing list