diff options
author | Brad Davis <brd@FreeBSD.org> | 2023-12-15 04:52:47 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-12-15 04:52:47 +0800 |
commit | 21b4fc29b8c345bc6facbd52149b3033b750257e (patch) | |
tree | ffc49decb2b63218d8d7e6b38dd9e39ba338fadf /www/node18 | |
parent | devel/py-astroid253: Remove obsoleted port (diff) |
www/node18: Fix build with Clang on armv7
PR: 275756
Diffstat (limited to 'www/node18')
-rw-r--r-- | www/node18/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |