From 89c1e8319f508e8fb33e09a38fb18b3c84240608 Mon Sep 17 00:00:00 2001 From: arichardson Date: Wed, 14 Oct 2020 12:28:48 +0000 Subject: [PATCH] Don't build the malo module with clang 10 Compiling it with LLVM 10 triggers https://bugs.llvm.org/show_bug.cgi?id=44351 While LLVM 11 is the default compiler, I regularly build with CROSS_TOOLCHAIN=llvm10 or use system packages for clang on Linux/macOS and those have not been updated to 11 yet. --- sys/modules/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 5ebc042fb82..e7d80ab5507 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -224,7 +224,7 @@ SUBDIR= \ mac_seeotheruids \ mac_stub \ mac_test \ - malo \ + ${_malo} \ md \ mdio \ mem \ @@ -804,6 +804,12 @@ _bcm283x_clkman= bcm283x_clkman _bcm283x_pwm= bcm283x_pwm .endif +.if !(${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} < 110000) +# LLVM 10 crashes when building if_malo_pci.c, fixed in LLVM11: +# https://bugs.llvm.org/show_bug.cgi?id=44351 +_malo= malo +.endif + SUBDIR+=${MODULES_EXTRA} .for reject in ${WITHOUT_MODULES} -- 2.45.0