diff options
Diffstat (limited to 'results/classifier/118/files/1469')
| -rw-r--r-- | results/classifier/118/files/1469 | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/results/classifier/118/files/1469 b/results/classifier/118/files/1469 new file mode 100644 index 00000000..97a30c48 --- /dev/null +++ b/results/classifier/118/files/1469 @@ -0,0 +1,78 @@ +files: 0.954 +semantic: 0.776 +vnc: 0.770 +debug: 0.766 +user-level: 0.756 +PID: 0.741 +ppc: 0.739 +device: 0.733 +risc-v: 0.660 +hypervisor: 0.657 +socket: 0.621 +graphic: 0.601 +KVM: 0.590 +architecture: 0.587 +assembly: 0.583 +network: 0.579 +kernel: 0.568 +arm: 0.487 +VMM: 0.472 +i386: 0.444 +x86: 0.440 +TCG: 0.407 +mistranslation: 0.405 +register: 0.390 +performance: 0.390 +boot: 0.375 +peripherals: 0.259 +permissions: 0.251 +virtual: 0.150 + +QEMU 7.2.0 - make install fail +Description of problem: +`[10055/10057] Generating docs/QEMU manual with a custom command +[10056/10057] Generating docs/QEMU man pages with a custom command +[10056/10057] Installing files. +Traceback (most recent call last): + File "/home/clive/.local/bin/meson", line 5, in <module> + from mesonbuild.mesonmain import main +ModuleNotFoundError: No module named 'mesonbuild' +FAILED: meson-internal__install +/home/clive/.local/bin/meson install --no-rebuild +ninja: build stopped: subcommand failed. +make: *** [Makefile:165: run-ninja] Error 1 +[clive@localhost build]$ +` +Steps to reproduce: +1. as user in shell +2. `wget https://download.qemu.org/qemu-7.2.0.tar.xz` +2. `tar xvJf qemu-7.2.0.tar.xz` +3. `cd qemu-7.2.0` +4. `./configure` +5. `make install` +Additional information: +installed meson via `pip3 --user` + +`pip3 --list` **Output** `meson version 1.0.0` + +**Using** - python version 3.11.1 + +`ninja-build` installed via package manager `dnf` + +**Using** - ninja-build version 1.8.2 + +Used `dnf builddep` on `ninja-build`, `meson`, and `qemu-kvm` before and after installation confirming I have dependencies. + + File "/home/clive/.local/bin/meson" contains +``` +#!/usr/local/bin/python3.11 +# -*- coding: utf-8 -*- +import re +import sys +from mesonbuild.mesonmain import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) + + +``` |