qword
1.0.0

对此很抱歉。
请不要针对这个已停产的项目发送PRS或公开问题,该项目将不再更新。
您可以自由查看代码,分叉,只要尊重许可证(许可证)。
顾名思义,这只是内核。要构建整个系统,请遵循https://github.com/qword-os/build的说明。
这些是构建所需的工具:
git (仅用于初始下载)。bash 。make 。gcc ,8或更高。nasm 。objcopy 。qemu (对其进行测试)。clang (测试它)。llvm (对其进行测试)。 # Clone repo wherever you like and enter.
git clone https://github.com/qword-os/qword.git
cd qword
# Make the kernel, you can replace the 4 in -j4 with your number of cores + 1.
make clean && make -j4
# Install in PREFIX, may need root permissions depending on the place.
sudo make install PREFIX=..
# Uninstall if needed in the specified PREFIX.
sudo make uninstall PREFIX=..