added backtrace reporting description to README

This commit is contained in:
darkeye 2004-02-15 12:32:47 +00:00
parent f6c57ac8a8
commit 3fb455d1b7
1 changed files with 33 additions and 1 deletions

View File

@ -1,5 +1,5 @@
DarkIce live audio streamer, http://darkice.sourceforge.net
Copyright (c) 2000-2001, Tyrell Hungary, http://tyrell.hu
Copyright (c) 2000-2004, Tyrell Hungary, http://tyrell.hu
Contents
@ -7,6 +7,7 @@ Contents
1. What is DarkIce?
2. Compiling and installing
3. Reporting crashes
1. What is DarkIce?
@ -17,6 +18,8 @@ takes audio input from a sound card, encodes it into mp3 and/or Ogg Vorbis,
and sends the mp3 stream to one or more IceCast and/or ShoutCast servers,
the Ogg Vorbis stream to one or more IceCast2 servers.
DarkIce is hosted on SourceForge, at http://darkice.sourceforge.net/
2. Compiling and installing
---------------------------
@ -38,3 +41,32 @@ For documentation, try:
man darkice
3. Reporting crashes
--------------------
When DarkIce core dumps, please send the backtrace along with your error
report to the darkice mailing list: darkice-list@lists.sourceforge.net
To get the backtrace information, you need gdb, the GNU debugger:
1. configure and compile using the --with-debug option:
./configure --with-debug=yes
make clean all
2. run darkice from within gdb:
gdb src/darkice
3. set parameters within gdb:
(gdb) set args -c darkice.cfg
4. run:
(gdb) run
5. after coredump, print the backtrace:
(gdb) bt