Okay so I have no idea what I am doing wrong. I am doing ARM assembly from this site - http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/ok01.html - so to compile the code I have to add a folder to my path(Can't remember what the exact code is), cd into the required folder, and I type make in the terminal and I get this error -
arm-none-eabi-as -I source/ source/main.s -o build/main.o
make: arm-none-eabi-as: Command not found
make: *** [build/main.o] Error 127
(I should note that in order for it to work I have to download a template file that includes a license, make file, kernel.ld, source folder for the source code, and a build folder with main.o and an output.elf file. I know that I am in the right directory in the terminal). The compiler that I am using is g++. I do not know what to do. Do I need to find another compiler? Sorry if most of this doesnt make sense. I will gladly give any information needed.