1 FunctionCheck by Y.Perret (V3.2) 2 -------------------------------- 3 4 Give feedback or bug reports at https://sourceforge.net/projects/fnccheck/ 5 6 7 8 How to compile & install: 9 ------------------------- 10 11 12 1. ./bootstrap 13 14 2. ./configure 15 16 3. ./make install 17 18 19 20 How to use the profiler: 21 ------------------------ 22 23 1. Compile program to be profiled using gcc/g++ with the following options: 24 25 -lfc -finstrument-functions -g 26 27 2. Run the program to be profiled. 28 29 3. Run fcdump on the same current directory with profiled program: 30 31 fcdump <profiled_program> 32 33 34 35 Installed components: 36 --------------------- 37 38 1. libfc.so - shared library loaded with profiled program to hook function calls 39 40 2. fcmanager - program to read data from the shared library buffer and writes to 'functioncheck.fc' 41 42 3. fcdump - program to display profiling data from 'functioncheck.fc' log. 43 44 4. libfc.info - documentation info 45 46 47 48 For more information: 49 --------------------- 50 51 1. Read documentation at .\doc folder. 52 53 2. See diferent sample test programs on .\test folder.