Hi,
Referred "Building MSPGCC from Source Code" from http://sourceforge.net/apps/mediawiki/mspgcc/index.php?title=Building_MSPGCC_from_Source_Code and http://www.mikrocontroller.net/en/mspgcc and followed the below steps to install msp430-libc/src 1. cvs -z3 -d:pserver:[email protected]:/cvsroot/mspgcc co msp430-libc This is failed as_ cvs [checkout aborted]: connect to cvs.sourceforge.net(216.34.181.96):2401 failed: Connection refused So decide to do following checkout steps before installing gcc and libc -- export CVSROOT=:pserver:[email protected]:/cvsroot/mspgcc -- export CVS_RSH=ssh -- cvs login just pressed ENTER, then cvs checkout gcc cvs checkout gdb cvs checkout msp430-libc cvs checkout jtag cvs checkout packaging and gcc, gdb, msp430-libc, jtag, packaging directories are created. 2. cd msp430-libc/src 3. make Result : /bin/sh: /usr/local/msp430/msp430/bin/gcc: No such file or directory mkdir -p ./Build/ for i in `/usr/local/msp430/msp430/bin/gcc --print-multi-lib 2>/dev/null`; do \ dir=`echo $i | sed -e 's/;.*$//'` ; \ options=`echo $i | sed -e 's/[...@]*//' -e 's/@/ -/g'`; \ make "MULTILIB_DIR=$dir" "LIB_OPTIONS=$options" build-libc build-libm ; \ done; 4. make install Result : /bin/sh: /usr/local/msp430/msp430/bin/gcc: No such file or directory install -c -m644 /usr/local/msp430/msp430/lib/ install: missing destination file operand after `/usr/local/msp430/msp430/lib/' Try `install --help' for more information. make: *** [install-crt] Error 1 Please help me to solve the above errors. My OS is Linux Mandriva Thanks and regards Basavaraj Tambur
