Switch Android.mk to use --std=c++17

This commit is contained in:
Arcady Goldmints-Orlov 2023-05-19 16:46:25 -06:00 committed by arcady-lunarg
parent 4c9cc240e6
commit e06bd35fea
2 changed files with 6 additions and 6 deletions

View file

@ -38,7 +38,7 @@ LOCAL_CPP_EXTENSION := .cc .cpp .cxx
LOCAL_SRC_FILES:=test.cpp
LOCAL_MODULE:=glslang_ndk_test
LOCAL_LDLIBS:=-landroid
LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
LOCAL_CXXFLAGS:=-std=c++17 -fno-exceptions -fno-rtti -Werror
LOCAL_STATIC_LIBRARIES:=glslang SPIRV HLSL
include $(BUILD_SHARED_LIBRARY)