[llvm] [llvm-config] Fix libLLVM.dylib detection (PR #82990)
Tim Neumann via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 03:07:04 PST 2025
https://github.com/TimNN updated https://github.com/llvm/llvm-project/pull/82990
>From cb697244e079324524d25471652121555190e3ff Mon Sep 17 00:00:00 2001
From: Tim Neumann <timnn at google.com>
Date: Mon, 26 Feb 2024 12:09:32 +0100
Subject: [PATCH] [llvm-config] Fix libLLVM.dylib detection
---
llvm/tools/llvm-config/llvm-config.cpp | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/llvm/tools/llvm-config/llvm-config.cpp b/llvm/tools/llvm-config/llvm-config.cpp
index d5b76b1bb6c16..e4e03ff4bd19c 100644
--- a/llvm/tools/llvm-config/llvm-config.cpp
+++ b/llvm/tools/llvm-config/llvm-config.cpp
@@ -382,13 +382,13 @@ int main(int argc, char **argv) {
/// removed or, as in the case of CMake's `BUILD_SHARED_LIBS`, never present
/// in the first place. This can't be done at configure/build time.
- StringRef SharedExt, SharedVersionedExt, SharedDir, SharedPrefix, StaticExt,
+ StringRef SharedExt, SharedSuffix, SharedDir, SharedPrefix, StaticExt,
StaticPrefix, StaticDir = "lib";
std::string DirSep = "/";
const Triple HostTriple(Triple::normalize(LLVM_HOST_TRIPLE));
if (HostTriple.isOSWindows()) {
SharedExt = "dll";
- SharedVersionedExt = LLVM_DYLIB_VERSION ".dll";
+ SharedSuffix = "-" LLVM_DYLIB_VERSION ".dll";
if (HostTriple.isOSCygMing()) {
SharedPrefix = "lib";
StaticExt = "a";
@@ -408,14 +408,14 @@ int main(int argc, char **argv) {
StaticDir = ActiveLibDir;
} else if (HostTriple.isOSDarwin()) {
SharedExt = "dylib";
- SharedVersionedExt = LLVM_DYLIB_VERSION ".dylib";
+ SharedSuffix = ".dylib";
StaticExt = "a";
StaticDir = SharedDir = ActiveLibDir;
StaticPrefix = SharedPrefix = "lib";
} else {
// default to the unix values:
SharedExt = "so";
- SharedVersionedExt = LLVM_DYLIB_VERSION ".so";
+ SharedSuffix = "-" LLVM_DYLIB_VERSION ".so";
StaticExt = "a";
StaticDir = SharedDir = ActiveLibDir;
StaticPrefix = SharedPrefix = "lib";
@@ -427,8 +427,7 @@ int main(int argc, char **argv) {
const bool BuiltSharedLibs = !!LLVM_ENABLE_SHARED;
bool DyLibExists = false;
- const std::string DyLibName =
- (SharedPrefix + "LLVM-" + SharedVersionedExt).str();
+ const std::string DyLibName = (SharedPrefix + "LLVM" + SharedSuffix).str();
// If LLVM_LINK_DYLIB is ON, the single shared library will be returned
// for "--libs", etc, if they exist. This behaviour can be overridden with
More information about the llvm-commits
mailing list