You've got the location of the arm-linux-gcc binary in your PATH-variable?
| cannot remember symlinking gcc and the rest to the crosscompiler binaries, just added the right dir to my PATH variable.
In the Makefile should be set :

CROSS_COMPILE = arm-linux-
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc -D__KERNEL__ -I$(HPATH)
CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
NM = $(CROSS_COMPILE)nm
STRIP = $(CROSS_COMPILE)strip
OBJCOPY = $(CROSS_COMPILE)objcopy
OBJDUMP = $(CROSS_COMPILE)objdump
MAKE = make


Check your makefile...


Frank van Gestel
_________________________
Frank van Gestel