This commit is contained in:
2025-06-02 18:03:03 +02:00
parent 89d54dfc81
commit 656bf7fb4f
14 changed files with 76 additions and 42 deletions

View File

@@ -50,7 +50,7 @@ fn compile_file(path: String) -> Result<(), ZernError> {
}
if !Command::new("nasm")
.args(["-f", "elf64", "-o", "out.o", "out.s"])
.args(["-f", "elf64", "-w+all", "-o", "out.o", "out.s"])
.status()
.unwrap()
.success()