Gast
#2296490
Hallo liebe Community ich befasse mich seit einem Monat mit dem Mikrocontroller Msp430 ! Über msp430-gcc per Terminal klappt alles wunderbar nach Anleitung http://wiki.ubuntuusers.de/MSP430-Toolchain?highlight=msp430%20toolchain Da es ja leider Keine Linux IDE für den Msp430 gibt aber Eclipse unter Windoof sehr gut funktioniert (Vmware) anders kommt mir kein Windoof aufn Pc!!!! Habe ich das ganze versucht auch unter Linux einzurichten nach der Anleitung http://www.43oh.com/2010/11/a-step-by-step-guide-msp430-programming-under-linux/ Allerdings schmeißt der Compiler immer folgende Fehlermeldung aus: **** Build of configuration Debug for project Msp **** make all Building file: ../Msp.c Invoking: GCC C Compiler msp430-gcc -mmcu=msp430x2211 -I/opt/msp430-gcc/msp430/include -I/opt/msp430-gcc/include -I/usr/include -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"Msp.d" -MT"Msp.d" -o"Msp.o" "../Msp.c" /bin/sh: msp430-gcc: not found make: *** [Msp.o] Fehler 127 Versuche ich das ganze mit der Datei und msp430-gcc über den Terminal msp430-gcc -o Msp ./Msp.c Geht es reibungslos Ganz dumm bin ich ja auch nicht also Terminal gestartet und per Hand den Befehl eingegeben den Eclipse verarbeiten sollte msp430-gcc -mmcu=msp430x2211 -I/opt/msp430-gcc/msp430/include -I/opt/msp430-gcc/include -I/usr/include -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF Msp.d -MT Msp.d -o Msp.o ./Msp.c funktioniert auch !!!!! Was ich mir denke wo der Fehler liegt ist der [mark].[/mark] der zuviel ist in dem Befehlssatz von Eclipse!!!!! **** Build of configuration Debug for project Msp **** make all Building file: ../Msp.c Invoking: GCC C Compiler msp430-gcc -mmcu=msp430x2211 -I/opt/msp430-gcc/msp430/include -I/opt/msp430-gcc/include -I/usr/include -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"Msp.d" -MT"Msp.d" -o"Msp.o" --(.)--./Msp.c /bin/sh: msp430-gcc: not found make: *** [Msp.o] Fehler 127 Hat jemand vielleicht das selbe Problem und ne Lösung parat ? Bedanke mich jetzt schon mal für eure Mühen MFG darkstar999