Question:
How to view the linker map file in any other modern browser instead of internet explorer?
Answer:
As Internet Explorer finally being retired in June '22, We will consider a flexible feature in the future release of CCES.
These are the 3 different workarounds that are currently we have.
1. You can add the below common post-build command in every project to generate the corresponding HTML while building the project. This can be done via project properties > C/C++ Build > Settings > Build Steps > Post-build steps
xmlmap2html.exe "${ProjName}.map.xml"
> This HTML can be opened and view proper view of the map file in all browsers.
2. Running it through xmlmap2html.exe via command line and manually converting every map file to HTML
3. Opening it in CCES's internal browser, via Right-clicking on the map.xml in CCES project explorer > open with > Other > internal web browser.
> Unfortunately It's not a good solution for users working outside the IDE.