This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

linker option --map

Hi,

I can't generate image memory map file through linker --map flag.
I'm using the "Arm Linker"->"Additional Information" page to set the --map linker flag, however no memory map file is created after linkage stage.


Thanks,
Ronen

Parents
  • Hi Ronen,

    It would be output to the file you specified with --list. However the $(ProjName) variable is not passed through in this manner (see the fully output command line in the Build Console). I see something like:

    --map --list=".lst"

    If you hard code the name as (say) ronen.lst, do you see it output? If you specify no file here, it will be output in the build console.

Reply
  • Hi Ronen,

    It would be output to the file you specified with --list. However the $(ProjName) variable is not passed through in this manner (see the fully output command line in the Build Console). I see something like:

    --map --list=".lst"

    If you hard code the name as (say) ronen.lst, do you see it output? If you specify no file here, it will be output in the build console.

Children