From 831bbb9bf50561283ffb0bb0af1a0871dc227034 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 9 Jan 2026 08:58:50 +0100 Subject: [PATCH] ci: Configure g++ with 32-bit for 32-bit build In future commits, we'll start to make improvements to C++ infrastructure. This requires that for our 32-bit builds we also build C++ code for the 32-bit architecture. Author: Jelte Fennema-Nio Discussion: https://www.postgresql.org/message-id/flat/D98JHQF7H2A8.VSE3I4CJBTAB%40partin.io --- .cirrus.tasks.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cirrus.tasks.yml b/.cirrus.tasks.yml index 77d0362a551..2a821593ce5 100644 --- a/.cirrus.tasks.yml +++ b/.cirrus.tasks.yml @@ -570,6 +570,7 @@ task: su postgres <<-EOF set -e export CC='ccache gcc -m32' + export CXX='ccache g++ -m32' meson setup \ ${MESON_COMMON_PG_CONFIG_ARGS} \ --buildtype=debug \