14 lines
352 B
Bash
14 lines
352 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
cd "$DIR/../"
|
||
|
|
||
|
RUSTFLAGS="-C opt-level=0" cargo build --no-default-features
|
||
|
valgrind --tool=callgrind --callgrind-out-file=callgrind.out target/debug/compare
|
||
|
|
||
|
echo "You probably want to run:"
|
||
|
echo "callgrind_annotate --auto=yes callgrind.out"
|