上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: 编译链 -e debug程序 [pc寄存器地址] 阅读全文
posted @ 2022-12-07 16:24 墨尔基阿德斯 阅读(20) 评论(0) 推荐(0)
摘要: readelf命令,一般用于查看ELF格式的文件信息,常见的文件如在Linux上的可执行文件,动态库(*.so)或者静态库(*.a) 等包含ELF格式的文件。以下命令的使用是基于android编译出来的so文件上面去运行。 https://blog.csdn.net/yfldyxl/article/ 阅读全文
posted @ 2022-12-07 16:22 墨尔基阿德斯 阅读(29) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/zhaitianbao/article/details/120971301 阅读全文
posted @ 2022-12-05 18:33 墨尔基阿德斯 阅读(44) 评论(0) 推荐(0)
摘要: 前言: 今天遇到一个问题,在makefile中定义个宏,宏为一个字符串,希望将该字符串传递给代码。但是一直传递不过去,最后才找到原因,这里小结一下。 直接上代码,makefile 如下: 1 C_FLAGS := -DTEST_MACRO_HEHE="abcd1234" 2 3 test: test 阅读全文
posted @ 2022-12-03 14:13 墨尔基阿德斯 阅读(648) 评论(0) 推荐(1)
摘要: https://www.zhihu.com/question/421214887 1 void test(int); 2 int main(void){ 3 void (*fp)(int); 4 fp=test; 5 (*fp)(9); 6 7 fp(9); 8 return 0; 9 } 10 v 阅读全文
posted @ 2022-12-02 10:31 墨尔基阿德斯 阅读(174) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/still-smile/p/12092186.html 阅读全文
posted @ 2022-12-02 10:04 墨尔基阿德斯 阅读(11) 评论(0) 推荐(0)
摘要: 概述 — 跟我一起写Makefile 1.0 文档 (seisman.github.io) Makefile中的include命令详解 - colabean - 博客园 (cnblogs.com) 阅读全文
posted @ 2022-12-02 10:04 墨尔基阿德斯 阅读(33) 评论(0) 推荐(0)
摘要: https://cloud.tencent.com/developer/article/1703257 https://cloud.tencent.com/developer/article/2045107?from=article.detail.1703257 阅读全文
posted @ 2022-12-02 10:03 墨尔基阿德斯 阅读(12) 评论(0) 推荐(0)
摘要: 获取系统当前时间 在调试、日志输出、代码优化时,我们常常需要获得系统的时间。在一些性能要求高的代码优化时,对时间的精确度还比较高。在网上找不高质量的代码,便自己研究了一下,代码如下(能满足跨平台的要求,单位精确到微秒): 1 #ifdef _WIN32 2 #include <windows.h> 阅读全文
posted @ 2022-11-28 15:11 墨尔基阿德斯 阅读(118) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/jiu0821/p/6424951.html 阅读全文
posted @ 2022-11-27 21:49 墨尔基阿德斯 阅读(13) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页