• Redundant code removal
    While I was trying to fit an application in a limited space I noticed that the compiler/linker does not appear to remove functions that are uncalled across C files. I have a number of C files that...
  • REMOVING UNUSED CODE SEGMENTS
    Hello, I am using a third part library and from map file I notice that I include some code of unused functions in my applycation. Do you know how I can remove these functions? And their associated...
  • Removing Code will adjust whole program
    When I remove a little piece of code, what has no issue with the working of my program, the program doesn't work at all. Also I've got 2 function that aren't used at all, but when I remove them, my...
  • Remove standard include paths
    I want to use different implementation of standard library with armcc, so I need to remove standard include paths. I know that it's possibly with armclang with -nostdinc option. There is an option...
  • Linker - UNUSED(REMOVE)
    Hi, the linker option UNUSED(REMOVE) is great. But now I have a function, that I don't use. But I want to include it on the binary. What I have to do, that this (one) function will not remove? ...