From 0246b1b971a3f991540acd72ef66b5481d9bc76f Mon Sep 17 00:00:00 2001 From: Muneeb Ahmed <32603485+muneebmahmed@users.noreply.github.com> Date: Mon, 20 Nov 2023 12:18:40 -0800 Subject: [PATCH] Enable macos clang Apple clang uses different versioning from LLVM, so 15.0.0 is compatible --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2adc8c2..970e818 100644 --- a/Makefile +++ b/Makefile @@ -59,10 +59,14 @@ override CXX_VERSION_MAJOR := $(shell echo $(CXX_VERSION) | cut -d '.' -f 1) CLANG_WORKS = false GCC_WORKS = false +MIN_CLANG_VERSION = 16 #? Supported is Clang 16.0.0 and later ifeq ($(CXX_IS_CLANG),true) - ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt 16; echo $$?),0) + ifeq ($(shell $(CXX) --version | grep Apple >/dev/null 2>&1; echo $$?),0) + MIN_CLANG_VERSION := 15 + endif + ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt $(MIN_CLANG_VERSION); echo $$?),0) CLANG_WORKS := true endif endif