Date: Fri, 3 Dec 2021 23:27:56 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b4a8d5e1a4bd - main - editors/neovim: only use GCC on powerpc64 Message-ID: <202112032327.1B3NRubF065757@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=b4a8d5e1a4bdf0df68a3bf80885bf811a3cd893b commit b4a8d5e1a4bdf0df68a3bf80885bf811a3cd893b Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-12-03 23:21:37 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-12-03 23:21:37 +0000 editors/neovim: only use GCC on powerpc64 On powerpc64le, clang works fine with LTO. --- editors/neovim/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editors/neovim/Makefile b/editors/neovim/Makefile index 0a0429fe5453..b665d6f1659f 100644 --- a/editors/neovim/Makefile +++ b/editors/neovim/Makefile @@ -63,6 +63,9 @@ PYNVIM_USES= python:run .if ${ARCH:Mpowerpc64*} LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit-openresty +.endif + +.if ${ARCH} == powerpc64 USES+= compiler:gcc-c++11-lib .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202112032327.1B3NRubF065757>