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/CC3200-LAUNCHXL: ADC example code is not getting build and showing following warning message" this project was created using a version of compiler that is not currently installed: 5.1.6 [ARM]. "

Part Number: CC3200-LAUNCHXL
Other Parts Discussed in Thread: CC3200

Tool/software: Code Composer Studio

I am trying to use ADC on CC3200. For this, I am using ADC example code but the ADC example code is not getting build properly, it shows the following errors:

1) Description Resource Path Location Type

    #10010 errors encountered during linking; "adc.out" not built ADC C/C++ Problem

and giving a warning about ARM compiler

"this project was created using a version of the compiler that is not currently installed: 5.1.6 [ARM]."

I tried to install updated software for ARM compiler, but still, it is showing the same result. 

  • In this case CCS is showing the warning because the project was created using a much older version of the compiler as compared to the version that is installed.

    To get rid of this error there are a couple of options. You can install the version it is looking for or one that is very close. Or you can change the project options to have a newer compiler version.

    To get the 5.1.x compiler you can go to Help -> install new software. Select the code generation tools update site at the top. This will populate a list of available updates at the bottom. Under TI Compiler Updates look for a 5.1.x compiler. Currently 5.1.14 is the latest on the 5.1 branch.

    Or to change the project to use a newer compiler. Right click on the project and select properties. Select General in the tree on the left and then on the right there will be a box to select the compiler version the project is configured to use.

    Regards,
    John
  • Thank you very much for your help, it worked well.