From d09a7132d8162ffa14fdbf71feea2a19b0158097 Mon Sep 17 00:00:00 2001 From: Lone_Wolf Date: Thu, 27 Apr 2023 19:44:55 +0200 Subject: [PATCH] clc: Add clangASTMatchers to fix static llvm build of microsoft-clc with LLVM 16+ Cc: mesa-stable Reviewed-by: Jesse Natalie Part-of: --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 24e42dd..2b6fb31 100644 --- a/meson.build +++ b/meson.build @@ -1765,6 +1765,9 @@ if with_clc if dep_llvm.version().version_compare('>= 15.0') clang_modules += 'clangSupport' endif + if dep_llvm.version().version_compare('>= 16.0') + clang_modules += 'clangASTMatchers' + endif dep_clang = [] foreach m : clang_modules -- 2.7.4