mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
13 lines
258 B
Bash
Executable File
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
|