I am trying to convert a visual linker file(.rcp) to .cmd(text linker) by configuring the .cdb as well as writing custom linker file(.cmd) to include some custom sections details. I am writing the linker file entries by comparing the map files generated using the two types of linkers. Is my approach correct? Are there any other methods to serve the purpose? I am using CCS v 2.20 and the map file generated by building the project, linking with visual linker has some ($BRID) written besides some object files. These object files start at the same location and are of type "hole". Does anyone know what $BRID means? When i port the $BRID sections as below .sec1: {} > SDRAM I am getting an error: "adding D:\Myprojects\sample.obj ($BRID) to multiple output sections". But from the map file, I can see that no other output section has added sample.obj ($BRID). |