diff options
Diffstat (limited to '')
| -rw-r--r-- | results/classifier/118/review/1431 | 110 | ||||
| -rw-r--r-- | results/classifier/118/review/1431084 | 75 |
2 files changed, 185 insertions, 0 deletions
diff --git a/results/classifier/118/review/1431 b/results/classifier/118/review/1431 new file mode 100644 index 00000000..bf3f2616 --- /dev/null +++ b/results/classifier/118/review/1431 @@ -0,0 +1,110 @@ +mistranslation: 0.819 +graphic: 0.796 +device: 0.622 +KVM: 0.470 +files: 0.389 +x86: 0.364 +socket: 0.356 +PID: 0.355 +debug: 0.353 +semantic: 0.338 +permissions: 0.305 +register: 0.256 +vnc: 0.251 +kernel: 0.240 +VMM: 0.223 +peripherals: 0.223 +virtual: 0.210 +hypervisor: 0.193 +user-level: 0.173 +boot: 0.171 +TCG: 0.163 +performance: 0.161 +architecture: 0.157 +ppc: 0.147 +risc-v: 0.145 +i386: 0.133 +arm: 0.129 +network: 0.121 +assembly: 0.082 +-------------------- +virtual: 0.963 +KVM: 0.961 +x86: 0.959 +hypervisor: 0.953 +user-level: 0.325 +debug: 0.150 +device: 0.067 +kernel: 0.035 +architecture: 0.028 +files: 0.026 +socket: 0.018 +TCG: 0.016 +performance: 0.015 +graphic: 0.014 +semantic: 0.009 +boot: 0.009 +register: 0.008 +peripherals: 0.008 +PID: 0.006 +ppc: 0.005 +VMM: 0.004 +network: 0.003 +permissions: 0.002 +assembly: 0.002 +risc-v: 0.001 +i386: 0.001 +vnc: 0.001 +mistranslation: 0.001 +arm: 0.000 + +qemu spice support opengl +Steps to reproduce: +I wan to use spice support opengl, but my qemu seems not support,what can i do to support opengl for spice? + +qemu configure: +``` +./configure --target-list=x86_64-softmmu --enable-kvm --enable-debug --enable-spice --enable-numa --enable-libusb --enable-curl --enable-usb-redir --enable-libiscsi --enable-virglrenderer --enable-opengl --enable-gtk --prefix="/usr" +``` + +xml: +```xml +<domain type='kvm'> + <name>test</name> + <memory>1048576</memory> + <currentMemory>1048576</currentMemory> + <vcpu>1</vcpu> + <os> + <type arch='x86_64' machine='pc'>hvm</type> + </os> + <cpu mode='custom' match='exact' check='full'> + <topology sockets='1' dies='1' cores='1' threads='1'/> + </cpu> + <features> + <acpi/> + <apic/> + <pae/> + </features> + <clock offset='localtime'/> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <devices> + <emulator>/usr/bin/qemu-system-x86_64</emulator> + <disk type='file' device='disk'> + <driver name='qemu' type='qcow2'/> + <source file='/root/kk.img'/> + <target dev='hda' bus='ide'/> + </disk> + <input type='mouse' bus='ps2'/> + <graphics type='spice'> + <listen type='none'/> + <gl enable='yes' rendernode='/dev/dri/renderD128'/> + </graphics> + </devices> +</domain> +``` + +error report: + + diff --git a/results/classifier/118/review/1431084 b/results/classifier/118/review/1431084 new file mode 100644 index 00000000..e97abd8f --- /dev/null +++ b/results/classifier/118/review/1431084 @@ -0,0 +1,75 @@ +mistranslation: 0.996 +graphic: 0.895 +semantic: 0.879 +user-level: 0.878 +device: 0.877 +kernel: 0.824 +architecture: 0.793 +arm: 0.755 +TCG: 0.751 +ppc: 0.727 +VMM: 0.723 +vnc: 0.714 +PID: 0.690 +network: 0.690 +files: 0.689 +register: 0.672 +boot: 0.638 +risc-v: 0.623 +performance: 0.619 +debug: 0.597 +socket: 0.545 +KVM: 0.475 +permissions: 0.458 +x86: 0.446 +hypervisor: 0.440 +peripherals: 0.439 +virtual: 0.293 +i386: 0.239 +assembly: 0.198 +-------------------- +user-level: 0.370 +TCG: 0.125 +semantic: 0.070 +VMM: 0.050 +debug: 0.034 +files: 0.030 +kernel: 0.019 +register: 0.011 +risc-v: 0.010 +device: 0.008 +virtual: 0.006 +PID: 0.005 +socket: 0.004 +network: 0.004 +performance: 0.003 +permissions: 0.002 +architecture: 0.002 +boot: 0.002 +vnc: 0.002 +assembly: 0.001 +peripherals: 0.001 +ppc: 0.001 +KVM: 0.001 +mistranslation: 0.001 +hypervisor: 0.001 +x86: 0.001 +graphic: 0.001 +arm: 0.000 +i386: 0.000 + +improve configure error message "ERROR: User requested feature nptl" + +Running `./configure` on Ubuntu 14.10 amd64 with Linux 3.19.1 causes the error + + ERROR: User requested feature nptl + configure was not able to find it. + Install glibc and linux kernel headers. + +Both linux kernel headers and `libglib2.0-dev` are installed in my case, so the error message definitely misses a point and is at least confusing and should either omit the hint if the recommended dependencies are already installed or - better - give one that fixes the issue. + +experienced with git commit d598911b6f5e7bf7bafb63b8e1d074729e94aca7 + +You say "Both linux kernel headers and `libglib2.0-dev` are installed", but the error message says "Install glibc and linux kernel headers". "glibc" is not "libglib". I suspect you didn't have what on Ubuntu is the "libc6-dev" package. Unfortunately it's difficult to be specific in these error messages, because different distros call their dev packages by different names. + + |
