Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] xserver_xorg-server: disable libunwind on MIPS with 32-bit pointers
Date: Sun, 07 Dec 2014 22:29:44 +0100	[thread overview]
Message-ID: <87tx17up13.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1417778222-19910-1-git-send-email-Vincent.Riera@imgtec.com> (Vicente Olivert Riera's message of "Fri, 5 Dec 2014 11:17:02 +0000")

>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

Hi,

 > libunwind support in xorg-server is not only broken for MIPS64 n32 but
 > for all MIPS variants with 32-bit pointers. The reason is exactly the
 > same one. libunwind defines a uint64 variable to store the words. Then,
 > xorg-server casts that variable (64-bit) into a pointer (32-bit), and
 > the compilation fails:

 > backtrace.c:98:13: error: cast to pointer from integer of different size
 > [-Werror=int-to-pointer-cast]

 > Related:
 >   https://bugs.freedesktop.org/show_bug.cgi?id=79939

 > Fixes:
 >   http://autobuild.buildroot.net/results/87b/87be2c95957f9925c1258812e536df72689fc5da/

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
 > ---
 >  .../xserver_xorg-server/xserver_xorg-server.mk     |    5 +++--
 >  1 files changed, 3 insertions(+), 2 deletions(-)

 > diff --git a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
 > index 4164ccf..91b4f03 100644
 > --- a/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
 > +++ b/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk
 > @@ -144,10 +144,11 @@ ifeq ($(BR2_PACKAGE_FREETYPE),y)
 >  XSERVER_XORG_SERVER_DEPENDENCIES += freetype
 >  endif
 
 > -# libunwind support is broken on MIPS64 n32
 > +# libunwind support is broken on all MIPS variants with 32-bit pointers
 >  # https://bugs.freedesktop.org/show_bug.cgi?id=79939
 > -ifeq ($(BR2_PACKAGE_LIBUNWIND)-$(BR2_MIPS_NABI32),y-)
 > +ifeq ($(BR2_PACKAGE_LIBUNWIND)-$(BR2_MIPS_OABI32)-$(BR2_MIPS_NABI32),y--)

The dash (-) between _OABI32 and _NABI32 is not strictly needed. The
only reason we had it before is that we wanted to detect libunwind AND
!NABI32, so when they expand to 'y' and '', and not confuse it with
!libunwind ('') AND NABI32 ('y'), so we needed a separator.

-- 
Bye, Peter Korsgaard

      parent reply	other threads:[~2014-12-07 21:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-05 11:17 [Buildroot] [PATCH] xserver_xorg-server: disable libunwind on MIPS with 32-bit pointers Vicente Olivert Riera
2014-12-07 21:10 ` Thomas Petazzoni
2014-12-07 21:29 ` Peter Korsgaard [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=87tx17up13.fsf@dell.be.48ers.dk \
    --to=peter@korsgaard.com \
    --cc=buildroot@busybox.net \
    /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