Search This Blog

Wednesday, November 9, 2022

GCC improve build time - and binary tools

 nice article about improving gcc build time :

https://interrupt.memfault.com/blog/improving-compilation-times-c-cpp-projects

also nice tools for examine-and-adjust-include-dependencies 


linux-binary-analysis  tools and tips 


  • List all obj files of archive:
    • nm -C <lib.a> | grep '.*\.o\:'
  • see export table of .so:
    • nm -CD <lib.so>