Other Parts Discussed in Thread: MSP430G2553
Scratching my head on this one...
I'm specifying stack size in project linker options, and I'm watching it generating the correct compiler / linker command line "--stack_size==myValue" option, but when I look in the .map file, .stack remains 0x40.
Here's the command line:
"C:/ti/ccsv5/tools/compiler/msp430/bin/cl430" -vmsp --abi=coffabi -O4 --opt_for_speed=0 --define=__MSP430G2553__ --diag_warning=225 --display_error_number --single_inline --printf_support=minimal -z -m"myApplication.map" --stack_size=70 --heap_size=0 -i"C:/ti/ccsv5/ccs_base/msp430/include" -i"C:/ti/ccsv5/tools/compiler/msp430/lib" -i"C:/ti/ccsv5/tools/compiler/msp430/include" --reread_libs --warn_sections --no_symtable --rom_model -o "myApplication.out" -l"./configPkg/linker.cmd" my-object-files-here -l"libc.a" "../lnk_msp430g2553.cmd"
yields:
warning #10341-D: The --symbol_map option is not supported when performing link-time optimization. All --symbol_map options will be ignored. 'Finished building target: WDI_Ears.out'
ideas? Is --stack-size a 'symbol_map' option??