4

We have a library and an executable, that is to be statically linked to the lib. We want to minimize the program space of the final executable.

According to avr-libc's documentation:

the linker links in THE ENTIRE OBJECT MODULE in which the function is located

On the other hand, my colleagues are unanimous on the point that at some pass, the linker throws away any unused functions.

So who is correct or am I misunderstanding something? Is the answer consistent throughout gcc or are we talking only the avr port here?

Vorac
  • 8,726
  • 11
  • 58
  • 101

1 Answers1

10

It doesn't perform dead code stripping unless you tell it to. In order to do that, you need to compile everything with:

-fdata-sections -ffunction-sections

in order to mark all data and functions. And when linking with GCC you need to pass:

-Wl,--gc-sections

in order to garbage-collect all unused sections.

Nikos C.
  • 50,738
  • 9
  • 71
  • 96
  • So both of my sources were correct and I had not understood everything correct. Just as expected. Thank you for the prompt answer! – Vorac Nov 23 '12 at 09:19