SamyPesse / How-to-Make-a-Computer-Operating-System

How to Make a Computer Operating System in C++
https://samypesse.gitbook.io/how-to-create-an-operating-system
Apache License 2.0
21.34k stars 3.42k forks source link

"make run" fail #125

Closed yogeshbalan closed 7 years ago

yogeshbalan commented 7 years ago

Building Kernel make -C ./kernel make[1]: Entering directory '/home/yogesh/Development/How-to-Make-a-Computer-Operating-System/src/kernel' nasm -f elf -o -c arch/x86/start.asm -o arch/x86/start.o make[1]: nasm: Command not found Makefile:64: recipe for target 'arch/x86/start.o' failed make[1]: [arch/x86/start.o] Error 127 make[1]: Leaving directory '/home/yogesh/Development/How-to-Make-a-Computer-Operating-System/src/kernel' Makefile:10: recipe for target 'all' failed make: [all] Error 2

janisozaur commented 7 years ago

make[1]: nasm: Command not found

Coretool commented 7 years ago

Looks like you have to install nasm

yogeshbalan commented 7 years ago

Thanks @janisozaur and @Coretool