I'm compiling my MSP430 C files with the following CC opts:
cl430 --abi=eabi -c -vmspx --code_model=small --data_model=small
But when I try to link I get the following linker warning:
warning: creating output section ".data" without a SECTIONS specification
It seems that all my initialized global variables are being placed in the .data section but none of the provided MSP430 linker command files are placing the .data section.
I don't have this problem with COFF (ie remove the --abi=eabi from the CC opts) .
What am I doing wrong?
Alan DeMars