It may not work on other versions that _stext is not the first line of the map file
The patch is simple, change
if (strcmp(fn_name,"_stext")) /* only elf works like this */
to
if (!strcmp(fn_name,"_stext")) /* only elf works like this */
Log in to post a comment.