Re: Re: make error 255 under cygwinHi Alex, Again, please post in text format and not html. If you don't know why or don't know how, then you should get several million hits on google to get you started.
If "make -n" is printing "CC -mmcu=..." , then it looks like a typo in the makefile. It is extremely common in makefiles to have a macro near the start such as "CC = /path/to/c-compiler", and in the rules you use the macro as "$(CC)". My guess is that your makefile is missing the $() part, so that it is trying to run a program called "CC" rather than using the macro. If that's not the case, then paste (don't attach) the makefile into the reply so we can look at it. mvh. David ----- Original Message ----- From: Alex Kouznetsov To: mspgcc-users@lists.sourceforge.net Sent: Thursday, October 02, 2003 2:30 AM Subject: [Mspgcc-users] Re: Re: make error 255 under cygwin In that case I am making the project msp430-libc-1.0.20030207\examples\gfx_lcd With -n option first command is CC -mmcu=msp430x147 -O2 -Wall -g -c main.c With -d option there are few more echo lines that might be of interest: ... CC -mmcu=msp430x147 -O2 -Wall -g -c main.c Putting child 0x0099a2d8 (main.o) PID 1767537 on the chain. Live child 0x0099a2d8 (main.o) PID 1767537 Got a SIGCHLD; 1 unreaped children. Reaping losing child 0x0099a2d8 (main.o) PID 1767537 make: *** [main.o] Error 255 Removing child 0x0099a2d8 (main.o) PID 1767537 from chain. Regards Alex From: David Brown <da...@we...> Re: Re: make error 255 under cygwin 2003-10-01 00:46 Re: make error 255 under cygwin(Please post in text, not html) Of course you don't get an error message when running "make -n" - it only prints the command, and does not try to run it. Tell us what the first command printed by "make -n" is, and what results you get when you type that command in manually. That should bring us to the root of the problem. mvh., David