diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-08-24 19:10:35 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-09-09 07:59:31 -0700 |
commit | 12b98a5e70fc680e16dfe9e76e844d0d8276fa67 (patch) | |
tree | e3ed645c3b600287ea9e2fd1f5444c697b2dad0e /recipes-devtools/clang/lldb/0002-lldb-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch | |
parent | 9a0bd29eac2be5f88e3e198929181d3591dd7ec7 (diff) | |
download | meta-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.patch | 30 |
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 @@ | |||
1 | From 397a9e7dc35a7b360bb8466996ae7755574dc04c Mon Sep 17 00:00:00 2001 | 1 | From 479c943c3b87887d2b93c711220894e94d49979d Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Mon, 22 May 2017 17:36:16 -0700 | 3 | Date: Mon, 22 May 2017 17:36:16 -0700 |
4 | Subject: [PATCH 2/2] lldb: Add -lxml2 to linker cmdline of xml is found | 4 | Subject: [PATCH 2/2] lldb: Add -lxml2 to linker cmdline of xml is found |
@@ -19,24 +19,22 @@ Fixes | |||
19 | 19 | ||
20 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 20 | Signed-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 | ||
25 | diff --git a/source/Host/CMakeLists.txt b/source/Host/CMakeLists.txt | 25 | diff --git a/source/Host/CMakeLists.txt b/source/Host/CMakeLists.txt |
26 | index 2b6f0e48a..1a910a9af 100644 | 26 | index 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 | -- |
41 | 2.16.1 | 39 | 2.18.0 |
42 | 40 | ||