git: 21b4fc29b8c3 - main - www/node18: Fix build with Clang on armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Dec 2023 20:56:15 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=21b4fc29b8c345bc6facbd52149b3033b750257e commit 21b4fc29b8c345bc6facbd52149b3033b750257e Author: Brad Davis <brd@FreeBSD.org> AuthorDate: 2023-12-14 20:52:47 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-12-14 20:52:47 +0000 www/node18: Fix build with Clang on armv7 PR: 275756 --- www/node18/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/node18/Makefile b/www/node18/Makefile index e890ce7f266b..2b6a599d9477 100644 --- a/www/node18/Makefile +++ b/www/node18/Makefile @@ -68,7 +68,7 @@ NLS_LIB_DEPENDS= libicui18n.so:devel/icu .include "Makefile.version" .include <bsd.port.pre.mk> -.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 160 && (${ARCH} == aarch64 || ${ARCH:Mpowerpc64*}) +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 160 && (${ARCH} == aarch64 || ${ARCH} == armv7 || ${ARCH:Mpowerpc64*}) CXXFLAGS+= -Wno-error=enum-constexpr-conversion .endif