C++ Kompiliererungs-Fehler?
Hallo,
Bei der Kompilierung meines Allerneusten Projektes, wird mir leider Folgender Fehler ausgegeben (Es gibt noch mehr, die sind aber nur Folgefehler):
i386-elf-g++: error: spawn: No such file or directory
Dabei sieht meine build. Datei so aus:
nasm src/graphics/func.asm -o bin/g_func.o
nasm src/LowLevel/func.asm -o bin/l_func.o
i386-elf-g++ -ffreestanding -c src/kernel.c bin/g_func.o bin/l_func.o -o bin/kernel.o
nasm src/boot/entry.asm -f elf -o bin/kernel_entry.o
i386-elf-ld -o bin/kernel.bin -Ttext 0x1000 bin/kernel_entry.o bin/kernel.o --oformat binary
nasm src/boot/bootsect.asm -f bin -o bin/bootsect.bin
cat bin/bootsect.bin bin/kernel.bin > OS_image.bin
Wisst ihr wodran das liegt, ich habe alle Pfade richtig angegeben und der Compilier hat auch die Benötigten Berechtigungen.
Danke für eine Antwort
TheCPP
Maybe the rights and owners of the file are not correct. And note relative and absolute paths.