summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-08-24 19:10:35 -0700
committerKhem Raj <raj.khem@gmail.com>2018-09-09 07:59:31 -0700
commit12b98a5e70fc680e16dfe9e76e844d0d8276fa67 (patch)
treee3ed645c3b600287ea9e2fd1f5444c697b2dad0e /recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch
parent9a0bd29eac2be5f88e3e198929181d3591dd7ec7 (diff)
downloadmeta-clang-12b98a5e70fc680e16dfe9e76e844d0d8276fa67.tar.gz
recipes: Upgrade to clang 7.0.0 Release (rc2)
- Update compiler-rt/llvm/clang/lld licence checksums Triggerred due to copyright year update to 2018 Add libunwind and libcxxabi license to checksum list too - Switch to https protocol for fetching from github - Fix _finite functions on musl - Package new .so files built with clang - package libLLVM-${MAJOR_VER}.so as well since llvm-7 generates it without MINOR_VERSION Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch')
-rw-r--r--recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch30
1 files changed, 14 insertions, 16 deletions
diff --git a/recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch b/recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch
index 1167b5a..42e75f2 100644
--- a/recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch
+++ b/recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch
@@ -1,4 +1,4 @@
1From 397a9e7dc35a7b360bb8466996ae7755574dc04c Mon Sep 17 00:00:00 2001 1From 479c943c3b87887d2b93c711220894e94d49979d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 22 May 2017 17:36:16 -0700 3Date: Mon, 22 May 2017 17:36:16 -0700
4Subject: [PATCH 2/2] lldb: Add -lxml2 to linker cmdline of xml is found 4Subject: [PATCH 2/2] lldb: Add -lxml2 to linker cmdline of xml is found
@@ -19,24 +19,22 @@ Fixes
19 19
20Signed-off-by: Khem Raj <raj.khem@gmail.com> 20Signed-off-by: Khem Raj <raj.khem@gmail.com>
21--- 21---
22 source/Host/CMakeLists.txt | 4 ++++ 22 source/Host/CMakeLists.txt | 2 +-
23 1 file changed, 4 insertions(+) 23 1 file changed, 1 insertion(+), 1 deletion(-)
24 24
25diff --git a/source/Host/CMakeLists.txt b/source/Host/CMakeLists.txt 25diff --git a/source/Host/CMakeLists.txt b/source/Host/CMakeLists.txt
26index 2b6f0e48a..1a910a9af 100644 26index 5a92447ed..22ce6eee4 100644
27--- a/source/Host/CMakeLists.txt 27--- a/source/Host/CMakeLists.txt
28+++ b/source/Host/CMakeLists.txt 28+++ b/source/Host/CMakeLists.txt
29@@ -175,6 +175,10 @@ if (NOT LLDB_DISABLE_LIBEDIT) 29@@ -149,7 +149,7 @@ if (APPLE)
30 list(APPEND EXTRA_LIBS edit) 30 list(APPEND EXTRA_LIBS xml2)
31 endif() 31 else ()
32 32 if (LIBXML2_FOUND)
33+if (LIBXML2_FOUND) 33- list(APPEND EXTRA_LIBS ${LIBXML2_LIBRARIES})
34+ list(APPEND EXTRA_LIBS xml2) 34+ list(APPEND EXTRA_LIBS xml2)
35+endif () 35 endif()
36+ 36 endif ()
37 add_lldb_library(lldbHost 37 if (HAVE_LIBDL)
38 ${HOST_SOURCES}
39
40-- 38--
412.16.1 392.18.0
42 40