Skip to content

Commit 4b0839d

Browse files
committed
arcv: Use QEMU 9.0 instead of 9.2 for compatibility
It's impossible to build QEMU of versions >= 9.1 on AlmaLinux 8 because versions above 9.0 require glibc 2.66 which is not presented in AlmaLinux 8. Signed-off-by: Yuriy Kolerov <ykolerov@synopsys.com>
1 parent 5de3a5e commit 4b0839d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/arcv/qemu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Installing QEMU
44

55
It is best to use the latest official QEMU version for the following exercises. As of today,
6-
it's v9.2 (see [the release notes](https://wiki.qemu.org/ChangeLog/9.2)). The sources are on
6+
it's v9.0 (see [the release notes](https://wiki.qemu.org/ChangeLog/9.0)). The sources are on
77
[GitLab](https://gitlab.com/qemu-project/qemu) or in [the official GitHub mirror](https://github.com/qemu/qemu).
88

99
To get the latest version of QEMU on your system it might be much easier to build it from sources
@@ -29,8 +29,8 @@ $ dnf install git glib2-devel libfdt-devel pixman-devel zlib-devel \
2929
After installation of prerequisites you can download sources, configure, and build in the following way:
3030

3131
```
32-
# Clone v9.2 from GitHub repository
33-
$ git clone --depth 1 -b stable-9.2 https://github.com/qemu/qemu.git
32+
# Clone v9.0 from GitHub repository
33+
$ git clone --depth 1 -b stable-9.0 https://github.com/qemu/qemu.git
3434
3535
# Configure project for build selecting only RISCV32 full system emulation
3636
$ ./configure --target-list=riscv32-softmmu,riscv64-softmmu

0 commit comments

Comments
 (0)