Dear sir :
I works on TI8148 EVM platform and the OS of my host is ubuntu 10.04.
I try to build cross compiled MTD utilities according the description on http://processors.wiki.ti.com/index.php/MTD_Utilities.
When I go to final step, I get a error message.
CHK include/version.h
CC ftl_format.o
make: arm-none-linux-gnueabi-gcc: Command not found
make: *** [/home/user/mtd-utils-d37fcc0/arm-none-linux-gnueabi/ftl_format.o] Error 127
I know this is a tool chain link error.
So, I modify the Makefile under /home/user/mtd-utils-d37fcc0 like below.
PREFIX = /home/user/mtd/install
ZLIBCPPFLAGS = -I$(PREFIX)/include
LZOCPPFLAGS = -I$(PREFIX)/include
ZLIBLDFLAGS = -L$(PREFIX)/lib
LZOLDFLAGS = -L$(PREFIX)/lib
LDFLAGS += $(ZLIBLDFLAGS) $(LZOLDFLAGS)
CFLAGS ?= -O2 -g $(ZLIBCPPFLAGS) $(LZOCPPFLAGS)
#CROSS=arm-none-linux-gnueabi-
CROSS=/home/TI8148/DVRRDK_02.00.00.23/ti_tools/cgt_a8_std/arm-2009q1/bin/arm-none-linux-gnueabi-
After doing this, I can compile but another error message shows.
Could you tell me what mistake I have made?
Best regards,
Marcus