From 887e048bebf01792674fb466941798c7ef01ff16 Mon Sep 17 00:00:00 2001
From: Jelte Fennema-Nio <postgres@jeltef.nl>
Date: Mon, 5 Jan 2026 23:13:12 +0100
Subject: [PATCH v8 2/3] CI: Configure g++ with 32bit for 32bit build

In future commits we'll start to make improvements to C++
infrastructure. This requires that for our 32bit builds we also build
C++ code for the 32bit architecture.
---
 .cirrus.tasks.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.cirrus.tasks.yml b/.cirrus.tasks.yml
index 745bd198b42..2bbbc3de2c9 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 \
-- 
2.52.0

