File: dounsreloc

package info (click to toggle)
gcl 2.6.7-32
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 124,580 kB
  • ctags: 147,324
  • sloc: ansic: 829,363; asm: 311,430; lisp: 163,883; exp: 45,962; makefile: 41,896; sh: 31,641; cpp: 13,316; yacc: 6,093; perl: 3,454; tcl: 3,181; lex: 1,620; sed: 684; pascal: 175; awk: 56; fortran: 24; csh: 23
file content (8 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (52)
1
2
3
4
5
6
7
8
#!/bin/sh
# objdump the reloc table, but strip off the headings and reloc
# numbers and sort the result.  Intended for use in comparing reloc
# tables that may not be in the same order.

objdump +reloc +omit-relocation-numbers +omit-symbol-numbers $1 \
	| sort
#eof