Files
revng-revng/tests/get-function-virtual-address
T
2016-09-21 01:45:26 +02:00

13 lines
258 B
Bash
Executable File

#!/bin/bash
#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
PROGRAM=$1
FUNCTION=$2
VA=`readelf --wide -s $PROGRAM | grep $FUNCTION | grep GLOBAL | grep FUNC | head -n1 | awk -F' ' '{ print strtonum("0x" $2) }'`
echo $VA