上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页
摘要: https://www.jianshu.com/p/598f18ca6963 下面的链接是通过抓包文件得到的,zeal在请求文档列表时的json数据。 http://api.zealdocs.org/v1/docsets 从Zeal的Tools > Available 里面找到自己要下载的文件的ti 阅读全文
posted @ 2022-03-11 11:36 sinferwu 阅读(450) 评论(0) 推荐(0)
摘要: VS CODE 查看内存 MemoryView - Visual Studio Marketplace 第一步:Add new memory view... 第二步:输入变量地址 &array 第三步:需要手动刷新内存 1、在程序中增加dump函数,如下 2、VScode的监视(WATCH)窗口,是 阅读全文
posted @ 2022-02-21 17:40 sinferwu 阅读(3278) 评论(0) 推荐(0)
摘要: ${CC} $(INC) -E demo.c > demo.i ${CC} $(INC) -E -P demo.c > demo.i ${CC} $(INC) -E demo.c | sed '/^\#/d' | indent -st -i2 > demo-e.c ${CC} $(INC) -E - 阅读全文
posted @ 2022-01-19 13:15 sinferwu 阅读(275) 评论(0) 推荐(0)
摘要: find_program(CCACHE_PROGRAM ccache) if(CCACHE_PROGRAM) message(STATUS "Set up ccache ...") #set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE 阅读全文
posted @ 2021-11-04 12:23 sinferwu 阅读(874) 评论(0) 推荐(0)
摘要: Windows应用商店 程序下载 https://store.rg-adguard.net/ Windows 10 WSL2 https://blog.csdn.net/Mancuojie/article/details/120074919 https://ohmyposh.dev/ https:/ 阅读全文
posted @ 2021-10-21 13:29 sinferwu 阅读(1247) 评论(0) 推荐(0)
摘要: VS CODE 字体异常 https://github.com/romkatv/powerlevel10k/issues/671 https://github.com/romkatv/powerlevel10k/blob/master/font.md Visual Studio Code: Open 阅读全文
posted @ 2021-10-05 14:58 sinferwu 阅读(312) 评论(0) 推荐(0)
摘要: dnf install -y python36-devel PYTHON3_NUMPY_INCLUDE_DIRS /usr/local/lib64/python3.6/site-packages/numpy/core/include ~/.local/lib/python3.6/site-packa 阅读全文
posted @ 2021-10-03 22:08 sinferwu 阅读(57) 评论(0) 推荐(0)
摘要: The Remote Debug configuration | CLion Documentation (jetbrains.com) https://github.com/microsoft/vscode-cpptools/issues/5415 https://rob-blackbourn.g 阅读全文
posted @ 2021-09-29 16:24 sinferwu 阅读(637) 评论(0) 推荐(0)
摘要: 特别注意:debug时候,CFLAGS AFLAGS 一定要加入 -g 参数。 CFLAGS += -O0 -gdwarf-2 AFLAGS += -gdwarf-2 VS Code中加入汇编断点: 在右侧 Run and Debug窗口的BREAKPOINTS,加入汇编的lable,如_boot、 阅读全文
posted @ 2021-09-26 11:29 sinferwu 阅读(2028) 评论(0) 推荐(0)
摘要: ARRAY_SIZE() #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) Macro to compute the size of the static array arr . Parameters arr static array ALIG 阅读全文
posted @ 2021-08-24 11:08 sinferwu 阅读(109) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页