SMALL gprof1 gprof / gprof2dot 사용법. gprof : linux에 기본으로 설치되어있음.gprof2dot 은 설치해야함.> yum install graphviz gprof를 동작시키려면, configure file에 CFLAG 옵션에 -pg 를 삽입.ex> pngquant의 경우,> ./configure --enable-debug CFLAGS=-pg> make를 하고, 프로그램을 실행시키면 gmon.out이라는 파일이 생성됨.> ./pngquant -f -v 256 test/img/test.pnggmon.out 이 생성됨.> gprof ./pngquant gmon.out > profile.txtprofile 된 file 출력됨.> gprof ./pngquant gmon.out | ./gprof2dot.py | dot -Tpng -o outpu.. 2016. 6. 14. 이전 1 다음 LIST