annotate DOCS/BUGREPORTS @ 708:810fe7153a43

Added missed binutils version requirement and coredump
author nickols_k
date Sun, 06 May 2001 08:37:34 +0000
parents 3ec7d432d972
children c76fd19bb10f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
1 How to report bugs?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
2 ~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
3 First read DOCS/BUGS, and other docs. If your problem isn't
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
4 known or isn't solved by our instructions, then report the bug:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
5
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
6 Where?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
7 ======
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
8 Subscribe to the mplayer-users mailing list:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
9 http://lists.sourceforge.net/lists/listinfo/mplayer-users
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
10 and send your bugreport to:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
11 mplayer-users@lists.sourceforge.net
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
12 We won't CC: so please subscribe!!!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
13
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
14 Don't send bugreports private, directly to author's address!!!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
15 We are working together on code, so everyone is interested in it.
675
3ec7d432d972 kommitke
gabucino
parents: 669
diff changeset
16 BTW many times other users know the solution (system config probs,
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
17 bad drivers etc), even when we think it's a bug in our code.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
18
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
19 Please describe your problem in details, examples etc, and don't
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
20 forget to include these:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
21
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
22 What?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
23 =====
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
24
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
25 1. The system info what we always want:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
26 - linux distribution
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
27 for example: RedHat 7.1 / Slackware 7.0 + devel packs from 7.1 ...
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
28 - kernel version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
29 uname -a
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
30 - libc version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
31 ls -l /lib/libc[.-]*
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
32 - X version (you should know that)
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
33 - gcc and ld version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
34 gcc -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
35 ld -v
708
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
36 - binutils version:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
37 as --version
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
38
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
39 1.1. Please print us coredump (if it was created).
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
40 Howto:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
41 please create following command file:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
42
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
43 disass $eip $eip+15
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
44 printf "eax=%08lX\n",$eax
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
45 printf "ebx=%08lX\n",$ebx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
46 printf "ecx=%08lX\n",$ecx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
47 printf "edx=%08lX\n",$edx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
48 printf "esp=%08lX\n",$esp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
49 printf "ebp=%08lX\n",$ebp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
50 printf "edi=%08lX\n",$edi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
51 printf "esi=%08lX\n",$esi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
52
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
53 Then simply execute following command line:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
54 gdb mplayer --core=core -batch --command=command_file >mplayer.bug
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
55
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
56
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
57 2. Hardware & drivers:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
58 - CPU info:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
59 cat /proc/cpuinfo
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
60 - video card manufacturer and model
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
61 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
62 ASUS V3800U chip: nVidia TNT2 Ultra pro 32MB SDRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
63 Matrox G400 DH 32MB SGRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
64 - video driver type&version
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
65 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
66 X built-in driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
67 nvidia 0.9.623
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
68 Utah-GLX CVS 2001-02-17
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
69 DRI from X 4.0.3
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
70 - sound card type & driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
71 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
72 Creative SBLive! Gold with OSS driver from oss.creative.com
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
73 Creative SB16 with OSS drivers of kernel
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
74 GUS PnP with ALSA OSS emulation
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
75 - if you are unsure, attach output of lspci -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
76
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
77 For compiling problems/errors:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
78 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
79 3. output of configure/make:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
80 make distclean
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
81 ./configure &>config.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
82 ./make &>make.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
83 4. these files:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
84 config.h
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
85 config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
86 libvo/config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
87
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
88 For playback problems:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
89 ~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
90 3. Output of mplayer at verbose level 1 (-v)
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
91 mplayer -v [options] filename &> mplayer.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
92
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
93 4. If the problem is specific to one or a few files,
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
94 then please upload that file to:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
95 ftp://thot.banki.hu/MPlayer/incoming/
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
96 Usually first 1-5 MB of the file is enough to reproduce
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
97 the problem, but first you should try it:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
98 dd if=yourfile of=smallfile bs=1k count=1024
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
99 (it will cut first 1MB of 'yourfile' and save to 'smallfile')
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
100 Then try again on this small file, and if bug still exists
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
101 then it's enough to upload this small file.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
102 NEVER send such files via mail! Upload it, and send only
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
103 the path/filename of the file on the FTP.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
104 If the file is accessible on the net, then sending the
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
105 _exact_ URL is enough!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
106
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
107 In general:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
108 If something is big (logs etc) then it's better to upload to the ftp
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
109 (gzipped), and include only path/filename in the bugreport!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
110