annotate DOCS/BUGREPORTS @ 709:c76fd19bb10f

XFree86 version detection
author nickols_k
date Sun, 06 May 2001 09:47:00 +0000
parents 810fe7153a43
children b194061e3f03
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[.-]*
709
c76fd19bb10f XFree86 version detection
nickols_k
parents: 708
diff changeset
32 - X version:
c76fd19bb10f XFree86 version detection
nickols_k
parents: 708
diff changeset
33 X -version
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
34 - gcc and ld version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
35 gcc -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
36 ld -v
708
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
37 - binutils version:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
38 as --version
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
39
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
40 1.1. Please print us coredump (if it was created).
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
41 Howto:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
42 please create following command file:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
43
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
44 disass $eip $eip+15
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
45 printf "eax=%08lX\n",$eax
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
46 printf "ebx=%08lX\n",$ebx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
47 printf "ecx=%08lX\n",$ecx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
48 printf "edx=%08lX\n",$edx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
49 printf "esp=%08lX\n",$esp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
50 printf "ebp=%08lX\n",$ebp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
51 printf "edi=%08lX\n",$edi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
52 printf "esi=%08lX\n",$esi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
53
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
54 Then simply execute following command line:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
55 gdb mplayer --core=core -batch --command=command_file >mplayer.bug
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
56
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
57
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
58 2. Hardware & drivers:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
59 - CPU info:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
60 cat /proc/cpuinfo
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
61 - video card manufacturer and model
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
62 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
63 ASUS V3800U chip: nVidia TNT2 Ultra pro 32MB SDRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
64 Matrox G400 DH 32MB SGRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
65 - video driver type&version
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
66 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
67 X built-in driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
68 nvidia 0.9.623
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
69 Utah-GLX CVS 2001-02-17
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
70 DRI from X 4.0.3
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
71 - sound card type & driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
72 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
73 Creative SBLive! Gold with OSS driver from oss.creative.com
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
74 Creative SB16 with OSS drivers of kernel
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
75 GUS PnP with ALSA OSS emulation
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
76 - if you are unsure, attach output of lspci -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
77
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
78 For compiling problems/errors:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
79 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
80 3. output of configure/make:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
81 make distclean
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
82 ./configure &>config.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
83 ./make &>make.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
84 4. these files:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
85 config.h
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
86 config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
87 libvo/config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
88
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
89 For playback problems:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
90 ~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
91 3. Output of mplayer at verbose level 1 (-v)
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
92 mplayer -v [options] filename &> mplayer.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
93
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
94 4. If the problem is specific to one or a few files,
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
95 then please upload that file to:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
96 ftp://thot.banki.hu/MPlayer/incoming/
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
97 Usually first 1-5 MB of the file is enough to reproduce
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
98 the problem, but first you should try it:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
99 dd if=yourfile of=smallfile bs=1k count=1024
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
100 (it will cut first 1MB of 'yourfile' and save to 'smallfile')
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
101 Then try again on this small file, and if bug still exists
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
102 then it's enough to upload this small file.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
103 NEVER send such files via mail! Upload it, and send only
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
104 the path/filename of the file on the FTP.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
105 If the file is accessible on the net, then sending the
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
106 _exact_ URL is enough!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
107
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
108 In general:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
109 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
110 (gzipped), and include only path/filename in the bugreport!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
111