alcedo/nakefile.nim

65 lines
2.1 KiB
Nim
Raw Normal View History

import nake
import os, osproc, strutils
let
standardOptions = """--skipCfg -d:version:"""" & execProcess("git rev-parse HEAD").strip() & """" kernel.nim"""
2018-05-01 20:11:14 +01:00
outputFile = "alcedo.bin"
outputIso = "alcedo.iso"
task "clean", "Removes build files.":
removeFile("boot.o")
removeFile("serial.log")
2018-05-01 20:11:14 +01:00
removeDir("kernel/nimcache")
removeDir("isodir")
removeFile(outputFile)
2018-05-01 20:11:14 +01:00
removeFile(outputIso)
echo "Done."
task "bootloader", "Builds the bootloader.":
echo "Building bootloader."
2018-05-01 20:11:14 +01:00
direShell("nasm -felf32 kernel/arch/i386/boot.s -o boot.o")
echo "Done."
task "build", "Builds the operating system.":
runTask("clean")
runTask("bootloader")
echo "Compiling and linking."
withDir("kernel"):
2018-05-01 20:11:14 +01:00
direShell("nim cc -o:../" & outputFile, standardOptions)
runTask("check-multiboot")
echo "Done."
task "build-release", "Builds the operating system, release mode.":
runTask("clean")
runTask("bootloader")
echo "Compiling and linking (release mode)."
withDir("kernel"):
2018-05-01 20:11:14 +01:00
direShell("nim cc -d:release -o:../" & outputFile, standardOptions)
runTask("check-multiboot")
echo "Done."
2018-05-01 20:11:14 +01:00
task "check-multiboot", "Checks the grub multiboot header.":
echo "Checking multiboot."
2018-05-01 20:11:14 +01:00
direShell("grub-file --is-x86-multiboot", outputFile)
echo "Multibook check successful."
2018-05-01 20:11:14 +01:00
task "build-disc", "Creates an ISO with the GRUB bootloader.":
removeDir("isodir")
createDir("isodir/boot/grub")
copyFile(outputFile, "isodir/boot/kernel")
2018-05-01 20:11:14 +01:00
copyFile("grub.cfg", "isodir/boot/grub/grub.cfg")
if not shell("grub-mkrescue -o ", outputIso, " isodir"):
direShell("grub2-mkrescue -o ", outputIso, " isodir")
task "debug", "Runs the operating system using QEMU with debug build and flags.":
runTask("build")
2018-05-01 20:11:14 +01:00
runTask("build-disc")
echo "Running in Qemu."
2018-05-01 20:11:14 +01:00
direShell("qemu-system-i386 -drive format=raw,file=" & outputIso ,"-serial stdio -no-reboot -no-shutdown -d int,cpu_reset")
task "run", "Runs the operating system using QEMU.":
runTask("build-release")
2018-05-01 20:11:14 +01:00
runTask("build-disc")
echo "Running in Qemu."
2018-05-01 20:11:14 +01:00
direShell("qemu-system-i386 -drive format=raw,file=" & outputIso ,"-serial stdio")