18.4 Android 下原生Linux驱动测试
【摘要】
18.4 Android 下原生Linux驱动测试
18.4.1 Android设备运行C语言程序
C语言源代码:
1 #include <stdio.h> 2 int main(int argc,char ** argv) 3 { 4 printf("hello world!\n"); 5 retu...
18.4 Android 下原生Linux驱动测试
18.4.1 Android设备运行C语言程序
C语言源代码:
-
1 #include <stdio.h>
-
2 int main(int argc,char ** argv)
-
3 {
-
4 printf("hello world!\n");
-
5 return 0;
-
6 }
编译C语言源码:编译的时候加上-static静态选项
root@xl:/test# arm-linux-gcc -static hello.c -o hello
传输编译好的文件到Android设备:
-
root@xl:/# adb push /test/hello /
-
896 KB/s (607564 bytes in 0.661s)
运行测试:
文章来源: xiaolong.blog.csdn.net,作者:DS小龙哥,版权归原作者所有,如需转载,请联系作者。
原文链接:xiaolong.blog.csdn.net/article/details/120975523
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)