#!/bin/sh

objdump --dynamic-reloc "$@" \
  | cut -c10-24 | tail +6 | grep -v '^ *$' | sort \
  | uniq -c 

