Android ndk-build iostream: No such file or directory

后端 未结 5 1052
难免孤独
难免孤独 2020-12-05 22:40

I\'m having problem with compiling cpp file using ndk-build tool (windows 7 with cygwin) Error appears when I try to compile cpp file with #include:

jni/nati         


        
5条回答
  •  鱼传尺愫
    2020-12-05 23:29

    Just spent days to update my NDK from r10e to r20, there're several variables are changed.

    For NDK r10e

    Android.mk:

    include $(CLEAR_VARS)
    LOCAL_MODULE := main
    LOCAL_SRC_FILES := ./main.cpp   
    LOCAL_C_INCLUDES += $(LOCAL_PATH)/
    LOCAL_CPP_EXTENSION := .cxx .cpp .cc
    LOCAL_CPPFLAGS := -fexceptions -frtti
    LOCAL_CPPFLAGS += -std=c++11 -D__cplusplus=201103L
    include $(BUILD_EXECUTABLE)
    

    Application.mk:

    APP_ABI := all
    APP_STL := gnustl_static
    NDK_TOOLCHAIN_VERSION := 4.9
    APP_OPTIM := debug
    

    For NDK r20

    Android.mk:

    include $(CLEAR_VARS)
    LOCAL_MODULE := main
    LOCAL_SRC_FILES := ./main.cpp   
    LOCAL_C_INCLUDES += $(LOCAL_PATH)/
    LOCAL_CPP_EXTENSION := .cxx .cpp .cc
    LOCAL_CPPFLAGS := -fexceptions -frtti
    LOCAL_CPPFLAGS += -std=c++11 -D__cplusplus=201103L -DANDROID_STL=c++_shared
    include $(BUILD_EXECUTABLE)
    

    Application.mk:

    APP_ABI := all
    #In general, you can only use a static variant of the C++ runtime if you have one and only one shared library in your application.
    APP_STL := c++_static
    NDK_TOOLCHAIN_VERSION := clang
    APP_PLATFORM := android-23
    APP_OPTIM := debug
    

    and my main.cpp (including my bin_node.h):

    int main(int argc,char **argv) {   
    printf("****************** tree node ******************\n");
    amo::BinNode root(0);
    amo::BinNode* lchild1 = root.insertLeftChild(1);
    amo::BinNode* rchild2 = root.insertRightChild(2);
    amo::BinNode* lchild3 = lchild1->insertLeftChild(3);
    amo::BinNode* rchild4 = lchild1->insertRightChild(4);
    amo::BinNode* lchild5 = rchild2->insertLeftChild(5);
    amo::BinNode* rchild6 = rchild2->insertRightChild(6);
    amo::BinNode* lchild7 = lchild3->insertLeftChild(7);
    amo::BinNode* rchild8 = lchild3->insertRightChild(8);
    amo::BinNode* lchild9 = rchild6->insertLeftChild(9);
    amo::BinNode* rchild10 = rchild6->insertRightChild(10);
    amo::BinNode* lchild11 = rchild8->insertLeftChild(11);
    amo::BinNode* rchild12 = rchild8->insertRightChild(12);
    
    printf("going to root.traversePre()\n");
    root.traversePre();
    printf("going to root.traversePreLoop()\n");
    root.traversePreLoop();
    printf("going to root.traversePreLoop2()\n");
    root.traversePreLoop2();
    printf("\n****************** main return ******************\n");
    return 0;}
    

    Run ndk-build and build an executable file

    For more source code and information for this, check my GitHub

提交回复
热议问题