我从android的源码中提取了getevent.c getevent.h放在一个目录下, 进行jni编译测试

加了个Android.mkcctv5在线直播内容如下

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := GetEvent

LOCAL_SRC_FILES := getevent.c

include $(BUILD_SHARED_LIBRARY)


进入源码目录,手动编译:

ndk-build V=1 2>&1 | tee log.txt

查看log.txt

编译会出现一大堆错误:

/opt/android-ndk-r10d/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc -MMD -MP -MF ./obj/local/armeabi/objs/GetEvent/getevent.o.d -fpic -ffunction-sections -funwind-tables -fstack-protector -no-canonical-prefixes -march=armv5te -mtune=xscale -msoft-float -mthumb -Os -g -DNDEBUG -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64 -Ijni -DANDROID -Wa,--noexecstack -Wformat -I/opt/android-ndk-r10d/platforms/android-3/arch-arm/usr/include -c jni/getevent.c -o ./obj/local/armeabi/objs/GetEvent/getevent.o

In file included from jni/getevent.c:14:0:

jni/getevent.h:12:15: error: 'INPUT_PROP_POINTER' undeclared here (not in a function)

LABEL(INPUT_PROP_POINTER),

^

jni/getevent.h:8:38: note: in definition of macro 'LABEL'

#define LABEL(constant) { #constant, constant }

^

jni/getevent.h:13:15: error: 'INPUT_PROP_DIRECT' undeclared here (not in a function)

LABEL(INPUT_PROP_DIRECT),

^

jni/getevent.h:8:38: note: in definition of macro 'LABEL'

#define LABEL(constant) { #constant, constant }

^

jni/getevent.h:14:15: error: 'INPUT_PROP_BUTTONPAD' undeclared here (not in a function)

LABEL(INPUT_PROP_BUTTONPAD),

^

jni/getevent.h:8:38: note: in definition of macro 'LABEL'

#define LABEL(constant) { #constant, constant }

.................................


我用helper2416平台的交叉编译器单独编译getevent.c没有错误,所以问题肯定处在android的编译器上。

仔细查了下发现

/opt/android-ndk-r10d/platforms/android-3 目录下根本没有linux/input.h315直播头文件(getevent.h中需要这个文件头)

反而在/opt/android-ndk-r10d/platforms/android-21下有,所以想来是-I的目录错了。

手动执行编译命令:

/opt/android-ndk-r10d/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc -MMD -MP -MF ./obj/local/armeabi/objs/GetEvent/getevent.o.d -fpic -ffunction-sections -funwind-tables -fstack-protector -no-canonical-prefixes -march=armv5te -mtune=xscale -msoft-float -mthumb -Os -g -DNDEBUG -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64 -Ijni -DANDROID -Wa,--noexecstack -Wformat -I/opt/android-ndk-r10d/platforms/android-21/arch-arm/usr/include -c jni/getevent.c -o ./obj/local/armeabi/objs/GetEvent/getevent.o

编译成功,证实了自己的看法。

解决方法:

源码目录中 加上Application.mk文件

内容为

APP_PLATFORM := android-21


更多相关文章

  1. Android中,把XML文件转换成Object对象的方法
  2. Android常见错误
  3. Android 读取doc文件
  4. Android中通过资源文件获取drawable的几种方法
  5. android 源码下载、编译和测试
  6. android- activity,Application,activity渲染xml文件
  7. 日常get知识记录【9】Android studio 错误Could not find method
  8. Android [Camera 源码] 外接 USB 摄像头(External USB Cameras)

随机推荐

  1. Android属性gravity与layout_gravity的区
  2. 用PHP编写Android应用程序
  3. Android(安卓)Trick 7: 把TextView中的文
  4. Android消息机制浅析——面试总结
  5. 《Android移动应用基础教程》(Android(安
  6. Android内核开发:开发板选购
  7. Android(安卓)ADT插件配置
  8. 将要更新到android 4.0的手机列表
  9. Android调用WCF
  10. Android(安卓)滑动侧边栏(Sliding Menu)第