QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
21 years ago | |
|---|---|---|
| audio | 22 years ago | |
| hw | 21 years ago | |
| keymaps | 22 years ago | |
| linux-user | 22 years ago | |
| pc-bios | 22 years ago | |
| slirp | 22 years ago | |
| target-arm | 22 years ago | |
| target-i386 | 21 years ago | |
| target-ppc | 21 years ago | |
| target-sparc | 21 years ago | |
| tests | 21 years ago | |
| .cvsignore | 22 years ago | |
| COPYING | 23 years ago | |
| COPYING.LIB | 23 years ago | |
| Changelog | 22 years ago | |
| Makefile | 22 years ago | |
| Makefile.target | 21 years ago | |
| README | 23 years ago | |
| README.distrib | 23 years ago | |
| TODO | 22 years ago | |
| VERSION | 22 years ago | |
| a.out.h | 22 years ago | |
| aes.c | 22 years ago | |
| aes.h | 22 years ago | |
| alpha-dis.c | 23 years ago | |
| alpha.ld | 23 years ago | |
| arm-dis.c | 23 years ago | |
| arm.ld | 23 years ago | |
| block-cloop.c | 22 years ago | |
| block-cow.c | 22 years ago | |
| block-dmg.c | 22 years ago | |
| block-qcow.c | 22 years ago | |
| block-vmdk.c | 22 years ago | |
| block.c | 22 years ago | |
| block_int.h | 22 years ago | |
| bswap.h | 22 years ago | |
| configure | 21 years ago | |
| console.c | 22 years ago | |
| cpu-all.h | 21 years ago | |
| cpu-defs.h | 22 years ago | |
| cpu-exec.c | 21 years ago | |
| dis-asm.h | 22 years ago | |
| disas.c | 21 years ago | |
| disas.h | 21 years ago | |
| dyngen-exec.h | 21 years ago | |
| dyngen-op.h | 22 years ago | |
| dyngen.c | 21 years ago | |
| dyngen.h | 22 years ago | |
| elf.h | 23 years ago | |
| exec-all.h | 22 years ago | |
| exec.c | 21 years ago | |
| gdbstub.c | 22 years ago | |
| i386-dis.c | 22 years ago | |
| i386-vl.ld | 23 years ago | |
| i386.ld | 23 years ago | |
| ia64-syscall.S | 23 years ago | |
| keymaps.c | 22 years ago | |
| linux-2.6.9-qemu-fast.patch | 22 years ago | |
| m68k.ld | 23 years ago | |
| monitor.c | 21 years ago | |
| osdep.c | 22 years ago | |
| osdep.h | 22 years ago | |
| ppc-dis.c | 22 years ago | |
| ppc.ld | 23 years ago | |
| qemu-binfmt-conf.sh | 22 years ago | |
| qemu-doc.texi | 22 years ago | |
| qemu-img.c | 22 years ago | |
| qemu-img.texi | 22 years ago | |
| qemu-tech.texi | 22 years ago | |
| readline.c | 22 years ago | |
| s390.ld | 23 years ago | |
| sdl.c | 22 years ago | |
| sdl_keysym.h | 22 years ago | |
| softmmu_header.h | 22 years ago | |
| softmmu_template.h | 22 years ago | |
| sparc-dis.c | 23 years ago | |
| sparc.ld | 23 years ago | |
| texi2pod.pl | 23 years ago | |
| thunk.c | 21 years ago | |
| thunk.h | 22 years ago | |
| translate-all.c | 22 years ago | |
| vgafont.h | 22 years ago | |
| vl.c | 21 years ago | |
| vl.h | 22 years ago | |
| x86_64.ld | 22 years ago | |
README
The QEMU x86 emulator
---------------------
INSTALLATION
------------
Type
./configure
make
to build qemu, qemu-CPU and libqemu.a (CPU is the name of the various
supported target CPUs).
Type
make install
to install QEMU in /usr/local
Tested tool versions
--------------------
In order to compile QEMU succesfully, it is very important that you
have the right tools. The most important one is gcc. I cannot guaranty
that QEMU works if you do not use a tested gcc version. Look at
'configure' and 'Makefile' if you want to make a different gcc
version work.
host gcc binutils glibc linux distribution
----------------------------------------------------------------------
x86 2.95.2 2.13.2 2.1.3 2.4.18
3.2 2.13.2 2.1.3 2.4.18
2.96 2.11.93.0.2 2.2.5 2.4.18 Red Hat 7.3
3.2.2 2.13.90.0.18 2.3.2 2.4.20 Red Hat 9
PowerPC 3.3 [4] 2.13.90.0.18 2.3.1 2.4.20briq
3.2
Alpha 3.3 [1] 2.14.90.0.4 2.2.5 2.2.20 [2] Debian 3.0
Sparc32 2.95.4 2.12.90.0.1 2.2.5 2.4.18 Debian 3.0
ARM 2.95.4 2.12.90.0.1 2.2.5 2.4.9 [3] Debian 3.0
[1] On Alpha, QEMU needs the gcc 'visibility' attribute only available
for gcc version >= 3.3.
[2] Linux >= 2.4.20 is necessary for precise exception support
(untested).
[3] 2.4.9-ac10-rmk2-np1-cerf2
[4] gcc 2.95.x generates invalid code when using too many register
variables. You must use gcc 3.x on PowerPC.
Documentation
-------------
Read the documentation in qemu-doc.html.
Fabrice Bellard.