From df335887f0d8ad959c911e0c408f00b233c2df98 Mon Sep 17 00:00:00 2001 From: scarf Date: Wed, 29 Mar 2023 15:19:36 +0900 Subject: [PATCH] build: add c++20 flag to `Android.mk` --- android/app/jni/Application.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/jni/Application.mk b/android/app/jni/Application.mk index 4001bc2c51d7..52f8f062ab40 100644 --- a/android/app/jni/Application.mk +++ b/android/app/jni/Application.mk @@ -2,7 +2,7 @@ # See CPLUSPLUS-SUPPORT.html in the NDK documentation for more information APP_STL := c++_shared -APP_CPPFLAGS += -std=c++17 +APP_CPPFLAGS += -std=c++20 ifneq ($(OS),Windows_NT) APP_LDFLAGS += -fuse-ld=gold endif