From 3624caf2e8ec253630492f6dc77402bcde20b19e Mon Sep 17 00:00:00 2001 From: Jean-Francois Panisset Date: Fri, 15 Aug 2025 01:43:57 +0000 Subject: [PATCH] Bring back compiler-rt clang runtime This is used by some builds for address space sanitization for instance. Functionality was dropped by mistake with the 2025.1 releases. Signed-off-by: Jean-Francois Panisset --- packages/conan/recipes/clang/conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/conan/recipes/clang/conanfile.py b/packages/conan/recipes/clang/conanfile.py index d1854a89..eab2dac7 100644 --- a/packages/conan/recipes/clang/conanfile.py +++ b/packages/conan/recipes/clang/conanfile.py @@ -349,6 +349,7 @@ def generate(self): # It is likely the latter that the user expects by a "shared library" build. "BUILD_SHARED_LIBS": False, "LLVM_ENABLE_PROJECTS": "clang;clang-tools-extra;lld", + "LLVM_ENABLE_RUNTIMES": "compiler-rt", # ASWF: some projects use address space sanitization "LLVM_BUILD_LLVM_DYLIB": self.options.shared, "LLVM_LINK_LLVM_DYLIB": self.options.shared, "LLVM_DYLIB_COMPONENTS": self.options.components,