From bd3f92f10901ca9fe5487ffaca59e3ed312454a9 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Thu, 5 Sep 2024 09:04:10 +0100 Subject: [PATCH] [llvm-core] remove remaining split-dwarf capability --- recipes/llvm-core/all/conanfile.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/recipes/llvm-core/all/conanfile.py b/recipes/llvm-core/all/conanfile.py index 8a2954c7a22da..172f48102fc18 100644 --- a/recipes/llvm-core/all/conanfile.py +++ b/recipes/llvm-core/all/conanfile.py @@ -268,14 +268,6 @@ def generate(self): self._apply_resource_limits(cmake_variables) - # this capability is back-ported from LLVM 14.x - is_platform_ELF_based = self.settings.os in [ - "Linux", "Android", "FreeBSD", "SunOS", "AIX", "Neutrino", "VxWorks" - ] - if is_platform_ELF_based: - self.output.info("ELF Platform Detected, optimizing memory usage during debug build linking.") - cmake_variables["LLVM_USE_SPLIT_DWARF"] = True - if is_msvc(self): build_type = str(self.settings.build_type).upper() cmake_variables[f"LLVM_USE_CRT_{build_type}"] = msvc_runtime_flag(self)