#!/bin/sh

for i in `objdump -h -w $1 | grep set_ | cut -c5- | cut -f1 -d " "`
do
	echo -n " -u __start_$i -u __stop_$i "
done
