From 3def0679e3a424983354346eb517bbaa07b905df Mon Sep 17 00:00:00 2001 From: Giulio Benetti Date: Thu, 2 Feb 2023 16:42:39 +0100 Subject: [PATCH] package/postgresql: work around gcc bug 43744 Package postgresql suffers from gcc bug 43744 other than 85180, so let's work around disabling compiler optimization for this gcc bug too. Fixes: http://autobuild.buildroot.net/results/cf272cdc5be2faf4070de3d235ec7a0f7190867a Signed-off-by: Giulio Benetti Signed-off-by: Thomas Petazzoni --- package/postgresql/postgresql.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk index 5313e03b12..2ffcac6595 100644 --- a/package/postgresql/postgresql.mk +++ b/package/postgresql/postgresql.mk @@ -101,7 +101,7 @@ endif POSTGRESQL_CFLAGS = $(TARGET_CFLAGS) -ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y) +ifneq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_43744)$(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),) POSTGRESQL_CFLAGS += -O0 endif