#52445 - spencer723 - Wed Aug 31, 2005 12:57 am
I keep getting these errors when I try and compile (I'm using Dev-Cpp) I don't know if this has to do with the Makefile or something. Here are the errors:
C:\Dev-Cpp\arm-elf-gcc _crt0.s: No such file or directory.
C:\Dev-Cpp\arm-elf-gcc [Warning] '-x assembler-with-cpp' after last input file has no effect
C:\Dev-Cpp\arm-elf-gcc no input files
C:\devkitPro\devkitARM\arm-elf\lib\Makefile [Build Error] [all] Error 1
Thanks in advance to whoever can help me.
Here's the Makefile if it helps
Last edited by spencer723 on Wed Aug 31, 2005 1:06 am; edited 2 times in total
C:\Dev-Cpp\arm-elf-gcc _crt0.s: No such file or directory.
C:\Dev-Cpp\arm-elf-gcc [Warning] '-x assembler-with-cpp' after last input file has no effect
C:\Dev-Cpp\arm-elf-gcc no input files
C:\devkitPro\devkitARM\arm-elf\lib\Makefile [Build Error] [all] Error 1
Thanks in advance to whoever can help me.
Here's the Makefile if it helps
Code: |
PREFIX := arm-elf- export CC := $(PREFIX)gcc export CXX := $(PREFIX)g++ export AR := $(PREFIX)ar export OBJCOPY := $(PREFIX)objcopy all: $(CC) -x assembler-with-cpp -marm -c $(CRT)_crt0.s -o$(CRT)_crt0.o $(CC) -x assembler-with-cpp -marm -mthumb-interwork -c $(CRT)_crt0.s -o interwork/$(CRT)_crt0.o $(CC) -x assembler-with-cpp -mthumb -c $(CRT)_crt0.s -o thumb/$(CRT)_crt0.o $(CC) -x assembler-with-cpp -mthumb -mthumb-interwork -c $(CRT)_crt0.s -o thumb/interwork/$(CRT)_crt0.o |
Last edited by spencer723 on Wed Aug 31, 2005 1:06 am; edited 2 times in total