Write a simple bootstrap stub

This commit is contained in:
2026-08-25 17:24:39 +03:00
parent 706e5b0127
commit bdb7ada1ed
4 changed files with 48 additions and 1 deletions
+4 -1
View File
@@ -12,8 +12,11 @@ int main(int argc, char **argv) {
Nob_Cmd cmd = {0};
nob_cmd_append(&cmd, "cc", "-Wall", "-Wextra", "-o", BUILD_FOLDER "kernel", SRC_FOLDER "kernel.c");
nob_cmd_append(&cmd, "i686-elf-as", "-o", BUILD_FOLDER "boot.o", SRC_FOLDER "boot.s");
if (!nob_cmd_run(&cmd))
return 1;
nob_cmd_append(&cmd, "i686-elf-gcc", "-Wall", "-Wextra", "-o", BUILD_FOLDER "kernel", SRC_FOLDER "kernel.c");
if (!nob_cmd_run(&cmd))
return 1;