mirror of
https://git.themanaworld.org/mana/verse
synced 2026-08-16 04:23:07 -04:00
7 lines
196 B
Bash
Executable file
7 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mv ../run/gmon.out .
|
|
gprof ../run/bin/manaplus >gprof.txt
|
|
gprof --inline-file-names ../run/bin/manaplus >gprofi.txt
|
|
gprof2dot.py <gprof.txt >gprof.dot
|
|
dot -Tpng -o gprof.png <gprof.dot
|