8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/usr/bin/sh
|
|
# launcher script for rust-gdb
|
|
|
|
set -e
|
|
|
|
RUSTC_SYSROOT=$(${MINGW_PREFIX}/bin/rustc --print sysroot)
|
|
exec /usr/bin/sh "$RUSTC_SYSROOT/bin/rust-gdb" "$@"
|