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.

CCS: The project can not be built successfully

Other Parts Discussed in Thread: MSP430F5310

Tool/software: Code Composer Studio

   I am using the MSP430 as simulator on windows 7 now. I built the project successfully yesterday by using CCS v7 on windows 10. But today, when I use another laptop, I tried to build the same project again by using CCSv5 on windows7 but failed.I have reinstall the CCS twice but the errors still occured. The errors are as follows,

error #10008-D: cannot find file "/driverlib/ccs/Release/driverlib.a"

"../lnk_msp430f5310.cmd", line 198: warning #10374-D: Interrupt vector "RTC" does not have an interrupt handler routine.
>> Compilation failure
"../lnk_msp430f5310.cmd", line 199: warning #10374-D: Interrupt vector "PORT2" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 200: warning #10374-D: Interrupt vector "TIMER2_A1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 201: warning #10374-D: Interrupt vector "TIMER2_A0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 202: warning #10374-D: Interrupt vector "USCI_B1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 203: warning #10374-D: Interrupt vector "USCI_A1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 204: warning #10374-D: Interrupt vector "PORT1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 205: warning #10374-D: Interrupt vector "TIMER1_A1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 206: warning #10374-D: Interrupt vector "TIMER1_A0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 207: warning #10374-D: Interrupt vector "DMA" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 208: warning #10374-D: Interrupt vector "LDO_PWR" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 209: warning #10374-D: Interrupt vector "TIMER0_A1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 210: warning #10374-D: Interrupt vector "TIMER0_A0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 211: warning #10374-D: Interrupt vector "ADC10" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 212: warning #10374-D: Interrupt vector "USCI_B0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 213: warning #10374-D: Interrupt vector "USCI_A0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 214: warning #10374-D: Interrupt vector "WDT" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 215: warning #10374-D: Interrupt vector "TIMER0_B1" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 216: warning #10374-D: Interrupt vector "TIMER0_B0" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 217: warning #10374-D: Interrupt vector "COMP_B" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 218: warning #10374-D: Interrupt vector "UNMI" does not have an interrupt handler routine.
"../lnk_msp430f5310.cmd", line 219: warning #10374-D: Interrupt vector "SYSNMI" does not have an interrupt handler routine.

 undefined first referenced                                                                             
  symbol       in file                                                                                  
 --------- ----------------                                                                             
 main      D:\CCS5.4.0.00091_win32\ccsv5\tools\compiler\msp430_4.1.5\lib\rts430x_lc_sd_eabi.lib<boot.obj>

error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "MSP430_LCD.out" not built
gmake: *** [MSP430_LCD.out] Error 1
gmake: Target `all' not remade because of errors.

I am a freshman and could anyone help me?Thank you!

  • user5039000 said:
    I built the project successfully yesterday by using CCS v7 on windows 10. But today, when I use another laptop, I tried to build the same project again by using CCSv5 on windows7 but failed.

    Is there a reason you need the project to be built with CCSv5? If it builds with CCSv7 and with that being the latest version, I would recommend sticking with it.

    There are differences between CCSv5 and CCSv7, including the version of compiler tools, perhaps different default linker command files, and so on. If possible, I would suggest installing the same version of CCSv7 in the other laptop to keep both builds consistent.

  • AartiG,Thank you for your reply.
    The project was built with CCSv5. When I open the c document in the project, I find out it is blank. But actually,it should have been written some code and I can see the code in the document with CCSv7.By the way, does the ccs7 support win7?If it does, I may install the CCSv7 on the laptop.
  • user5039000 said:
    By the way, does the ccs7 support win7?If it does, I may install the CCSv7 on the laptop.

    Yes CCSv7 is supported on Win7, so installing that version would be the way to go.

  • Thank you for your answer.My ccs goes well on win7 now.