diff options
author | nox <nox@FreeBSD.org> | 2014-05-20 01:12:58 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2014-05-20 01:12:58 +0800 |
commit | a96ac22df05a5ae3137b77a7c977d384166f36e2 (patch) | |
tree | 95ea12216bd65ade2efbd94bffaa686457c7c04a /emulators/Makefile | |
parent | 15c3683507fa08f7a5523fd3965d75f261ed9678 (diff) | |
download | freebsd-ports-gnome-a96ac22df05a5ae3137b77a7c977d384166f36e2.tar.gz freebsd-ports-gnome-a96ac22df05a5ae3137b77a7c977d384166f36e2.tar.zst freebsd-ports-gnome-a96ac22df05a5ae3137b77a7c977d384166f36e2.zip |
Add new slave port emulators/qemu-user-static:
QEMU is a FAST! processor emulator using dynamic translation to achieve
good emulation speed.
QEMU has two operating modes:
* Full system emulation. In this mode, QEMU emulates a full system
(for example a PC), including a processor and various peripherials.
It can be used to launch different Operating Systems without rebooting
the PC or to debug system code.
* User mode emulation (Linux host only). In this mode, QEMU can launch
Linux processes compiled for one CPU on another CPU. It can be used to
launch the Wine Windows API emulator or to ease cross-compilation and
cross-debugging.
As QEMU requires no host kernel patches to run, it is very safe and easy to use.
This is a slave port of emulators/qemu-devel to build only static
bsd-user targets named like qemu-mips-static. While still being
experimental people have already built quite a few armv6/mips/mips64
packages using these and e.g. poudriere. Some notes are also here:
http://wiki.freebsd.org/QemuUserModeHowTo
WWW: http://wiki.qemu.org/Main_Page
Suggested by: bapt
Diffstat (limited to 'emulators/Makefile')
-rw-r--r-- | emulators/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulators/Makefile b/emulators/Makefile index e556d6ed9dc6..fb4062da696b 100644 --- a/emulators/Makefile +++ b/emulators/Makefile @@ -112,6 +112,7 @@ SUBDIR += qemu SUBDIR += qemu-devel SUBDIR += qemu-launcher + SUBDIR += qemu-user-static SUBDIR += qmc2 SUBDIR += qtemu SUBDIR += quasi88 |