Dear,
tried creating a helo world example with a crosscompiler that i got from the manufacturer. Crosscompiler is on windows, i am seeing some makefile problems:
Run “C:\xxx\Linux\Compiler\4.2.0\bin\make.exe CONFIG=Debug clean” in directory “C:\Users\xxxx\source\repos\LinuxProject2” on local computer
C:\xxx\Linux\Compiler\4.2.0\bin\make.exe CONFIG=Debug clean
makefile:29: no file name for `include’
makefile:60: Extraneous text after `else’ directive
makefile:64: Extraneous text after `else’ directive
makefile:64: *** only one `else’ per conditional. Stop.
————————————————————-
Command exited with code 2
It fails on line:
29: include $(ADDITIONAL_MAKE_FILES)
ifeq ($(TOOLCHAIN_SUBTYPE),iar)
CC_DEPENDENCY_FILE_SPECIFIER := –dependencies=m
ASM_DEPENDENCY_FILE_SPECIFIER := && echo >
CXXFLAGS += –c++
COMMONFLAGS += –silent
60: else ifeq ($(TOOLCHAIN_SUBTYPE),armcc)
CC_DEPENDENCY_FILE_SPECIFIER := –depend
ASM_DEPENDENCY_FILE_SPECIFIER := –depend
USING_KEIL_TOOLCHAIN := 1
64: else ifeq ($(TOOLCHAIN_SUBTYPE),armclang)
CC_DEPENDENCY_FILE_SPECIFIER := -MD -MF
ASM_DEPENDENCY_FILE_SPECIFIER := –depend
USING_KEIL_TOOLCHAIN := 1
else
CC_DEPENDENCY_FILE_SPECIFIER := -MD -MF
ASM_DEPENDENCY_FILE_SPECIFIER := -MD -MF
endif
Am i doing something wrong or ?