summary refs log tree commit diff stats
path: root/results/classifier/118/graphic/1420
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/graphic/1420
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/graphic/1420')
-rw-r--r--results/classifier/118/graphic/142069
1 files changed, 69 insertions, 0 deletions
diff --git a/results/classifier/118/graphic/1420 b/results/classifier/118/graphic/1420
new file mode 100644
index 000000000..6bf4c253d
--- /dev/null
+++ b/results/classifier/118/graphic/1420
@@ -0,0 +1,69 @@
+graphic: 0.851
+architecture: 0.824
+device: 0.736
+ppc: 0.686
+peripherals: 0.678
+files: 0.591
+kernel: 0.565
+performance: 0.559
+PID: 0.555
+virtual: 0.549
+socket: 0.532
+user-level: 0.496
+debug: 0.440
+mistranslation: 0.432
+x86: 0.404
+hypervisor: 0.392
+assembly: 0.382
+permissions: 0.363
+register: 0.351
+semantic: 0.349
+TCG: 0.282
+vnc: 0.280
+network: 0.255
+VMM: 0.227
+boot: 0.165
+risc-v: 0.129
+arm: 0.105
+KVM: 0.084
+i386: 0.074
+
+Missing path for pkg-config on amd64 debian based distros
+Description of problem:
+This error occurs when attempting to configure qemu from git :
+```error
+ERROR: glib-2.56 gthread-2.0 is required to compile QEMU
+```
+
+Although it seems to be as simple as "_just install the dev lib!!!_" it is not that simple.
+
+1. First of all, my system already has the library installed :
+   ```sh
+   dpkg -l | grep libglib2.0-dev
+   ii  libglib2.0-dev:amd64                          2.74.4-1                            amd64        Development files for the GLib library
+   ii  libglib2.0-dev-bin                            2.74.4-1                            amd64        Development utilities for the GLib library
+   ```
+1. Second, the file required by _pkg-config_ does exist aswell :
+   ```sh
+   ls /usr/lib/x86_64-linux-gnu/pkgconfig/gthread-2.0.pc -l
+   -rw-r--r-- 1 root root 240 dez 27 20:42 /usr/lib/x86_64-linux-gnu/pkgconfig/gthread-2.0.pc
+   ```
+1. Finally, the real problem is that pkg-config is not able to identify it **unless** you specify the _x86-64_ dir :
+   - Default usage. It fails.
+      ```sh
+      pkg-config --modversion gthread-2.0
+      Package gthread-2.0 was not found in the pkg-config search path.
+      Perhaps you should add the directory containing `gthread-2.0.pc'
+      to the PKG_CONFIG_PATH environment variable
+      Package 'gthread-2.0', required by 'virtual:world', not found
+      ```
+   - Fixed usage (temp)
+      ```sh
+      env PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/lib/x86_64-linux-gnu/pkgconfig/" pkg-config --modversion gthread-2.0
+      2.74.4
+      ```
+Steps to reproduce:
+1. clone qemu (master)
+2. try to run _configure_
+Additional information:
+Of course it seems to be a problem related to the program _pkg-config_ itself, or even by the distro's package, but it totally prevents any build of qemu in a debian-based distro, with architecture _amd64_.