Hi,
I am using MCUXpresso IDE to develop one project, currently we need relocat the flash to two area, i add one section in Debug.lg file as below:
.BCodeArea : ALIGN(4)
{
*Driver_Code_Level*.o(.text .text*)
*Driver_Code_Level*.o(.rodata .rodata.* .constdata .constdata.*)
/* cannot linker successfully
*Driver_Code_Level/*.o(.text .text*)
*Driver_Code_Level/*.o(.rodata .rodata.* .constdata .constdata.*)
*/
} > FLASH_AREA_B
Driver_Code_Level is one directory, It is failed when i add one ‘/’ in this section, Do u know how to add some charachar there to indicate that it is a directory?