Makefile failing to make a piece of assembly code I am creating

365 Views Asked by At

I have been following the tutorial to make a simple os for a raspberry pi here. It has been working fine although I had to swap to using WinGW not yagarto to make it because yagarto stopped working properly but then it has suddenly started just raising an error when I try and make the file, even if I do it on an old bit of code which used to work so it is very confusing. I have files called gpio.s, main.s and systemTimer.s. This is my makefile:

###############################################################################
#   makefile
#    by Alex Chadwick
#
#   A makefile script for generation of raspberry pi kernel images.
###############################################################################

# The toolchain to use. arm-none-eabi works, but there does exist 
# arm-bcm2708-linux-gnueabi.
ARMGNU ?= arm-none-eabi

# The intermediate directory for compiled object files.
BUILD = build/

# The directory in which source files are stored.
SOURCE = source/

# The name of the output file to generate.
TARGET = kernel.img

# The name of the assembler listing file to generate.
LIST = kernel.list

# The name of the map file to generate.
MAP = kernel.map

# The name of the linker script to use.
LINKER = kernel.ld

# The names of all object files that must be generated. Deduced from the 
# assembly code files in source.
OBJECTS := $(patsubst $(SOURCE)%.s,$(BUILD)%.o,$(wildcard $(SOURCE)*.s))

# Rule to make everything.
all: $(TARGET) $(LIST)

# Rule to remake everything. Does not include clean.
rebuild: all

# Rule to make the listing file.
$(LIST) : $(BUILD)output.elf
    $(ARMGNU)-objdump -d $(BUILD)output.elf > $(LIST)

# Rule to make the image file.
$(TARGET) : $(BUILD)output.elf
    $(ARMGNU)-objcopy $(BUILD)output.elf -O binary $(TARGET) 

# Rule to make the elf file.
$(BUILD)output.elf : $(OBJECTS) $(LINKER)
    $(ARMGNU)-ld --no-undefined $(OBJECTS) -Map $(MAP) -o $(BUILD)output.elf -T $(LINKER)

# Rule to make the object files.
$(BUILD)%.o: $(SOURCE)%.s $(BUILD)
    $(ARMGNU)-as -I $(SOURCE) $< -o $@

$(BUILD):
    mkdir $(@:/=)

# Rule to clean files.
clean : 
    -rm -rf $(BUILD)
    -rm -f $(TARGET)
    -rm -f $(LIST)
    -rm -f $(MAP)

and if I run this by calling make.exe it raises this error:

process_begin: CreateProcess(NULL, arm-none-eabi-as -I source/ source/main.s -o build/main.o, ...) failed.
make (e=2): The system cannot find the file specified.
Makefile:54: recipe for target 'build/main.o' failed
make: *** [build/main.o] Error 2

It used to run this without an error and I am pretty sure I haven't cahnged anything so I am trying to work out what has gone wrong. Any help would be appreciated.

0

There are 0 best solutions below