libunwind: Upgrade to 1.2rc1+

This helps in compiling with gcc6
drop patches backported to 1.1
remove musl conditional patches, they should work
on glibc too now

(From OE-Core rev: f07c2430903601e9b4462eb09e89a341d5f8f4af)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2016-05-11 10:35:32 -07:00
committed by Richard Purdie
parent fb6ee2225b
commit cc86da055b
2 changed files with 0 additions and 67 deletions

View File

@@ -1,33 +0,0 @@
From 743668f66916b6bb03c92b04be5216400951ace6 Mon Sep 17 00:00:00 2001
From: Victor Kamensky <victor.kamensky@linaro.org>
Date: Wed, 3 Dec 2014 17:35:43 -0800
Subject: [PATCH 1/2] aarch64: introduce build support for aarch64_be target
Upstream-Status: backport
Introduce support for aarch64_be, aarch64 big endian, target.
We would like to reuse all code that was done for aarch64
(little endian) target. So we do similar thing that is done
for ARM v7 (arm) target for any aarch64* arch we set it
just to aarch64.
Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
---
configure.ac | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure.ac b/configure.ac
index 582e71f..c59f526 100644
--- a/configure.ac
+++ b/configure.ac
@@ -88,6 +88,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
AC_DEFUN([SET_ARCH],[
AS_CASE([$1],
+ [aarch64*],[$2=aarch64],
[arm*],[$2=arm],
[i?86],[$2=x86],
[hppa*],[$2=hppa],
--
1.9.1

View File

@@ -1,34 +0,0 @@
From 16e98c8cf37b006c3879ee57acc23c9af13c40d5 Mon Sep 17 00:00:00 2001
From: Victor Kamensky <victor.kamensky@linaro.org>
Date: Wed, 3 Dec 2014 17:35:44 -0800
Subject: [PATCH 2/2] aarch64: fix wrong big_endian flag in aarch64_be case
Upstream-Status: backport
Set local_addr_space.big_endian flag according to current target
endianness. Before it was set by memset to 0, which corresponds
to little endian and it worked perfectly fine for aarch64.
But it breaks aarch64_be because dwarf_readu16, dwarf_readu32,
etc functions do not read values correctly since they operate
with wrong idea about current target endianness.
Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
---
src/aarch64/Ginit.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/aarch64/Ginit.c b/src/aarch64/Ginit.c
index 0bc8997..b9181ef 100644
--- a/src/aarch64/Ginit.c
+++ b/src/aarch64/Ginit.c
@@ -181,6 +181,7 @@ aarch64_local_addr_space_init (void)
local_addr_space.acc.access_fpreg = access_fpreg;
local_addr_space.acc.resume = aarch64_local_resume;
local_addr_space.acc.get_proc_name = get_static_proc_name;
+ local_addr_space.big_endian = (__BYTE_ORDER == __BIG_ENDIAN);
unw_flush_cache (&local_addr_space, 0, 0);
}
--
1.9.1