svn commit: r563144 - head/games/eduke32

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jan 28 15:56:37 UTC 2021


Author: pkubaj
Date: Thu Jan 28 15:56:36 2021
New Revision: 563144
URL: https://svnweb.freebsd.org/changeset/ports/563144

Log:
  games/eduke32: disable LTO on powerpc64
  
  LTO is currently broken in clang on powerpc64.

Modified:
  head/games/eduke32/Makefile

Modified: head/games/eduke32/Makefile
==============================================================================
--- head/games/eduke32/Makefile	Thu Jan 28 15:46:56 2021	(r563143)
+++ head/games/eduke32/Makefile	Thu Jan 28 15:56:36 2021	(r563144)
@@ -78,7 +78,7 @@ FULL_PLIST_FILES=	${DATADIR}/duke3d.grp ${DATADIR}/duk
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == i386
+.if ${ARCH} == i386 || ${ARCH} == powerpc64
 MAKE_ARGS+=	LTO=0
 .endif
 


More information about the svn-ports-head mailing list