上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页
摘要: https://stackoverflow.com/questions/15132185/mixing-c-and-assembly-sources-and-build-with-cmake enable_language(C ASM) in the Toolchain file you shoul 阅读全文
posted @ 2022-03-16 23:13 sinferwu 阅读(457) 评论(0) 推荐(0) 编辑
摘要: .a静态库文件实际上就是.o目标文件的集合 x[o] - extract file(s) from the archivear -x libxxx.a 提取目标文件 file add.o nm add.o CMake应用:合并静态库的最佳实践 - 知乎 (zhihu.com) ar crsT lib 阅读全文
posted @ 2022-03-15 14:59 sinferwu 阅读(979) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(401) 评论(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 阅读(2139) 评论(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 阅读(220) 评论(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 阅读(462) 评论(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 阅读(1148) 评论(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 阅读(199) 评论(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 阅读(43) 评论(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 阅读(588) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页