diff options
author | nox <nox@FreeBSD.org> | 2013-10-01 06:26:08 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2013-10-01 06:26:08 +0800 |
commit | 4de894e531259804fdaa54cb2b6c53087678665d (patch) | |
tree | bfb4f9e213d7894eeb35e18e42e69886779edefb /emulators | |
parent | 2e56fc00f44d80b145f5fd1d17381ee34f45f281 (diff) | |
download | freebsd-ports-gnome-4de894e531259804fdaa54cb2b6c53087678665d.tar.gz freebsd-ports-gnome-4de894e531259804fdaa54cb2b6c53087678665d.tar.zst freebsd-ports-gnome-4de894e531259804fdaa54cb2b6c53087678665d.zip |
- Set USE_GCC= any for now when building all targets as clang seems
to build a broken mips-softmmu target. Some info is here - feel
free to debug :)
http://people.freebsd.org/~nox/tmp/qemu-1.6.0-mips-softmmu-crash.txt
- Bump PORTREVISION.
Submitted by: sbruno
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/qemu-devel/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index 6934913f6cb9..d35d01d8c797 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= qemu PORTVERSION= 1.6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/:release \ LOCAL/nox:snapshot @@ -63,6 +63,10 @@ CONFIGURE_ARGS+= --enable-nptl --target-list=i386-softmmu,x86_64-softmmu,i386-bs CONFIGURE_ARGS+= --target-list=i386-softmmu,x86_64-softmmu .endif .else +# clang seems to build a broken mips-softmmu target (qemu segfaults +# at boot) Feel free to debug :) Some info is here: +# http://people.freebsd.org/~nox/tmp/qemu-1.6.0-mips-softmmu-crash.txt +USE_GCC= any .if empty(PORT_OPTIONS:MBSD_USER) CONFIGURE_ARGS+= --disable-bsd-user .else |