]> git.sesse.net Git - ffmpeg/commitdiff
configure: make the C11 atomics check more robust
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 13 Apr 2018 14:04:40 +0000 (11:04 -0300)
committerJames Almer <jamrial@gmail.com>
Fri, 13 Apr 2018 14:08:17 +0000 (11:08 -0300)
C11 atomics allow direct access. This check should prevent the usage
of bogus stdatomic.h available on some systems.

Signed-off-by: James Almer <jamrial@gmail.com>
configure

index c935d87b81dd71518f3056b67a338ac7c832192b..73857f4511b191e11814b97321a33b08d4750d63 100755 (executable)
--- a/configure
+++ b/configure
@@ -5825,7 +5825,7 @@ check_header asm/types.h
 # it seems there are versions of clang in some distros that try to use the
 # gcc headers, which explodes for stdatomic
 # so we also check that atomics actually work here
-check_builtin stdatomic stdatomic.h "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0)"
+check_builtin stdatomic stdatomic.h "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0); foo += bar"
 
 check_lib advapi32 "windows.h"            RegCloseKey          -ladvapi32
 check_lib ole32    "windows.h"            CoTaskMemFree        -lole32