Możesz uzyskać pomoc on-line z samego gdb, wpisując komendę help.
You can get online help from gdb itself by using the command help.
W gdb możesz wtedy użyć printqstring myqstring, aby zobaczyć jego zawartość.
Then in gdb you can do printqstring myqstring to see its contents.
Uruchom gdb w specjalnej powłoce (dla projektów korzystających z automake)
Run gdb in a special shell (mainly for automake projects)
Nie uruchamiaj trybu zgodności gdb i wypisuj mniej informacji
Do not run gdb compatibility mode and print less information
Zatrzymaj wykonywanie programu, aby można było wpisać polecenia gdb
Pause execution of the app to enter gdb commands
Użyj "gdb -tui" zamiast tego.
Use "gdb -tui" instead.
Poniższa tabela zawiera kilka poleceń w gdb
Following table provides some commands in gdb
Rozpoczęcie sesji gdb bez pobierania symboli debugowania
Run gdb session without downloading debug symbols
Wyklucza to łatwe użycie narzędzi odpluskwiających (gdb), ale kiedy chcesz ich użyć, nie martw się o rozmiar i prędkość kodu.
It precludes the easy use of debugging tools (gdb), but when you use these, you just don't care about size and speed anymore anyway.
Uruchamia interaktywną sesję gdb na zrzucie pamięci zgłoszenia (ignoruje opcję -o; nie przepisuje zgłoszenia)
Start an interactive gdb session with the report's core dump (-o ignored; does not rewrite report)
Jesteś teraz wewnątrz gdb.
You are now within gdb.
Odpowiedzią gdb jest: bla- bla- bla
The gdb reply is: invalid
Nie ma prostej metody na powiązanie jej ze źródłem procesu oprócz metod takich jak gdb(1), strace(1) itp.
There is no easy way to coordinate this back to a process's source, short of running it through gdb(1), strace(1), or similar.