0

我尝试使用 STL 但它说string: no such file or directory

应用程序.mk

APP_STL := stlport_static
LOCAL_CPPFLAGS := -std=c++11 

安卓.mk

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
APP_ABI:=all
LOCAL_MODULE    := hello-jni
LOCAL_SRC_FILES := hello-jni.c
include    $(BUILD_SHARED_LIBRARY)
4

1 回答 1

0

如果您不想弄乱行为,可以将源文件重命名hello-jni.c为。hello-jni.cppgcc

应用程序.mk

APP_STL := stlport_static
APP_CPPFLAGS := -std=c++11
APP_ABI := all
于 2015-04-19T10:32:39.633 回答