This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

"Hello World" sample won't compile for MSP430G2131 target

Other Parts Discussed in Thread: MSP430G2131

I am using CCS v5.5.0.00077.

I started a new CCS project using the "Hello World" sample with the MSP430G2131 as my target platform.  However, the project will not build.  I receive the following output to the console:

**** Build of configuration Debug for project sample ****

"C:\\ti\\ccsv5\\utils\\bin\\gmake" -k all 
'Building file: ../hello.c'
'Invoking: MSP430 Compiler'
"C:/ti/ccsv5/tools/compiler/msp430_4.2.1/bin/cl430" -vmsp --abi=eabi --include_path="C:/ti/ccsv5/ccs_base/msp430/include" --include_path="C:/ti/ccsv5/tools/compiler/msp430_4.2.1/include" --advice:power=all -g --define=__MSP430G2131__ --diag_warning=225 --display_error_number --diag_wrap=off --printf_support=minimal --preproc_with_compile --preproc_dependency="hello.pp"  "../hello.c"
"../hello.c", line 10: remark #1532-D: (ULP 5.3) Detected printf() operation(s). Recommend moving them to RAM during run time or not using as these are processing/power intensive
'Finished building: ../hello.c'
' '
'Building target: sample.out'
'Invoking: MSP430 Linker'
"C:/ti/ccsv5/tools/compiler/msp430_4.2.1/bin/cl430" -vmsp --abi=eabi --advice:power=all -g --define=__MSP430G2131__ --diag_warning=225 --display_error_number --diag_wrap=off --printf_support=minimal -z -m"sample.map" --heap_size=0 --stack_size=50 -i"C:/ti/ccsv5/ccs_base/msp430/include" -i"C:/ti/ccsv5/tools/compiler/msp430_4.2.1/lib" -i"C:/ti/ccsv5/tools/compiler/msp430_4.2.1/include" --reread_libs --warn_sections --display_error_number --diag_wrap=off --xml_link_info="sample_linkInfo.xml" --rom_model -o "sample.out"  "./hello.obj" "../lnk_msp430g2131.cmd" -l"libc.a" 
<Linking>
remark #10371-D: (ULP 1.1) Detected no uses of low power mode state changes using LPMx or _bis_SR_register() or __low_power_mode_x() in this project.
"../lnk_msp430g2131.cmd", line 93: error #10099-D: program will not fit into available memory.  placement with alignment fails for section ".text" size 0x1098 .  Available memory ranges:
remark #10372-D: (ULP 4.1) Detected uninitialized Port 1 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
   FLASH        size: 0x3e0        unused: 0x3be        max hole: 0x3be     
"../lnk_msp430g2131.cmd", line 96: error #10099-D: program will not fit into available memory.  run placement with alignment fails for section ".cio" size 0x120 .  Available memory ranges:
remark #10372-D: (ULP 4.1) Detected uninitialized Port 2 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
   RAM          size: 0x80         unused: 0x4a         max hole: 0x48      

error #10099-D: program will not fit into available memory.  run placement with alignment fails for section "DATA_GROUP" size 0xf6 .  Available memory ranges:
>> Compilation failure
   RAM          size: 0x80         unused: 0x4a         max hole: 0x48      
error #10099-D: program will not fit into available memory.  run placement with alignment fails for section "BSS_GROUP" size 0xb2 .  Available memory ranges:
   RAM          size: 0x80         unused: 0x4a         max hole: 0x48      
error #10010: errors encountered during linking; "sample.out" not built
gmake: *** [sample.out] Error 1
gmake: Target `all' not remade because of errors.

**** Build Finished ****