博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 73 下一页

2012年11月28日

摘要: Linux的nm查看动态和静态库中的符号 功能列出.o .a .so中的符号信息,包括诸如符号的值,符号类型及符号名称等。所谓符号,通常指定义出的函数,全局变量等等。使用nm [option(s)] [file(s)]有用的options:-A 在每个符号信息的前面打印所在对象文件名称;-C 输出demangle过了的符号名称;-D 打印动态符号;-l 使用对象文件中的调试信息打印出所在源文件及行号;-n 按照地址/符号值来排序;-u 打印出那些未定义的符号;常见的符号类型:A 该符号的值在今后的链接中将不再改变;B 该符号放在BSS段中,通常是那些未初始化的全... 阅读全文
posted @ 2012-11-28 17:00 Likwo 阅读(832) 评论(0) 推荐(0) 编辑

2012年11月23日

摘要: Android 减包相关LOCAL_CPPFLAGS := -Wno-sign-promo -Wno-missing-field-initializers -fvisibility=hidden -fvisibility-inlines-hidden如果函数不添加 __attribute__((visibility ("default")))其它依赖的文件,在link的时候会报错误 ,这也给减小so的输出函数提供了思路。 阅读全文
posted @ 2012-11-23 17:17 Likwo 阅读(369) 评论(0) 推荐(0) 编辑

2012年11月21日

摘要: chrome源码学习之知识体系指南 http://blog.csdn.net/ciml/article/details/5721153 阅读全文
posted @ 2012-11-21 15:50 Likwo 阅读(395) 评论(0) 推荐(0) 编辑

摘要: Blocked time includes any pre-processing time (such as cache lookup) and the time spent waiting for a network connection to become available. Internet Explorer will only create a maximum of two concurrent network connections per host name (i.e. www.microsoft.com) and will queue up requests unt... 阅读全文
posted @ 2012-11-21 10:33 Likwo 阅读(2759) 评论(0) 推荐(0) 编辑

2012年11月20日

摘要: error: Exited sync due to gc errors install git 1.8 and zhen repo init again from scratch.sudo apt-get install python-software-propertiessudo add-apt-repository ppa:git-core/ppasudo apt-get updatesudo apt-get install git 阅读全文
posted @ 2012-11-20 21:39 Likwo 阅读(1295) 评论(1) 推荐(1) 编辑

2012年11月18日

摘要: xcode不断进步,在xcode4中引入了ARC的概念。您用或者不用它就在那里,于是有了本文:如何在未使用arc的工程中引入一个使用了arc特性的文件,如何在arc工程中引用未使用arc的文件。其实说白了也很简单就是在”Compile Sources”中对相应的文件加入使用或者不使用arc的flagok,首选“Compile Sources”的位置:选中工程->TARGETS->相应的target然后选中右侧的“Build Phases”,向下就找到“Compile Sources”了。如何在未使用arc的工程中引入一个使用了arc特性的文件:对相应的文件添加:-fobjc-arc 阅读全文
posted @ 2012-11-18 21:47 Likwo 阅读(675) 评论(0) 推荐(0) 编辑

2012年11月6日

摘要: android webkit调试时打log的方法#define E_LOG(FORMAT,...) \ { __android_log_print(ANDROID_LOG_ERROR, "logTag", FORMAT, ##__VA_ARGS__); }显示函数名和行数 String func = String(String(__PRETTY_FUNCTION__) + ":" + String::number(__LINE__)); 阅读全文
posted @ 2012-11-06 16:07 Likwo 阅读(536) 评论(2) 推荐(0) 编辑

2012年11月5日

摘要: Adddominik's repository:sudo apt-add-repository ppa:dominik-stadler/subversion-1.7Updateapt:sudo apt-get updateInstallsubversion 1.7:sudo apt-get install subversionhttp://blog.jedf.com/2012/06/installing-subversion-17-on-ubuntu-1204.html 阅读全文
posted @ 2012-11-05 15:02 Likwo 阅读(2484) 评论(0) 推荐(0) 编辑

2012年10月29日

摘要: 添加文件/etc/udev/rules.d/51-android.rules内容如下SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", OWNER="plugdev" 阅读全文
posted @ 2012-10-29 19:20 Likwo 阅读(296) 评论(0) 推荐(0) 编辑

2012年10月18日

摘要: 浏览器性能分析通过tcpdump 获取tcp包后,可以查看通过这个工具查看各个网页的访问时间https://code.google.com/p/pcaphar/http://www.softwareishard.com/har/viewer/ 阅读全文
posted @ 2012-10-18 17:27 Likwo 阅读(330) 评论(0) 推荐(0) 编辑

上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 73 下一页