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=..