问题描述
- 使用Android源码编译c模块生成可执行文件 5C
使用的是海思的SDK,这个应该跟Android的编译环境差不多吧。
各位大侠 我的问题是这样的
写了个helloworld的测试程序,是可以编译成可执行程序然后在机器上运行打印出来的。
但是呢,在编译模块的时候遇到问题了。
按照之前的方式,在development下创建一个文件夹moudle,然后把所有需要的.c .h .so文件都搬了过来,写了个Android.mk,但是呢 在里面添加一句LOCAL_SHARED_LIBRARIES += libcrypto libcurl 之后就报make: *** No rule to make targetout/target/product/Hi3798MV100/obj/SHARED_LIBRARIES/libcurl_intermediates/export_includes' needed by
out/target/product/Hi3798MV100/obj/SHARED_LIBRARIES/wifiAudit_intermediates/import_includes'. Stop.
make: Leaving directory `/home/zhanglf/android/customer/60/cn/software/his60'
这样的错误 是为什么呢
请赐教,qq 309858937
解决方案
解决方案二:
make: *** No rule to make target out/target/product/Hi3798MV100/obj/SHARED_LIBRARIES/libcurl_intermediates/export_includes' needed byout/target/product/Hi3798MV100/obj/SHARED_LIBRARIES/wifiAudit_intermediates/import_includes'.
make 依赖项或者说是依赖项条件找不到;
http://blog.csdn.net/huhao_bupt/article/details/4743296
时间: 2024-11-01 12:59:21