Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jan 2018 09:14:21 +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: r459979 - head/emulators/wine
Message-ID:  <201801260914.w0Q9ELFT044749@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Fri Jan 26 09:14:21 2018
New Revision: 459979
URL: https://svnweb.freebsd.org/changeset/ports/459979

Log:
  Use GCC instead of the system compiler on FreeBSD 12.x with clang 6.0.0
  since that compiler crashes.
  
  (There may be a way to work around this in Wine, but that is unlikely
  to be accepted for the stable release branch.)
  
  PR:		224863

Modified:
  head/emulators/wine/Makefile

Modified: head/emulators/wine/Makefile
==============================================================================
--- head/emulators/wine/Makefile	Fri Jan 26 09:02:08 2018	(r459978)
+++ head/emulators/wine/Makefile	Fri Jan 26 09:14:21 2018	(r459979)
@@ -107,6 +107,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
+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?201801260914.w0Q9ELFT044749>