Skip to content
Snippets Groups Projects
Commit 05e7362c authored by Christoph Berg's avatar Christoph Berg :satellite:
Browse files

Merge branch 'fix-arm-FTBFS-gcc-ICE' into 'master'

server/postgresql.mk: avoid gcc 11 ICE on armhf and armel

See merge request !15
parents ae60bc0a c9520a88
No related branches found
No related tags found
1 merge request!15server/postgresql.mk: avoid gcc 11 ICE on armhf and armel
Pipeline #329618 failed
......@@ -99,6 +99,12 @@ ifeq ($(DEB_HOST_ARCH),amd64)
CFLAGS += -fno-omit-frame-pointer
endif
# Work around an ICE bug in GCC 11.2.0, see
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103395
ifneq ($(findstring $(DEB_HOST_ARCH), armel armhf),)
CFLAGS+= -DSTAP_SDT_ARG_CONSTRAINT=g
endif
ifeq ($(DEB_HOST_ARCH_OS),linux)
CONFIGURE_FLAGS += --with-systemd
CONFIGURE_FLAGS += --with-selinux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment