SQLite Forum

java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "__atomic_store_4"
Login
For now I rollback to 3.31.1

I know for sure this works on NDK20, my previous release was NDK20/3.31.1:
#if GCC_VESRION>=5004000
# define AtomicLoad(PTR)       __atomic_load_n((PTR),__ATOMIC_RELAXED)
# define AtomicStore(PTR,VAL)  __atomic_store_n((PTR),(VAL),__ATOMIC_RELAXED)
#else
# define AtomicLoad(PTR)       (*(PTR))
# define AtomicStore(PTR,VAL)  (*(PTR) = (VAL))
#endif

I know for sure this works on all platforms I am using including armv7,arm64 android