libretro: jni: Switch stl to c++ in preparation for ndk r20

Also disable narrowing errors. This needs properly fixed later.
This commit is contained in:
Aaron Kling 2019-05-24 13:05:47 -05:00
parent 9fa18a0472
commit 7b28ca8b40
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ HAVE_NETWORK := 1
include $(ROOT_DIR)/Makefile.common
COREFLAGS := -DINLINE=inline -DHAVE_STDINT_H -DHAVE_INTTYPES_H -D__LIBRETRO__ -DVIDEO_RGB565
COREFLAGS := -DINLINE=inline -DHAVE_STDINT_H -DHAVE_INTTYPES_H -D__LIBRETRO__ -DVIDEO_RGB565 -Wno-c++11-narrowing
ifeq ($(HAVE_NETWORK),1)
COREFLAGS += -DHAVE_NETWORK

View File

@ -1,2 +1,2 @@
APP_STL := gnustl_static
APP_STL := c++_static
APP_ABI := all