From 2ead8f83321a7aced4b5c61004e7327813f44dcd Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Sat, 20 Jul 2019 15:33:12 -0700 Subject: [PATCH] keep frame poiners in release mode This makes it easier to get call graphs with perf. --- .cargo/config | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..85b3d23 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,2 @@ +[build] +rustflags = "-C force-frame-pointers=yes"