mirror of
https://github.com/theryangeary/choose
synced 2025-02-18 10:18:23 +00:00
12 lines
593 B
Makefile
12 lines
593 B
Makefile
|
flamegraph: release
|
||
|
perf record --call-graph dwarf,16384 -e cpu-clock -F 997 target/release/choose -i test/long_long_long_long.txt 3:5
|
||
|
perf script | stackcollapse-perf.pl | stackcollapse-recursive.pl | c++filt | flamegraph.pl > flamegraphs/working.svg
|
||
|
|
||
|
flamegraph_commit: release
|
||
|
perf record --call-graph dwarf,16384 -e cpu-clock -F 997 target/release/choose -i test/long_long_long_long.txt 3:5
|
||
|
perf script | stackcollapse-perf.pl | stackcollapse-recursive.pl | c++filt | flamegraph.pl > flamegraphs/`git log -n 1 --pretty=format:"%h"`.svg
|
||
|
|
||
|
.PHONY: release
|
||
|
release:
|
||
|
cargo build --release
|