From 420005fac48c3dddc7807674a5276a75d4bead77 Mon Sep 17 00:00:00 2001 From: "Tobias C. Berner" Date: Fri, 30 Jun 2023 19:04:02 +0200 Subject: [PATCH] net-im/neochat: work around compiler bug present on current PR: 272285 --- net-im/neochat/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index 994e5b328e5da..d6414f3f70795 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -38,6 +38,12 @@ USE_XORG= x11 .if ${ARCH:Mpowerpc*} CXX= clang++${LLVM_VERSION} USES+= llvm:min=16 +.else +# Work around compiler bug, see pr: 272285 +USES+= llvm +CC= ${LLVM_PREFIX}/bin/clang +CPP= ${LLVM_PREFIX}/bin/clang-cpp +CXX= ${LLVM_PREFIX}/bin/clang++ .endif .include