1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#!/bin/sh outputfile=dwz.debug_all echo " int main (void) { return 0; } " \ | gcc -x c - -c -o $outputfile sections=" debug_abbrev debug_info debug_line debug_macro debug_str " for section in $sections; do file=dwz.$section objcopy \ --add-section .$section=$file \ $outputfile done