svn commit: r538515 - head/editors/neovim
Piotr Kubaj
pkubaj at FreeBSD.org
Thu Jun 11 17:44:03 UTC 2020
Author: pkubaj
Date: Thu Jun 11 17:44:02 2020
New Revision: 538515
URL: https://svnweb.freebsd.org/changeset/ports/538515
Log:
editors/neovim: fix build on powerpc64 elfv2
Use GCC instead of Clang, Clang-compiled binary crashes at testing. Strangely, it doesn't crash when built with WITH_DEBUG=yes, but that makes debugging hard.
Modified:
head/editors/neovim/Makefile
Modified: head/editors/neovim/Makefile
==============================================================================
--- head/editors/neovim/Makefile Thu Jun 11 17:30:21 2020 (r538514)
+++ head/editors/neovim/Makefile Thu Jun 11 17:44:02 2020 (r538515)
@@ -57,6 +57,12 @@ NLS_USES= gettext
PYNVIM_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pynvim>=0.3.0:editors/py-pynvim@${PY_FLAVOR}
PYNVIM_USES= python:run
+.include <bsd.port.options.mk>
+
+.if ${ARCH} == powerpc64
+USES+= compiler:gcc-c++11-lib
+.endif
+
post-patch:
${REINPLACE_CMD} -e \
's|lua_objlen|lua_rawlen| ; \
More information about the svn-ports-all
mailing list