Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jan 2018 14:47:36 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r460219 - head/emulators/wine-devel
Message-ID:  <201801281447.w0SElaJw052204@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Sun Jan 28 14:47:36 2018
New Revision: 460219
URL: https://svnweb.freebsd.org/changeset/ports/460219

Log:
  Use GCC instead of the system compiler on FreeBSD 12.x/AMD64 with
  clang 6.0.0 since that compiler crashes.
  
  PR:		224863

Modified:
  head/emulators/wine-devel/Makefile

Modified: head/emulators/wine-devel/Makefile
==============================================================================
--- head/emulators/wine-devel/Makefile	Sun Jan 28 14:32:21 2018	(r460218)
+++ head/emulators/wine-devel/Makefile	Sun Jan 28 14:47:36 2018	(r460219)
@@ -110,6 +110,11 @@ X11_LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig
 
 .include <bsd.port.pre.mk>
 
+# PR224863: clang 6.0.0 crashes
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 && ${ARCH} == amd64
+USE_GCC=	yes
+.endif
+
 .if ${ARCH} == amd64
 # Wine is composed of three parts:
 #  - wine (aka this port) is the 32-bit component and runs 32-bit programs (on FreeBSD/i386)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801281447.w0SElaJw052204>