2019-05-17 15:48:09 +02:00
|
|
|
#!/bin/sh
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
DIR="$PWD"
|
2017-09-17 21:32:46 +02:00
|
|
|
cd ../examples/.libs/ || exit
|
2015-10-14 04:06:26 +02:00
|
|
|
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
|
2016-04-02 18:35:34 +02:00
|
|
|
cd "$DIR" || exit
|
2015-10-14 04:06:26 +02:00
|
|
|
|