All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7
@ 2017-06-05 18:00 Bernd Kuhls
  2017-06-06 20:33 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Bernd Kuhls @ 2017-06-05 18:00 UTC (permalink / raw)
  To: buildroot

Fixes

sdksyms.c:311:15: error: expected expression before ?,? token
     (void *) &,                                                  /* ../../include/os.h:96 */

by backporting an upstream patch, sdksyms.c is generated by
hw/xfree86/sdksyms.sh which is broken when used with gcc5+.

Problem was found while testing
http://patchwork.ozlabs.org/patch/762102/

using this defconfig

BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_XORG7=y
BR2_PACKAGE_XSERVER_XORG_SERVER=y
BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_14=y
BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB=y

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 .../1.14.7/0001-sdksyms-gcc5.patch                 | 50 ++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch

diff --git a/package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch b/package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch
new file mode 100644
index 000000000..ad544aa30
--- /dev/null
+++ b/package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch
@@ -0,0 +1,50 @@
+From 21b896939c5bb242f3aacc37baf12379e43254b6 Mon Sep 17 00:00:00 2001
+From: Egbert Eich <eich@freedesktop.org>
+Date: Tue, 3 Mar 2015 16:27:05 +0100
+Subject: symbols: Fix sdksyms.sh to cope with gcc5
+
+Gcc5 adds additional lines stating line numbers before and
+after __attribute__() which need to be skipped.
+
+Downloaded from upstream commit
+https://cgit.freedesktop.org/xorg/xserver/commit/hw/xfree86/sdksyms.sh?id=21b896939c5bb242f3aacc37baf12379e43254b6
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+Signed-off-by: Egbert Eich <eich@freedesktop.org>
+Tested-by: Daniel Stone <daniels@collabora.com>
+Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
+
+diff --git a/hw/xfree86/sdksyms.sh b/hw/xfree86/sdksyms.sh
+index 2305073..05ac410 100755
+--- a/hw/xfree86/sdksyms.sh
++++ b/hw/xfree86/sdksyms.sh
+@@ -350,13 +350,25 @@ BEGIN {
+     if (sdk) {
+ 	n = 3;
+ 
++        # skip line numbers GCC 5 adds before __attribute__
++        while ($n == "" || $0 ~ /^# [0-9]+ "/) {
++           getline;
++           n = 1;
++        }
++
+ 	# skip attribute, if any
+ 	while ($n ~ /^(__attribute__|__global)/ ||
+ 	    # skip modifiers, if any
+ 	    $n ~ /^\*?(unsigned|const|volatile|struct|_X_EXPORT)$/ ||
+ 	    # skip pointer
+-	    $n ~ /^[a-zA-Z0-9_]*\*$/)
++	    $n ~ /^[a-zA-Z0-9_]*\*$/) {
+ 	    n++;
++            # skip line numbers GCC 5 adds after __attribute__
++            while ($n == "" || $0 ~ /^# [0-9]+ "/) {
++               getline;
++               n = 1;
++            }
++        }
+ 
+ 	# type specifier may not be set, as in
+ 	#   extern _X_EXPORT unsigned name(...)
+-- 
+cgit v0.10.2
+
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7
  2017-06-05 18:00 [Buildroot] [PATCH 1/1] package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7 Bernd Kuhls
@ 2017-06-06 20:33 ` Thomas Petazzoni
  2017-06-06 20:43   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2017-06-06 20:33 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  5 Jun 2017 20:00:44 +0200, Bernd Kuhls wrote:
> Fixes
> 
> sdksyms.c:311:15: error: expected expression before ?,? token
>      (void *) &,                                                  /* ../../include/os.h:96 */
> 
> by backporting an upstream patch, sdksyms.c is generated by
> hw/xfree86/sdksyms.sh which is broken when used with gcc5+.
> 
> Problem was found while testing
> http://patchwork.ozlabs.org/patch/762102/
> 
> using this defconfig
> 
> BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
> BR2_TOOLCHAIN_BUILDROOT_CXX=y
> BR2_PACKAGE_XORG7=y
> BR2_PACKAGE_XSERVER_XORG_SERVER=y
> BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_14=y
> BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB=y
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  .../1.14.7/0001-sdksyms-gcc5.patch                 | 50 ++++++++++++++++++++++
>  1 file changed, 50 insertions(+)
>  create mode 100644 package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch

Applied to master, thanks. Peter: this qualifies for the LTS branch I
guess.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7
  2017-06-06 20:33 ` Thomas Petazzoni
@ 2017-06-06 20:43   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2017-06-06 20:43 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Hello,
 > On Mon,  5 Jun 2017 20:00:44 +0200, Bernd Kuhls wrote:
 >> Fixes
 >> 
 >> sdksyms.c:311:15: error: expected expression before ?,? token
 >> (void *) &,                                                  /* ../../include/os.h:96 */
 >> 
 >> by backporting an upstream patch, sdksyms.c is generated by
 >> hw/xfree86/sdksyms.sh which is broken when used with gcc5+.
 >> 
 >> Problem was found while testing
 >> http://patchwork.ozlabs.org/patch/762102/
 >> 
 >> using this defconfig
 >> 
 >> BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
 >> BR2_TOOLCHAIN_BUILDROOT_CXX=y
 >> BR2_PACKAGE_XORG7=y
 >> BR2_PACKAGE_XSERVER_XORG_SERVER=y
 >> BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_14=y
 >> BR2_PACKAGE_XDRIVER_XF86_INPUT_TSLIB=y
 >> 
 >> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
 >> ---
 >> .../1.14.7/0001-sdksyms-gcc5.patch                 | 50 ++++++++++++++++++++++
 >> 1 file changed, 50 insertions(+)
 >> create mode 100644 package/x11r7/xserver_xorg-server/1.14.7/0001-sdksyms-gcc5.patch

 > Applied to master, thanks. Peter: this qualifies for the LTS branch I
 > guess.

Indeed - Committed to 2017.02.x and 2017.05.x, thanks!

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-06 20:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-05 18:00 [Buildroot] [PATCH 1/1] package/x11r7/xserver_xorg-server: fix gcc5+ build with version 1.14.7 Bernd Kuhls
2017-06-06 20:33 ` Thomas Petazzoni
2017-06-06 20:43   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.