代码之家  ›  专栏  ›  技术社区  ›  Tomilov Anatoliy

使用-ffunction sections标志编译的不同静态库

  •  0
  • Tomilov Anatoliy  · 技术社区  · 6 年前

    如何区分使用 -ffunction-sections 编译器标志?

    我想确定的是 .a 图书馆可以从中受益 -Wl,--gc-sections 旗帜。

    如果有办法列出所有的分区名称,我可以申请 | wc -l 由此推断,有太多的节,并且库很可能是用上述标志编译的。

    readelf -S 只是打印存档 *.o 文件名。

    1 回复  |  直到 6 年前
        1
  •  1
  •   yugr    6 年前

    简单来说:

    # Collect function sections
    $ readelf -S tmp.o | sed -ne 's/.*\] \.text.\([a-zA-Z0-9_]\+\) .*/\1/p' | sort -u > fun_sec.lst
    
    # Collect function symbols
    $ nm tmp.o | grep ' T ' | awk '{print $3}' | sort -u > fun_sym.lst
    
    # Compare
    $ COMM=$(comm -12 fun_sym.lst fun_sec.lst | wc -l)
    $ UNIQ=$(comm -3 fun_sym.lst fun_sec.lst | wc -l)
    $ if test $COMM -gt $UNIQ; then echo "tmp.o was likely compiled with -ffunction-sections"; fi