svn commit: r328883 - head/emulators/qemu-devel

Juergen Lock nox at FreeBSD.org
Mon Sep 30 22:26:09 UTC 2013


Author: nox
Date: Mon Sep 30 22:26:08 2013
New Revision: 328883
URL: http://svnweb.freebsd.org/changeset/ports/328883

Log:
  - 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

Modified:
  head/emulators/qemu-devel/Makefile

Modified: head/emulators/qemu-devel/Makefile
==============================================================================
--- head/emulators/qemu-devel/Makefile	Mon Sep 30 22:24:04 2013	(r328882)
+++ head/emulators/qemu-devel/Makefile	Mon Sep 30 22:26:08 2013	(r328883)
@@ -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-
 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


More information about the svn-ports-head mailing list