上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 我使用Vundle作为vim的插件包管理器,操作如下: Place this in your .vimrc or init.vim, Plugin 'iamcco/markdown-preview.nvim' ... then run the following in vim (to complet 阅读全文
posted @ 2022-12-06 21:12 绍荣 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 华为手机刷机教程 本文以刷麦芒5 MLA-AL10为例,其它华为手机,也可参考此方法进行刷机。 1.刷麦芒背景 目前所有的MLA-AL10都已unlock,即unlock the bootloader。unlock the bootloader,可获得root权限等高权限。 刷固件的前提是需要unl 阅读全文
posted @ 2022-04-22 14:15 绍荣 阅读(4712) 评论(0) 推荐(0) 编辑
摘要: 1编译链接库 -lz:压缩看(Z) -lrt: 实时库(real time):shm_open系列 -lm: 数学库(math) -lc: 标准C库(C lib) -dl: 显示加载动态库的动态函数库 2文件参数 -I ( i 的大写) :指定头文件路径(相对路径或绝对路径,建议相对路径) -i : 阅读全文
posted @ 2022-04-14 18:45 绍荣 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1 gprof 官网参考: https://ftp.gnu.org/old-gnu/Manuals/gprof-2.9.1/html_mono/gprof.html 使用方法参考: C/C++性能测试工具GNU gprof 以下内容转载来自C/C++性能测试工具GNU gprof , 仅稍微改动了源 阅读全文
posted @ 2022-04-13 15:50 绍荣 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1安装和测试 Now we can start adding install rules and testing support to our project. 1.1安装规则 install install用于指定在安装时运行的规则。它可以用来安装很多内容,可以包括目标二进制、动态库、静态库以及文 阅读全文
posted @ 2022-02-10 18:49 绍荣 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1添加库的使用规范 2具体脚本 2.1target_compile_definitions() 向工程中加入预处理定义 语法: target_compile_definitions(<target> <INTERFACE|PUBLIC|PRIVATE> [items1...] [<INTERFACE 阅读全文
posted @ 2022-02-10 14:20 绍荣 阅读(80) 评论(0) 推荐(1) 编辑
摘要: 参考 参考 1完整代码 |-step2 |--CMakeLists.txt |--tutorial.cxx |--MathFunctions |--CMakeLists.txt |--mysqrt.h |--mysqrt.cxx |--CMakeLists.txt cmake_minimum_req 阅读全文
posted @ 2022-02-10 12:22 绍荣 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1.history 语法: history(选项)(参数) 选项: N: 显示历史记录中最近的N个记录; -c:清空当前历史命令; -a:将历史命令缓冲区中命令写入历史命令文件中; -r:将历史命令文件中的命令读入当前历史命令缓冲区; -w:将当前历史命令缓冲区命令写入历史命令文件中; -d:删除历 阅读全文
posted @ 2022-02-07 15:00 绍荣 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 2022.2.7 - 2022.2.9 官网 参考1 参考2 1基本代码 在CMakeLists.txt中,填写如下代码: cmake_minimum_required(VERSION 3.10) # set the project name project(Tutorial) # add the 阅读全文
posted @ 2022-02-07 12:23 绍荣 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 当程序运行,提示 Segmentation fault (core dumped) 表明发生了崩溃。 通过gdb ./可运行程序,通过调试获得崩溃的地方, 通过backtrace获得函数调用栈帧, 再通过frame查看具体一层的栈信息, 再通过print查看该栈的具体定位的那一行, 再将该行的变量都 阅读全文
posted @ 2022-01-23 19:57 绍荣 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页