diff options
Diffstat (limited to 'doc/pl/weechat_faq.pl.txt')
-rw-r--r-- | doc/pl/weechat_faq.pl.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/pl/weechat_faq.pl.txt b/doc/pl/weechat_faq.pl.txt index b7339efde..42699207f 100644 --- a/doc/pl/weechat_faq.pl.txt +++ b/doc/pl/weechat_faq.pl.txt @@ -509,6 +509,29 @@ Są 3 możliwości: (możesz się zapisać na listę mailingową "support" i na niej pisać) +// TRANSLATION MISSING +[[gdb_error_threads]] +When I run WeeChat under gdb, there is an error about threads, what can I do? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +When you run WeeChat under gdb, you may have this error: + +---------------------------------------- +gdb /path/to/weechat-curses +(gdb) run +[Thread debugging using libthread_db enabled] +Cannot find new threads: generic error +---------------------------------------- + +To fix that, you can run gdb with this command (replace path to libpthread and +WeeChat with paths on your system): + +---------------------------------------- +LD_PRELOAD=/lib/libpthread.so.0 gdb /path/to/weechat-curses +(gdb) run +---------------------------------------- + + [[supported_os]] Jaka jest lista platform wspieranych przez WeeChat? Czy będzie przeportowany na inne systemy operacyjne? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |