博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
I.MX6 Android stlport 使用
阅读量:5892 次
发布时间:2019-06-19

本文共 1487 字,大约阅读时间需要 4 分钟。

/****************************************************************** *                  I.MX6 Android stlport 使用 * 说明: *     在移植JNI过程中使用了C++ stlport lib,而在Android源码中编译 * 和在NDK中使用,其配置方式是不一样。 * *                                2016-8-11 深圳 南山平山村 曾剑锋 *****************************************************************/一、参考文档:    1. C++ Library Support        https://developer.android.com/ndk/guides/cpp-support.html    2. Import STL libraries to the Android NDK code        http://www.41post.com/3527/programming/import-stl-libraries-to-android-ndk-code    3. Android NDK 'std::string' has not been declared        https://www.douban.com/note/261241949/    4. 关于Android NDK如何成功调用stl的使用分析        http://blog.csdn.net/fantasyhujian/article/details/8564198    5. Using the STL with Android NDK C++ [closed]        http://stackoverflow.com/questions/9458208/using-the-stl-with-android-ndk-c二、error:    fatal error: string: No such file or directory三、Android Source Code JNI compiler:    cat jni/Android.mk:        LOCAL_PATH := $(call my-dir)        include $(CLEAR_VARS)        LOCAL_MODULE    := libCanSocket        LOCAL_SRC_FILES := CanSocket.cpp        LOCAL_LDLIBS    := -llog        LOCAL_C_INCLUDES := ndk/sources/cxx-stl/stlport/stlport        LOCAL_STATIC_LIBRARIES += libstlport_static        include $(BUILD_SHARED_LIBRARY)四、NDK JNI compiler:    cat Application.mk        APP_STL := stlport_static        APP_PLATFORM := android-9

 

转载于:https://www.cnblogs.com/zengjfgit/p/5760638.html

你可能感兴趣的文章
构建 iOS 界面:子类化 Views
查看>>
笨办法学C 练习1:启用编译器
查看>>
用Golang写一个搜索引擎(0x01)--- 基本概念
查看>>
【算法之美】logn 时间复杂度求解两个有序数组的中位数
查看>>
树的总结--树的性质(树的深度) leetcode
查看>>
docker环境搭建ELK
查看>>
webpack sourcemap 选项多种模式的一些解释
查看>>
document.createElement()的用法
查看>>
MySQL 数据库怎样把一个表的数据插入到另一个表
查看>>
HTTP协议及其POST与GET操作差异 & C#中如何使用POST、GET等
查看>>
nginx正则笔记
查看>>
delphi实现数字的倒计时
查看>>
在 IIS 下添加 FLV 类型文件的支持
查看>>
java线程学习3——线程的停止
查看>>
穿过任意防火墙NAT的远程控制软件TeamViewer
查看>>
PIX防火墙基本特性:失效处理机制和冗余-原理与实验
查看>>
域环境内部署Bginfo来统计用户计算机信息
查看>>
nagios短信报警(飞信fetion20080522004-linrh4)
查看>>
【Android游戏开发之六】在SurfaceView中添加组件!!!!并且相互交互数据!!!!...
查看>>
创建实体类使用Hibernate
查看>>