From 6dbf014773f5f8ac0b0e291392dfde518de94daf Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 23 Jan 2024 01:39:29 +0000 Subject: deploy: 8c9fd06e839c06717dd2dcb067371a5e1fc71801 --- trace_profile/callgrind/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 trace_profile/callgrind/Makefile (limited to 'trace_profile/callgrind/Makefile') diff --git a/trace_profile/callgrind/Makefile b/trace_profile/callgrind/Makefile new file mode 100644 index 0000000..0da099c --- /dev/null +++ b/trace_profile/callgrind/Makefile @@ -0,0 +1,14 @@ +prof: cg_example + valgrind --tool=callgrind --dump-instr=yes --instr-atstart=no -- ./cg_example + +prof-cache: cg_example + valgrind --tool=callgrind --dump-instr=yes --instr-atstart=no --cache-sim=yes -- ./cg_example + +show: + callgrind_annotate + +cg_example: cg_example.cc + clang++ -o cg_example -Wall -Wextra -O2 -g -fno-inline cg_example.cc -lpthread + +clean: + $(RM) callgrind.* cg_example -- cgit v1.2.3