mirror of
https://github.com/theryangeary/choose
synced 2024-11-22 19:03:05 +00:00
27 lines
843 B
Makefile
27 lines
843 B
Makefile
.PHONY: release
|
|
release:
|
|
cargo build --release
|
|
|
|
.PHONY: release-debug
|
|
release-debug:
|
|
RUSTFLAGS=-g cargo build --release
|
|
|
|
flamegraph: release-debug
|
|
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-debug
|
|
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: test
|
|
test:
|
|
cargo test
|
|
test/e2e_test.sh
|
|
|
|
bench: release
|
|
test/bench.sh working
|
|
|
|
bench_commit: release
|
|
test/bench.sh `git log -n 1 --pretty=format:"%h"`
|
|
|