mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Christian Melki <christian.melki@t2data.com>
Subject: Re: [ptxdist] [APPLIED] libunwind: Version bump. 1.7.2 -> 1.8.0
Date: Fri, 19 Jan 2024 21:28:10 +0100	[thread overview]
Message-ID: <20240119202810.1306018-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20240116183207.2120535-1-christian.melki@t2data.com>

Thanks, applied as 01d53ce9aadc0d9cf73995df821414fa8f13e89d.

Michael

[sent from post-receive hook]

On Fri, 19 Jan 2024 21:28:10 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> A bunch of bugfixes mostly.
> https://github.com/libunwind/libunwind/releases/tag/v1.8.0
> 
> * Remove patchset, included in the release.
> 
> * Rearrange options for a cleaner configure_helper call.
> Add disable-nto (neutrino).
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240116183207.2120535-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/libunwind-1.7.2/0001-Fix-FTBFS-on-Linux-ppc32.patch b/patches/libunwind-1.7.2/0001-Fix-FTBFS-on-Linux-ppc32.patch
> deleted file mode 100644
> index 687352c9c5dc..000000000000
> --- a/patches/libunwind-1.7.2/0001-Fix-FTBFS-on-Linux-ppc32.patch
> +++ /dev/null
> @@ -1,26 +0,0 @@
> -From: Stephen Webb <swebb@blackberry.com>
> -Date: Fri, 26 May 2023 16:22:08 -0400
> -Subject: [PATCH] Fix FTBFS on Linux ppc32
> -
> -Looks like the Linux ucontext structure has changed for PPC at some
> -point. This probably needs some kind of version check, or else ancient
> -kernels will need to stick with 1.6 or earlier.
> ----
> - src/ppc32/ucontext_i.h | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/src/ppc32/ucontext_i.h b/src/ppc32/ucontext_i.h
> -index 64f8ed878ad8..ee93c697941c 100644
> ---- a/src/ppc32/ucontext_i.h
> -+++ b/src/ppc32/ucontext_i.h
> -@@ -44,8 +44,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
> - //#define MQ_IDX                36
> - #define LINK_IDX        36
> - 
> --#define _UC_MCONTEXT_GPR(x) ( (void *)&dmy_ctxt.uc_mcontext.gregs[x] - (void *)&dmy_ctxt) )
> --#define _UC_MCONTEXT_FPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.fpregs[x] - (void *)&dmy_ctxt) )
> -+#define _UC_MCONTEXT_GPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.uc_regs->gregs[x] - (void *)&dmy_ctxt) )
> -+#define _UC_MCONTEXT_FPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.uc_regs->fpregs.fpregs[x] - (void *)&dmy_ctxt) )
> - 
> - /* These are dummy structures used only for obtaining the offsets of the
> -    various structure members. */
> diff --git a/patches/libunwind-1.7.2/series b/patches/libunwind-1.7.2/series
> deleted file mode 100644
> index a0ed18563622..000000000000
> --- a/patches/libunwind-1.7.2/series
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-Fix-FTBFS-on-Linux-ppc32.patch
> -# d4292b5d50e8bb810f28be03e3b69c40  - git-ptx-patches magic
> diff --git a/rules/libunwind.make b/rules/libunwind.make
> index 8684aa8d0bb6..b1cd40a5835a 100644
> --- a/rules/libunwind.make
> +++ b/rules/libunwind.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBUNWIND) += libunwind
>  #
>  # Paths and names
>  #
> -LIBUNWIND_VERSION	:= 1.7.2
> -LIBUNWIND_MD5		:= 35799cd8e475d3e157230ad2590c10f1
> +LIBUNWIND_VERSION	:= 1.8.0
> +LIBUNWIND_MD5		:= c66dabc3d032eee8f4053595af7c31cb
>  LIBUNWIND		:= libunwind-$(LIBUNWIND_VERSION)
>  LIBUNWIND_SUFFIX	:= tar.gz
>  LIBUNWIND_URL		:= https://github.com/libunwind/libunwind/releases/download/v$(LIBUNWIND_VERSION)/$(LIBUNWIND).$(LIBUNWIND_SUFFIX)
> @@ -38,20 +38,21 @@ LIBUNWIND_CONF_OPT	:= \
>  	--includedir=/usr/include/libunwind \
>  	--$(call ptx/disen, PTXCONF_ARCH_PPC)-coredump \
>  	--enable-ptrace \
> +	--disable-nto \
>  	--enable-setjmp \
> -	--disable-documentation \
> -	--disable-tests \
>  	--enable-weak-backtrace \
>  	--enable-unwind-header \
> +	--disable-per-thread-cache \
> +	--disable-tests \
>  	--disable-debug \
>  	--disable-cxx-exceptions \
> +	--disable-documentation \
>  	--enable-debug-frame \
>  	--enable-block-signals \
>  	--enable-conservative-checks \
>  	--disable-msabi-support \
>  	--disable-minidebuginfo \
>  	--enable-zlibdebuginfo \
> -	--disable-per-thread-cache \
>  	--without-testdriver
>  
>  # ----------------------------------------------------------------------------



      reply	other threads:[~2024-01-19 20:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-16 18:32 [ptxdist] [PATCH] " Christian Melki
2024-01-19 20:28 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240119202810.1306018-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox