13 lines
190 B
Bash
Executable File
13 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Source common functions and variables
|
|
# shellcheck source=./_lldb/common.sh
|
|
source "$(dirname "$0")/common.sh"
|
|
|
|
executable="$1"
|
|
|
|
# Run LLDB
|
|
"$LLDB_PATH" "$executable"
|