[llvm] Create a CharSetConverter class with both iconv and icu support (PR #74516)
Aaron Ballman via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 19 04:49:55 PDT 2024
================
@@ -295,6 +296,14 @@ add_llvm_component_library(LLVMSupport
Demangle
)
+# Link icu library if it is an external library.
+if(ICU_FOUND)
+ target_link_libraries(LLVMSupport
+ PRIVATE
+ ${ICU_LIBRARIES}
----------------
AaronBallman wrote:
Ah sorry for the confusion, you're right, we did already figure this out. Sorry, I think there's nothing to do here then -- we're not *requiring* the dynamic link, it's opt-in.
https://github.com/llvm/llvm-project/pull/74516
More information about the llvm-commits
mailing list