finalcut/scripts/profile.sh

12 lines
167 B
Bash
Raw Normal View History

2015-05-23 13:35:12 +02:00
#!/bin/bash
DIR="$PWD"
cd ../test/.libs/
LD_LIBRARY_PATH=../../src/.libs/ ./ui
gprof ./ui >./profile.txt
2015-05-23 13:35:12 +02:00
rm ./gmon.out
less ./profile.txt
rm ./profile.txt
cd "$DIR"