Hi, > > o libgcc/./__gcc_bcmp.o > > make[2]: msp430-ar: command not found > > > What does ls /usr/local/msp430/bin say? > Do you have it on your PATH? > echo $PATH
ok, for root /usr/local/msp430/bin was not in the path and for locate the file was too new. With PATH=$PATH:/usr/local/msp430/bin it works but not complete: msp430-gcc -c -I./../include -I. -Wall -O2 -g -mmcu=msp1 -c stdlib/abs.c -o msp1/abs.o Assembler messages: FATAL: can't create msp1/abs.o: No such file or directory make: *** [msp1/abs.o] Error 1 After mkdir msp1; mkdir msp2 it works and i can compile the example. One year before i did not had such problems. By the way: The example with test.c compiled to test is not a good ideas because test is a common user command (see man test). Regards Rolf F.