summaryrefslogtreecommitdiffstats
path: root/contrib/gen-dwz-debug-all.sh
blob: 943062c120c24b9a84472f1a4d4423d5d6f5dd93 (plain)
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