[llvm] Create a CharSetConverter class with both iconv and icu support (PR #74516)

David Tenty via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 13:35:28 PDT 2025


================
@@ -294,6 +294,37 @@ if(LLVM_HAS_LOGF128)
   set(LLVM_HAS_LOGF128 "${HAS_LOGF128}")
 endif()
 
+# Check for ICU.
+if(LLVM_ENABLE_ICU)
+  set(LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})
+  set(CMAKE_FIND_LIBRARY_SUFFIXES ".so")
----------------
daltenty wrote:

I checked the AIX ICU libraries, this isn't a concern there as the OS only distributes the shared library version anyway. 

But this check should be generalized to account for the different suffixes on other platforms:
```suggestion
  set(CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_SHARED_LIBRARY_SUFFIX}")
```

https://github.com/llvm/llvm-project/pull/74516


More information about the llvm-commits mailing list