Цитата(AHTOXA @ Feb 28 2016, 16:09)

Это флаг линкера. Чтобы gcc передал его линкеру, попробуйте его указать через "-Wl," :
-Wl,-Tmsp430f5529.ld
То же самое:
msp430-gcc -mmcu=msp430f5529 -Wl,-Tmsp430f5529.ld -o blink.elf blink.c
c:/program files (x86)/sublimetext/msp430-gcc/bin/../lib/gcc/msp430/4.6.3/../../../../msp430/bin/ld.exe: cannot find files: No such file or directory
c:/program files (x86)/sublimetext/msp430-gcc/bin/../lib/gcc/msp430/4.6.3/../../../../msp430/bin/ld.exe: cannot find (x86)/sublimetext/msp430-gcc/bin/../lib/gcc/../../msp430/lib/ldscripts/msp430f5529/: No such file or directory
collect2: ld returned 1 exit status
А вот без запятой:
msp430-gcc -mmcu=msp430f5529 -Wl -Tmsp430f5529.ld -o blink.elf blink.c
cc1.exe: error: unrecognized command line option '-Wl'
Сообщение отредактировал allsettingsdone - Feb 28 2016, 17:18