Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737
@ 2024-01-15 21:14 Fabrice Fontaine
  2024-02-05 16:23 ` Thomas Petazzoni via buildroot
  2024-02-29 15:27 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-01-15 21:14 UTC (permalink / raw)
  To: buildroot; +Cc: Gilles Talis, Fabrice Fontaine

leptonica is affected by gcc bug 101737 resulting in the following build
failure since at least bump to version 1.82.0 in commit
81a961c545cc9f240841b75d6c21f13b334bc274:

sh4eb-buildroot-linux-gnu-gcc.br_real: internal compiler error: Segmentation fault signal terminated program cc1
Please submit a full bug report, with preprocessed source (by using -freport-bug).
See <http://bugs.buildroot.net/> for instructions.

Fixes:
 - http://autobuild.buildroot.org/results/f18979454399d9c728f9e017e4cc3a1b27458f5b
 - http://autobuild.buildroot.org/results/f3c803892175b3bb2ce68e3140c879b4a4d4b302

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/leptonica/leptonica.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/leptonica/leptonica.mk b/package/leptonica/leptonica.mk
index 8eedf2fda9..4cb73296e8 100644
--- a/package/leptonica/leptonica.mk
+++ b/package/leptonica/leptonica.mk
@@ -14,6 +14,10 @@ LEPTONICA_DEPENDENCIES = host-pkgconf
 
 LEPTONICA_CONF_OPTS += --disable-programs
 
+ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_101737),y)
+LEPTONICA_CONF_OPTS += CFLAGS="$(TARGET_CFLAGS) -O0"
+endif
+
 ifeq ($(BR2_PACKAGE_GIFLIB),y)
 LEPTONICA_DEPENDENCIES += giflib
 LEPTONICA_CONF_OPTS += --with-giflib
-- 
2.43.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737
  2024-01-15 21:14 [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737 Fabrice Fontaine
@ 2024-02-05 16:23 ` Thomas Petazzoni via buildroot
  2024-02-29 15:27 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-02-05 16:23 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Gilles Talis, buildroot

On Mon, 15 Jan 2024 22:14:27 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> leptonica is affected by gcc bug 101737 resulting in the following build
> failure since at least bump to version 1.82.0 in commit
> 81a961c545cc9f240841b75d6c21f13b334bc274:
> 
> sh4eb-buildroot-linux-gnu-gcc.br_real: internal compiler error: Segmentation fault signal terminated program cc1
> Please submit a full bug report, with preprocessed source (by using -freport-bug).
> See <http://bugs.buildroot.net/> for instructions.
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/f18979454399d9c728f9e017e4cc3a1b27458f5b
>  - http://autobuild.buildroot.org/results/f3c803892175b3bb2ce68e3140c879b4a4d4b302
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/leptonica/leptonica.mk | 4 ++++
>  1 file changed, 4 insertions(+)

Applied to master, thanks.

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

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

* Re: [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737
  2024-01-15 21:14 [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737 Fabrice Fontaine
  2024-02-05 16:23 ` Thomas Petazzoni via buildroot
@ 2024-02-29 15:27 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-02-29 15:27 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Gilles Talis, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > leptonica is affected by gcc bug 101737 resulting in the following build
 > failure since at least bump to version 1.82.0 in commit
 > 81a961c545cc9f240841b75d6c21f13b334bc274:

 > sh4eb-buildroot-linux-gnu-gcc.br_real: internal compiler error: Segmentation fault signal terminated program cc1
 > Please submit a full bug report, with preprocessed source (by using -freport-bug).
 > See <http://bugs.buildroot.net/> for instructions.

 > Fixes:
 >  - http://autobuild.buildroot.org/results/f18979454399d9c728f9e017e4cc3a1b27458f5b
 >  - http://autobuild.buildroot.org/results/f3c803892175b3bb2ce68e3140c879b4a4d4b302

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2023.02.x and 2023.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-02-29 15:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-15 21:14 [Buildroot] [PATCH 1/1] package/leptonica: affected by gcc bug 101737 Fabrice Fontaine
2024-02-05 16:23 ` Thomas Petazzoni via buildroot
2024-02-29 15:27 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox