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/MSP432P401R: REGION_ALIAS linker issue

Part Number: MSP432P401R

Tool/software: Code Composer Studio

Setting up CCS on new computer. Project now fails with

"../driverlib/inc/msp432p401r.lds", line 47: error #10008-D: cannot find file "REGION_ALIAS"

Only change is the compiler has been updated from TI v16.9.2.LTS to TI v16.9.3 LTS

???

  • Timothy,

    A .lds file is a linker definition script that is used by GCC. That should not be in a project that is using the TI Compiler 16.9.x as the TI tools use .cmd files.

    Did you switch the compiler to GCC at some point? That would add an .lds file to the project. How is the file being referenced? Is it in the project or specified in the linker options? The full command line from the console may provide more info.

    Regards,
    John
  • Fixed.. For some reason, the 16.9.3 version of the linker included the the .lds file in the link command. I deleted the file from my source tree, and it linked fine.

    Thanks John