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