diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-26 15:03:58 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-26 15:03:58 +0100 |
commit | baee047a281b3629a877ef94843734d870ca131e (patch) | |
tree | 660a2d57cd3b3327a1f465b1b079646b671260a5 /doc/de/weechat_faq.de.txt | |
parent | 391ca476742d17d9275ef4e02e9f7cce271697d4 (diff) | |
download | weechat-baee047a281b3629a877ef94843734d870ca131e.zip |
Add question about gdb and threads error in FAQ
Diffstat (limited to 'doc/de/weechat_faq.de.txt')
-rw-r--r-- | doc/de/weechat_faq.de.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/de/weechat_faq.de.txt b/doc/de/weechat_faq.de.txt index 250f8975b..a354dfd3b 100644 --- a/doc/de/weechat_faq.de.txt +++ b/doc/de/weechat_faq.de.txt @@ -535,6 +535,29 @@ Es gibt drei Möglichkeiten: (Um emails an die "support" Mailing-Liste zu schicken, kannst Du diese abonnieren) +// 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]] Auf welchen Plattformen läuft WeeChat? Wird es noch auf andere Betriebssystemen portiert? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |