summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2019-09-18 11:40:11 +0000
committerzimbatm <zimbatm@zimbatm.com>2019-09-18 23:23:21 +0200
commit619cc4af855fab7b0400586a4fd40745b23e72ad (patch)
tree0a8779936f128eccc7f0941ccbcd595314522324 /contrib
parentc6a0f4c393c9704821bda973db1bf4c449354b32 (diff)
function-trace: always show the trace
If the user invokes nix with --trace-function-calls it means that they want to see the trace.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/stack-collapse.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/stack-collapse.py b/contrib/stack-collapse.py
index ee77e1589..f5602c95c 100755
--- a/contrib/stack-collapse.py
+++ b/contrib/stack-collapse.py
@@ -1,12 +1,11 @@
#!/usr/bin/env nix-shell
#!nix-shell -i python3 -p python3 --pure
-# To be used with `--trace-function-calls` and `-vvvv` and
-# `flamegraph.pl`.
+# To be used with `--trace-function-calls` and `flamegraph.pl`.
#
# For example:
#
-# nix-instantiate --trace-function-calls -vvvv '<nixpkgs>' -A hello 2> nix-function-calls.trace
+# nix-instantiate --trace-function-calls '<nixpkgs>' -A hello 2> nix-function-calls.trace
# ./contrib/stack-collapse.py nix-function-calls.trace > nix-function-calls.folded
# nix-shell -p flamegraph --run "flamegraph.pl nix-function-calls.folded > nix-function-calls.svg"