From cc2c76c8b22b79137ee509f379f5c9c577581c0f Mon Sep 17 00:00:00 2001 From: Emre Kultursay Date: Thu, 29 Jan 2026 10:27:29 -0800 Subject: [PATCH] Raise the vectorization #if to NDK r30 It seems vectorization is still not there in r30. --- vectorization/src/main/cpp/benchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectorization/src/main/cpp/benchmark.cpp b/vectorization/src/main/cpp/benchmark.cpp index c7dfc1cbf..770a03219 100644 --- a/vectorization/src/main/cpp/benchmark.cpp +++ b/vectorization/src/main/cpp/benchmark.cpp @@ -86,7 +86,7 @@ BenchmarkMatrixMultiplication(Backend backend) { return MultiplyWithAutoVectorization(t, p); }); case Backend::kCxxSimd: -#if __NDK_MAJOR__ >= 29 +#if __NDK_MAJOR__ >= 31 #error check if std::simd works yet #endif // The libc++ in NDK r27 has only a skeleton implementation of std::simd.