2022年7月6日
| 作者: Witton Bell
| 1333 字
| 3 分钟
前文 《C语言使用MinGW中的GCC生成平面(flat)二进制文件》中有介绍MinGW中使用GCC生成编写操作系统内核所 ……
阅读全文
2022年6月30日
| 作者: Witton Bell
| 1257 字
| 3 分钟
最近抽空在看自制操作系统相关的书籍,比如《自己动手写操作系统》、《Orange’S:一个操作系统的实现》、《一个64位操 ……
阅读全文
2021年9月25日
| 作者: Witton Bell
| 776 字
| 2 分钟
MinGW下的vim在默认情况下会与Linux下的vim不太一样,比如MinGW中默认的vim配置,退格键(backsp ……
阅读全文
2021年8月25日
| 作者: Witton Bell
| 270 字
| 1 分钟
今天使用pacman -Syuu升级了一下msys2的MinGW64,结果出现了Python不能正常使用的情况,升级之前都 ……
阅读全文
2020年10月29日
| 作者: Witton Bell
| 75 字
| 1 分钟
在使用pip进行软件包安装的时候出现问题: 1WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 解决: 1mkdir -p ~/.pip 2vim ~/.pip/pip.conf 然后输入内容: 1[global] 2index-url = http://mirrors.aliyun.com/pypi/simple/ 3 4[install] ……
阅读全文
2020年8月28日
| 作者: Witton Bell
| 1679 字
| 4 分钟
我们在*nix或者Mac系统中做开发会经常使用Makefile来组织构建规则,然后使用make来构建项目。 Makefil ……
阅读全文
2020年8月27日
| 作者: Witton Bell
| 670 字
| 2 分钟
我们在msys2中使用pacman安装的GCC默认是不能显示中文帮助的 而Linux下是可以显示中文的: 这是因为在编译ms ……
阅读全文
2020年8月22日
| 作者: Witton Bell
| 1235 字
| 3 分钟
文章目录 一、Windows下的msys2 bash 二、Mac Bash 一、Windows下的msys2 bash 如果我们安装了git for windo ……
阅读全文
2020年8月21日
| 作者: Witton Bell
| 758 字
| 2 分钟
文章目录 一、.dll生成导入库.a或者.lib 二、静态lib库转dll库 一、.dll生成导入库.a或者.lib 在使用Mi ……
阅读全文