Hi!
I am porting a software made for another platform, to the MSP430, and I would like to use MSP430 GCC.
Every code file is compiled well but the linker throws an error regarding that the RAM is overrunned (something about collect2 routine)
I tried -nostdlib option in the linker, and all the software compiles. Of course, it doesn't run because the nostdlib option do not add the reset_vector routine and all the initializations procedures.
I do not know what to do. I started to write my own reset_vector function but I tought that probably is a way of doing this correctly (I mean, that the reset vector routine is compiled automatically).
thanks in advance.