I'm trying to simulate a Sky mote with the Cooja simulator shipped with the Contiki-NG project. I access the simulator as stated at their wiki:
cd contiki-ng/tools/cooja
ant
But when I try to compile the hello-world example, which seems to execute the command
make hello-world.sky TARGET=sky
Cooja returns the following error message:
> make hello-world.sky TARGET=sky
make: msp430-gcc: File or directory does not exists
make: msp430-gcc: File or directory does not exists
/bin/sh: 1: msp430-gcc: not found
/bin/sh: 1: msp430-gcc: not found
/bin/sh: 1: test: -lt: unexpected operator
CC ../../os/contiki-main.c
make: msp430-gcc: File or directory does not exists
make: *** [../../Makefile.include:366: build/sky/obj/contiki-main.o] Error 127
Process returned error code 2
I checked that the msp430-gcc was installed and that the file ../../os/contiki-main.c was ok. So why am I facing this error?