[Lldb-commits] [lldb] [lldb][NFC] Remove unused find_program logic (PR #163446)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 14 13:28:19 PDT 2025
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/163446
All the unifdef logic was moved to source/API/CMakeLists.txt. This was left behind during that move.
>From 1b1b0ab0f8947cee78bdda9f6aafcbdca60f308a Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Tue, 14 Oct 2025 13:25:42 -0700
Subject: [PATCH] [lldb][NFC] Remove unused find_program logic
All the unifdef logic was moved to source/API/CMakeLists.txt. This was
left behind during that move.
---
lldb/cmake/modules/LLDBFramework.cmake | 2 --
1 file changed, 2 deletions(-)
diff --git a/lldb/cmake/modules/LLDBFramework.cmake b/lldb/cmake/modules/LLDBFramework.cmake
index c6f00ed05cfc2..23d9d49d0cefc 100644
--- a/lldb/cmake/modules/LLDBFramework.cmake
+++ b/lldb/cmake/modules/LLDBFramework.cmake
@@ -68,8 +68,6 @@ if(NOT APPLE_EMBEDDED)
)
endif()
-find_program(unifdef_EXECUTABLE unifdef)
-
# Wrap output in a target, so lldb-framework can depend on it.
add_custom_target(liblldb-resource-headers DEPENDS lldb-sbapi-dwarf-enums ${lldb_staged_headers})
set_target_properties(liblldb-resource-headers PROPERTIES FOLDER "LLDB/Resources")
More information about the lldb-commits
mailing list