64KSRAM.sct(7): error: L6236E: No section matches selector - no section to be FIRST/LAST.

Hello! I am using Analog Device's ADUCM355 chip.

I am trying to program using Keil's examples, but when I try to build the code, I keep getting the error message "64KSRAM.sct(7): error: L6236E: No section matches selector - no section to be FIRST/LAST."

How can I resolve this issue?"

Parents
  • You have not shown everything, but I suspect that the init code is not actually being linked into the application.

    Can you add --keep init.o (set as appropriate) to the linker command line.

    Which compiler are you using to build the image? If using Arm Compiler 5, you cannot use CMSIS6, which I see is selected in your Run Time Environment Manager.

Reply
  • You have not shown everything, but I suspect that the init code is not actually being linked into the application.

    Can you add --keep init.o (set as appropriate) to the linker command line.

    Which compiler are you using to build the image? If using Arm Compiler 5, you cannot use CMSIS6, which I see is selected in your Run Time Environment Manager.

Children