games/eduke32: disable LTO on powerpc64

LTO is currently broken in clang on powerpc64.
This commit is contained in:
Piotr Kubaj 2021-01-28 15:56:36 +00:00
parent b2b93c5843
commit 96c5986d5e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=563144

View file

@ -78,7 +78,7 @@ FULL_PLIST_FILES= ${DATADIR}/duke3d.grp ${DATADIR}/duke.rts
.include <bsd.port.options.mk>
.if ${ARCH} == i386
.if ${ARCH} == i386 || ${ARCH} == powerpc64
MAKE_ARGS+= LTO=0
.endif