
::开发平台和工具问题
文章平均质量分 77
wpc320
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
#4.7.2的gcc的针对libstdc++的configure翻译
ConfigureWhen configuring libstdc++, you'll have to configure the entire gccsrcdir directory. Consider using the toplevel gcc configuration option--enable-languages=c++, which saves time by only翻译 2013-02-04 16:15:28 · 4588 阅读 · 0 评论 -
#gcc4.7.2编译以支持c++11标准,解决not a member问题
参考http://blog.youkuaiyun.com/cssmhyl/article/details/8114386编译4.7.2,对原作者表示感谢。使用g++4.7.2熟悉c++11,遇到下面问题。。'thread' isnotamemberof 'std'yield' is not a member of 'std::this_thread'sleep_for’ is not a原创 2013-01-31 14:44:28 · 11044 阅读 · 0 评论 -
#android-ndk-r8d 使用 独立 编译 工具链 官方文档 中文版
使用ANDROID作为一个独立的编译器工具链======================================================该文档解释了如何做:1/选择你的工具链:----------------------------做任何东西之前,你需要决定是否你的独立的工具链是基于arm的设备,基于x86的,或基于mips的哪一个。每个架构对应一个不同的工原创 2013-01-30 10:57:47 · 4168 阅读 · 0 评论 -
#android-ndk-r8d 使用 独立 编译 工具链 官方文档 中英文 对照
USING THE ANDROID TOOLCHAIN AS A STANDALONE COMPILER使用ANDROID作为一个独立的编译器工具链======================================================It is now possible to use the toolchains provided with the Android原创 2013-01-30 10:45:35 · 5981 阅读 · 0 评论 -
#nm 命令 列出目标文件的符号清单
nm 命令linux中,nm用来列出目标文件的符号清单。下面是nm命令的格式: nm [-a|--debug-syms] [-g|--extern-only] [-B][-C|--demangle] [-D|--dynamic] [-s|--print-armap][-o|--print-file-name] [-n|--numeric-sort][-p|--no-sort] [-r|--转载 2013-01-23 10:14:54 · 3280 阅读 · 0 评论 -
#linux 打包 静态库
有几个.a的静态库,想打成一个用先解包成o文件ar x libaaa.aar x libbbb.aar rcs libccc.a *.oar 命令用途维护链接编辑器使用的索引库。语法ar [ -c ] [ -l ] [ -g | -o ] [ -s ] [ -v ] [ -C ] [ -T ] [ -z ] { -h | -p | -t | -x }转载 2013-01-22 20:29:01 · 5958 阅读 · 0 评论 -
windows 和 linux 清理 临时 文件 的脚本
工程需要打包但是仅仅使用解决方案的右键-》清理,是无法干净的。使用这个脚本即可瞬间干净,无用的文件夹可以手动删除。复制粘贴为clean.bat文件,复制到工程根目录,双击执行即可,很容易看懂,可以自己手动增减文件类型。linux下要chmod 777 clean.bat ::DOS自动运行下面的::vs产生的临时文件del /s /f /q *.objdel /s原创 2013-01-20 20:16:27 · 2723 阅读 · 0 评论 -
#android-ndk-r8d 独立编译工具链的制作和安装
本系统是CentOS6.3 x86_64,其它linux也可以。以root登录,其它账户也可,只要有某些目录的读写权限即可。1、官网下载解包android-ndk-r8d到某目录,终端进入该目录。2、生成独立工具链先确定目标android版本,和android api level有如下对应关系: android-3 -> Official Android 1.5原创 2013-01-30 13:16:39 · 4664 阅读 · 0 评论 -
VS2012配置astyle格式化代码
1、工具-》扩展和更新,搜astyle插件,下载安装重启,当前是2.0版本。2、工具-》选项-》AStyle Formatter-》Edit,填入下面的,点击save,确定。--style=allman --indent=spaces=4 --indent-switches --indent-cases --break-blocks=all --pad-oper --delete-empt原创 2013-07-15 15:44:10 · 8741 阅读 · 1 评论