/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.4.18
tools/debug.sh
22 строки
772 B
Dongbo Wang
Update install/build scripts and dockerfiles (#5222)
25 окт 2017, 18:25
25 окт 2017, 18:25
bfce69e
Код
Авторство
О чём код?
#!/usr/bin/env bash hash lldb-3.6 2>/dev/null || { echo >&2 "No lldb-3.6, please run 'sudo apt-get install lldb-3.6'"; exit 1; } test -x debug/powershell || { echo >&2 "No debug/powershell, please run 'Start-PSBuild -Publish -Output debug'"; exit 1; } test -x debug/libsosplugin.so || { echo >&2 "No debug/libsosplugin.so, please run 'Start-PSBuild -Publish -Output debug'"; exit 1; } cat << EOF Launching LLDB with SOS plugin... Type 'run' or 'r' to start PowerShell. Press Ctrl-C to interrupt PowerShell and run LLDB commands. Type 'exit' when interrupted to leave LLDB. Visit https://git.io/v2Jhh for CoreCLR debugging help. Most useful commands are 'clrstack', 'clrthreads', and 'pe'. EOF pushd debug lldb-3.6 -o "plugin load libsosplugin.so" -- ./pwsh $@ popd