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.
|
|
23 years ago | |
|---|---|---|
| hw | 23 years ago | |
| linux-user | 23 years ago | |
| tests | 23 years ago | |
| COPYING | 23 years ago | |
| COPYING.LIB | 23 years ago | |
| Changelog | 23 years ago | |
| Makefile | 23 years ago | |
| Makefile.target | 23 years ago | |
| README | 23 years ago | |
| README.distrib | 23 years ago | |
| TODO | 23 years ago | |
| VERSION | 23 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.c | 23 years ago | |
| bswap.h | 23 years ago | |
| configure | 23 years ago | |
| cpu-all.h | 23 years ago | |
| cpu-arm.h | 23 years ago | |
| cpu-defs.h | 23 years ago | |
| cpu-exec.c | 23 years ago | |
| cpu-i386.h | 23 years ago | |
| dis-asm.h | 23 years ago | |
| disas.c | 23 years ago | |
| disas.h | 23 years ago | |
| dyngen-exec.h | 23 years ago | |
| dyngen.c | 23 years ago | |
| dyngen.h | 23 years ago | |
| elf.h | 23 years ago | |
| exec-arm.h | 23 years ago | |
| exec-i386.h | 23 years ago | |
| exec.c | 23 years ago | |
| exec.h | 23 years ago | |
| gdbstub.c | 23 years ago | |
| helper-i386.c | 23 years ago | |
| helper2-i386.c | 23 years ago | |
| i386-dis.c | 23 years ago | |
| i386-vl.ld | 23 years ago | |
| i386.ld | 23 years ago | |
| ia64-syscall.S | 23 years ago | |
| m68k.ld | 23 years ago | |
| op-arm-template.h | 23 years ago | |
| op-arm.c | 23 years ago | |
| op-i386.c | 23 years ago | |
| op_string.h | 23 years ago | |
| opreg_template.h | 23 years ago | |
| ops_mem.h | 23 years ago | |
| ops_template.h | 23 years ago | |
| ops_template_mem.h | 23 years ago | |
| ppc-dis.c | 23 years ago | |
| ppc.ld | 23 years ago | |
| qemu-doc.texi | 23 years ago | |
| s390.ld | 23 years ago | |
| sdl.c | 23 years ago | |
| softmmu_header.h | 23 years ago | |
| softmmu_template.h | 23 years ago | |
| sparc-dis.c | 23 years ago | |
| sparc.ld | 23 years ago | |
| syscall-arm.h | 23 years ago | |
| syscall-i386.h | 23 years ago | |
| thunk.c | 23 years ago | |
| thunk.h | 23 years ago | |
| translate-arm.c | 23 years ago | |
| translate-i386.c | 23 years ago | |
| translate.c | 23 years ago | |
| vl.c | 23 years ago | |
| vl.h | 23 years ago | |
| vlmkcow.c | 23 years ago | |
README
The QEMU x86 emulator
---------------------
INSTALLATION
------------
Type
./configure --interp-prefix=/usr/local/qemu-i386
make
to build qemu and libqemu.a.
Type
make install
to install QEMU in /usr/local/bin
* On x86 you should be able to launch any program by using the
libraries installed on your PC. For example:
./qemu -L / /bin/ls
* On non x86 CPUs, you need first to download at least an x86 glibc
(qemu-XXX-i386-glibc21.tar.gz on the qemu web page). Ensure that
LD_LIBRARY_PATH is not set:
unset LD_LIBRARY_PATH
Then you can launch the precompiled 'ls' x86 executable:
./qemu /usr/local/qemu-i386/bin/ls-i386
You can look at /usr/local/qemu-i386/bin/qemu-conf.sh so that QEMU is
automatically launched by the Linux kernel when you try to launch x86
executables.
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 2.95.4 2.12.90.0.1 2.2.5 2.4.20-pre2 Debian 3.0
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
Documentation
-------------
Read the documentation in qemu-doc.html.
Fabrice Bellard.