https://bugs.llvm.org/show_bug.cgi?id=42029

            Bug ID: 42029
           Summary: LLVM vcpkg build error due to wrong ld linkage in
                    CMakeLists in libclang
           Product: new-bugs
           Version: 7.0
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: new bugs
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]

see https://github.com/microsoft/vcpkg/issues/6584

find_library(DL_LIBRARY_PATH dl)
if (DL_LIBRARY_PATH)
  list(APPEND LIBS dl)
endif()

should probably be 
list(APPEND LIBS "${DL_LIBRARY_PATH}")

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to