diff options
Diffstat (limited to 'results/classifier/118/none/1781')
| -rw-r--r-- | results/classifier/118/none/1781 | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/results/classifier/118/none/1781 b/results/classifier/118/none/1781 new file mode 100644 index 000000000..08530f1a0 --- /dev/null +++ b/results/classifier/118/none/1781 @@ -0,0 +1,84 @@ +peripherals: 0.741 +graphic: 0.732 +performance: 0.619 +risc-v: 0.616 +permissions: 0.576 +device: 0.554 +PID: 0.551 +architecture: 0.549 +x86: 0.540 +user-level: 0.534 +vnc: 0.513 +register: 0.508 +network: 0.486 +hypervisor: 0.483 +ppc: 0.476 +VMM: 0.466 +files: 0.466 +mistranslation: 0.449 +arm: 0.438 +semantic: 0.413 +i386: 0.404 +TCG: 0.390 +socket: 0.378 +assembly: 0.361 +debug: 0.357 +boot: 0.350 +virtual: 0.330 +kernel: 0.318 +KVM: 0.267 + +8.1.0rc0: configure from tar file fetches subprojects via git +Description of problem: +Executing configure from tar file fetches subprojects via git. Fetched subprojects are https://gitlab.com/qemu-project/dtc and https://gitlab.com/qemu-project/keycodemapdb +``` +$ ./configure --disable-download +Using './build' as the directory for build output +... +Initialized empty Git repository in /home/helge/qemu-8.1.0-rc0/subprojects/dtc/.git/ +remote: Enumerating objects: 319, done. +remote: Counting objects: 100% (319/319), done. +remote: Compressing objects: 100% (251/251), done. +remote: Total 319 (delta 54), reused 163 (delta 38), pack-reused 0 +Receiving objects: 100% (319/319), 250.56 KiB | 1.94 MiB/s, done. +Resolving deltas: 100% (54/54), done. +From https://gitlab.com/qemu-project/dtc + * branch b6910bec11614980a21e46fbccc35934b671bd81 -> FETCH_HEAD +HEAD is now at b6910be Bump version to v1.6.1 +... +Initialized empty Git repository in /home/helge/qemu-8.1.0-rc0/subprojects/keycodemapdb/.git/ +remote: Enumerating objects: 26, done. +remote: Counting objects: 100% (26/26), done. +remote: Compressing objects: 100% (21/21), done. +remote: Total 26 (delta 0), reused 23 (delta 0), pack-reused 0 +Unpacking objects: 100% (26/26), 30.65 KiB | 216.00 KiB/s, done. +From https://gitlab.com/qemu-project/keycodemapdb + * branch f5772a62ec52591ff6870b7e8ef32482371f22c6 -> FETCH_HEAD +HEAD is now at f5772a6 Add Qemu qcode support for F13 to F24 +... +``` + +Using `--disable-download` is no option: +``` +$ ./configure --disable-download +Using './build' as the directory for build output + +ERROR: missing subprojects + +This is not a GIT checkout but subproject content appears to +be missing. Do not use 'git archive' or GitHub download links +to acquire QEMU source archives. Non-GIT builds are only +supported with source archives linked from: + + https://www.qemu.org/download/#source +``` + +If I understand the error message correctly, the subprojects should be part of the tar. +Steps to reproduce: +1. Open Clang64 console +2. `pacman -Syu` +3. `pacman -S binutils mingw-w64-clang-x86_64-toolchain mingw-w64-clang-x86_64-glib2 mingw-w64-clang-x86_64-ninja mingw-w64-clang-x86_64-pixman mingw-w64-clang-x86_64-python mingw-w64-clang-x86_64-python-sphinx mingw-w64-clang-x86_64-python-sphinx_rtd_theme` +4. `wget https://download.qemu.org/qemu-8.1.0-rc0.tar.xz` +5. `tar -xf qemu-8.1.0-rc0.tar.xz` +6. `cd qemu-8.1.0-rc0` +7. `./configure` or `./configure --disable-download` |