From 64f13d40aebd1016f62f6fc6f401f00e8acc2481 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 30 Jun 2020 19:59:47 -0400 Subject: [PATCH] chore: Add debug script --- debug.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 debug.sh diff --git a/debug.sh b/debug.sh new file mode 100755 index 0000000..1ff2809 --- /dev/null +++ b/debug.sh @@ -0,0 +1,5 @@ +#!/bin/bash +cd ./runtime/bin +export LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" +gdb --eval-command="handle SIGUSR1 nostop" --eval-command="run ../tests/test_fibonacci_multiple.json" ./awsmrt +cd ../..