All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/wpewebkit: fix NEON build with gcc-12
@ 2023-05-01 12:32 Michael Nosthoff via buildroot
  2023-07-29 22:08 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Nosthoff via buildroot @ 2023-05-01 12:32 UTC (permalink / raw)
  To: buildroot; +Cc: Adrian Perez de Castro

since gcc-12 gcc complains about attributes in between decl-specifiers.
This code is NEON specific so it should not appear on builds for other systems.

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>

---

@Adrian: should I submit this somewhere upstream? Or would it make more sense to
include this in the other NEON specific patch?
---
 .../0002-change-position-of-alignas.patch     | 33 +++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 package/wpewebkit/0002-change-position-of-alignas.patch

diff --git a/package/wpewebkit/0002-change-position-of-alignas.patch b/package/wpewebkit/0002-change-position-of-alignas.patch
new file mode 100644
index 0000000000..5a1564c4c1
--- /dev/null
+++ b/package/wpewebkit/0002-change-position-of-alignas.patch
@@ -0,0 +1,33 @@
+From e2a3e36c8df59d83de0a48b806cad5bb5515a658 Mon Sep 17 00:00:00 2001
+From: Michael Nosthoff <michael.nosthoff@iba-group.com>
+Date: Tue, 18 Apr 2023 19:47:03 +0200
+Subject: [PATCH] change position of alignas
+
+fixes:
+Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp:38:8: error: standard attributes in middle of decl-specifiers
+   38 | static alignas(16) short s_FELightingConstantsForNeon[] = {
+      |        ^~~~~~~
+
+on gcc-12
+
+Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
+---
+ .../platform/graphics/cpu/arm/filters/FELightingNEON.cpp        | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp b/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp
+index 64950d1732e8..cafb4ee184ba 100644
+--- a/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp
++++ b/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp
+@@ -35,7 +35,7 @@ namespace WebCore {
+ //   ALPHAX_Q ALPHAY_Q REMAPX_D REMAPY_D
+ 
+ 
+-static alignas(16) short s_FELightingConstantsForNeon[] = {
++static short alignas(16) s_FELightingConstantsForNeon[] = {
+     // Alpha coefficients.
+     -2, 1, 0, -1, 2, 1, 0, -1,
+     0, -1, -2, -1, 0, 1, 2, 1,
+-- 
+2.34.1
+
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/wpewebkit: fix NEON build with gcc-12
  2023-05-01 12:32 [Buildroot] [PATCH] package/wpewebkit: fix NEON build with gcc-12 Michael Nosthoff via buildroot
@ 2023-07-29 22:08 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-29 22:08 UTC (permalink / raw)
  To: Michael Nosthoff via buildroot; +Cc: Adrian Perez de Castro

Hello Michael,

On Mon,  1 May 2023 14:32:03 +0200
Michael Nosthoff via buildroot <buildroot@buildroot.org> wrote:

> since gcc-12 gcc complains about attributes in between decl-specifiers.
> This code is NEON specific so it should not appear on builds for other systems.
> 
> Signed-off-by: Michael Nosthoff <buildroot@heine.tech>

Could you provide in the commit log a defconfig that exhibits the
issue, since there's apparently no autobuilder failure for this issue.

> diff --git a/package/wpewebkit/0002-change-position-of-alignas.patch b/package/wpewebkit/0002-change-position-of-alignas.patch
> new file mode 100644
> index 0000000000..5a1564c4c1
> --- /dev/null
> +++ b/package/wpewebkit/0002-change-position-of-alignas.patch
> @@ -0,0 +1,33 @@
> +From e2a3e36c8df59d83de0a48b806cad5bb5515a658 Mon Sep 17 00:00:00 2001
> +From: Michael Nosthoff <michael.nosthoff@iba-group.com>
> +Date: Tue, 18 Apr 2023 19:47:03 +0200
> +Subject: [PATCH] change position of alignas
> +
> +fixes:
> +Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp:38:8: error: standard attributes in middle of decl-specifiers
> +   38 | static alignas(16) short s_FELightingConstantsForNeon[] = {
> +      |        ^~~~~~~
> +
> +on gcc-12
> +
> +Signed-off-by: Michael Nosthoff <buildroot@heine.tech>

We need an Upstream: tag in new patches, so it really needs to be
submitted upstream.

Adrian, could you provide some guidance here?

I guess the ultimate upstream is https://github.com/WebKit/WebKit/ and
then changes in WebKit at some point get propagated into WPEWebkit?

Could you submit a pull request to upstream WebKit ?

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-07-29 22:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-01 12:32 [Buildroot] [PATCH] package/wpewebkit: fix NEON build with gcc-12 Michael Nosthoff via buildroot
2023-07-29 22:08 ` Thomas Petazzoni via buildroot

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.