pgsql: Update configure probes for CFLAGS needed for ARM CRC instructio - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Update configure probes for CFLAGS needed for ARM CRC instructio
Date
Msg-id E1tFdER-003UpG-Mk@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Update configure probes for CFLAGS needed for ARM CRC instructions.

On ARM platforms where the baseline CPU target lacks CRC instructions,
we need to supply a -march flag to persuade the compiler to compile
such instructions.  It turns out that our existing choice of
"-march=armv8-a+crc" has not worked for some time, because recent gcc
will interpret that as selecting software floating point, and then
will spit up if the platform requires hard-float ABI, as most do
nowadays.  The end result was to silently fall back to software CRC,
which isn't very desirable since in practice almost all currently
produced ARM chips do have hardware CRC.

We can fix this by using "-march=armv8-a+crc+simd" to enable the
correct ABI choice.  (This has no impact on the code actually
generated, since neither of the files we compile with this flag
does any floating-point stuff, let alone SIMD.)  Keep the test for
"-march=armv8-a+crc" since that's required for soft-float ABI,
but try that second since most platforms we're likely to build on
use hard-float.

Since this isn't working as-intended on the last several years'
worth of gcc releases, back-patch to all supported branches.

Discussion: https://postgr.es/m/4496616.iHFcN1HehY@portable-bastien

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/851c6ff18fd359bebd97b7f2b73bb46981a1a8d2

Modified Files
--------------
configure    | 47 +++++++++++++++++++++++++++++++++++++++++++++--
configure.ac |  8 ++++++--
2 files changed, 51 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Support runtime CRC feature probing on NetBSD/ARM using sysctl()
Next
From: Thomas Munro
Date:
Subject: pgsql: Clean up reference in meson.build.