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.
 
 
 
 
 
 
bellard 5a91de8c90 precise exception support 24 years ago
linux-user added getrusage 24 years ago
tests more exception tests - support for precise exceptions 24 years ago
COPYING distribution patches 24 years ago
COPYING.LIB update 24 years ago
Changelog update 24 years ago
Makefile added exec.h 24 years ago
README update 24 years ago
README.distrib update 24 years ago
TODO update 24 years ago
VERSION update 24 years ago
alpha-dis.c alpha disas (Falk Hueffner) 24 years ago
alpha.ld alpha support 24 years ago
configure Sparc update (David S. Miller) 24 years ago
cpu-i386.h direct chaining for PowerPC and i386 24 years ago
dis-asm.h PowerPC disas code 24 years ago
dis-buf.c added flags computation optimization 24 years ago
disas.c fixed cast 24 years ago
disas.h PowerPC disas code 24 years ago
dyngen.c direct chaining for PowerPC and i386 24 years ago
elf.h ia64 support 24 years ago
exec-i386.c more efficient locking 24 years ago
exec-i386.h direct chaining for PowerPC and i386 24 years ago
exec.c direct chaining for PowerPC and i386 24 years ago
exec.h more efficient locking 24 years ago
i386-dis.c ISO C fixes 24 years ago
i386.ld This commit was generated by cvs2svn to compensate for changes in r2, 24 years ago
ia64-syscall.S ia64 support 24 years ago
op-i386.c direct chaining for PowerPC and i386 24 years ago
op_string.h changed I/O function prototype to include emulator state 24 years ago
opc-i386.h direct chaining for PowerPC and i386 24 years ago
opreg_template.h glibc2.2 fixes - more command line options - misc doc fixes 24 years ago
ops_template.h direct chaining for PowerPC and i386 24 years ago
ppc-dis.c PowerPC disas code 24 years ago
ppc.ld ppc build 24 years ago
qemu-doc.texi update 24 years ago
s390.ld update 24 years ago
syscall-i386.h removed trace - merged 2.4.20 vm86 patches 24 years ago
thunk.c 64 bit fix 24 years ago
thunk.h ia64 support 24 years ago
translate-i386.c precise exception support 24 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.

Documentation
-------------

Read the documentation in qemu-doc.html.


Fabrice Bellard.