09 2020 档案

摘要:通过cd到指定路径,一般在~用户目录下就行了。这样,用户目录下的文件都能查看到。 然后运行 explorer.exe . 每次都要用命令行似乎很不方便。下面提供两种方法实现永久的快捷访问。 方法一: 直接在上面打开的路径下,返回目录的上一级,然后选中用户文件夹,鼠标右键,选择发送到桌面快捷方式。这样 阅读全文
posted @ 2020-09-21 14:15 duapple 阅读(49) 评论(0) 推荐(0) 编辑
摘要:在对应路径下执行: $ sudo autoreconf -ivf 阅读全文
posted @ 2020-09-14 11:29 duapple 阅读(22) 评论(0) 推荐(0) 编辑
摘要:解决:Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t= 将 $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_ 阅读全文
posted @ 2020-09-07 11:50 duapple 阅读(8) 评论(0) 推荐(0) 编辑
摘要:编译参数CFLAGS: -Os -ffunction-sections -fdata-sections (去掉-g参数,不启动调试) 链接参数LDFLAGS: -Wl,-Map=object.map,--cref,--gc-section 通过上述参数,会在编译和链接是对代码进行优化。 把没有用到的 阅读全文
posted @ 2020-09-03 15:59 duapple 阅读(61) 评论(0) 推荐(0) 编辑
摘要:通过Linux系统调用来完成这个操作,atexit( )和on_exit( )。 atexit( )函数原型: #include <stdlib.h> int atexit (void (*function)(void)); 示例: #include <stdlib.h> #include <std 阅读全文
posted @ 2020-09-03 13:31 duapple 阅读(16) 评论(0) 推荐(0) 编辑