首页 > 系统服务 > 详细

Eclipse之NDK编译——常见错误的解决方法记录

时间:2015-02-05 15:05:47      阅读:6838      评论:0      收藏:0      [点我收藏+]

在工程目录下的jni文件夹下编写的c/c++代码在编译时,通常会遇到如下的几种类型错误:

1、Unresolved inclusion:<XXX>

2、syntax error

3、Function ‘XXX‘ could not be resolved

4、Type ‘XXX‘ could not be resolved

5、Symbol ‘XXX‘ could not be resolved

6、Method ‘XXX‘ could not be resolved

7、Invalid arguments ‘Candidates are: ...‘


错误原因:

大多数情况是因为相关头文件没有加入导致,也有一些是因为一些参数无效导致的(当然无效参数也可能是因为头文件未加入,见下述)。


相关错误解决方法——添加头文件:

错误内容一:

    1、Unresolved inclusion: <jni.h>、Unresolved inclusion: <stdio.h>、Unresolved inclusion: <malloc.h>、Unresolved inclusion: <android/log.h>、...

    2、Function ‘__android_log_print‘ could not be resolved、Type ‘JNIEnv‘ could not be resolved、Type ‘jstring‘ could not be resolved、Type ‘jclass‘ could not be  resolved、Function ‘malloc‘ could not be resolved、Function ‘memcpy‘ could not be resolved、Method ‘FindClass‘ could not be resolved、Type ‘jsize‘ could not be  resolved、Symbol ‘NULL‘ could not be resolved、...

解决方法:

    右击项目 --> Properties --> 左侧C/C++ General --> Paths and Symbols --> 右侧Includes --> GNU C++(.cpp) --> Add

                                                                                                                                                                 | __>GNU C(.c)        __|

${NDKROOT}\platforms\android-18\arch-arm\usr\include

错误内容二:

    1、Unresolved inclusion: <iostream>、Unresolved inclusion: <fstream>、Symbol ‘std‘ could not be resolved、..

    2、Type ‘fstream‘ could not be resolved、Symbol ‘in‘ could not be resolved、Method ‘seekg‘ could not be resolved、Method ‘read‘ could not be resolved、...

解决方法:

    添加路径(步骤见上述解决方法):

${NDKROOT}\sources\cxx-stl\gnu-libstdc++\4.8\include 、${NDKROOT}\sources\cxx-stl\gnu-libstdc++\4.8\libs\armeabi\include

错误内容三:

    Invalid arguments ‘Candidates are:void * malloc(?)‘、Invalid arguments ‘Candidates are:void * memcpy(void *, const void *, ?)‘

解决方法:

    添加路径(步骤见上述解决方法):

${NDKROOT}\toolchains\arm-linux-androideabi-4.8\prebuilt\windows\lib\gcc\arm-linux-androideabi\4.8\include


相关错误解决方法——符号替换:

有时编译时会遇到这样的错误提示:Invalid arguments ‘Candidates are:std::basic_istream<char,std::char_traits<char>> & read(char *, ?)‘,尽管我们添加了相应的头文件,但仍然有无效参数这样的错误,错误提示中的‘?’表示无效参数。

碰到这类错误,可以索引到对应函数(ctrl+点击该函数)read,查看函数定义中的参数类型,此函数索引到的头文件中的参数类型为streamsize,但使用时用到的long。

解决方法:

右击项目 --> Properties --> 左侧C/C++ General --> Paths and Symbols --> 右侧Symbols --> GNU C++(.cpp) --> Add

                                                                                                                                                              | __>GNU C(.c)        __|

Name的值:streamsize,Value的值:long

添加完成后,点击确定后,错误消失。

Eclipse之NDK编译——常见错误的解决方法记录

原文:http://blog.csdn.net/ysuiboli/article/details/43526887

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!