[llvm] Create a CharSetConverter class with both iconv and icu support (PR #74516)
Abhina Sree via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 18 10:29:50 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}
----------------
abhina-sree wrote:
Thanks for catching! I copied the license text from here https://github.com/unicode-org/icu/blob/main/LICENSE into to CharSet.cpp file. Please let me know if I need to do anything more
https://github.com/llvm/llvm-project/pull/74516
More information about the llvm-commits
mailing list