Files
llgo/_lldb/runlldb.sh

13 lines
190 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2024-09-21 10:03:49 +08:00
# Source common functions and variables
# shellcheck source=./_lldb/common.sh
2024-09-21 10:03:49 +08:00
source "$(dirname "$0")/common.sh"
executable="$1"
2024-09-21 10:03:49 +08:00
# Run LLDB
"$LLDB_PATH" "$executable"