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