diff options
author | Heikki Linnakangas | 2024-02-28 11:10:51 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2024-02-28 11:17:23 +0000 |
commit | 0b16bb8776bb834eb1ef8204ca95dd7667ab948b (patch) | |
tree | a06173763fba46c78613abb5b9181a88d98148e1 /config | |
parent | bcdfa5f2e2f274caeed20b2f986012a9cb6a259c (diff) |
Remove AIX support
There isn't a lot of user demand for AIX support, we have a bunch of
hacks to work around AIX-specific compiler bugs and idiosyncrasies,
and no one has stepped up to the plate to properly maintain it.
Remove support for AIX to get rid of that maintenance overhead. It's
still supported for stable versions.
The acute issue that triggered this decision was that after commit
8af2565248, the AIX buildfarm members have been hitting this
assertion:
TRAP: failed Assert("(uintptr_t) buffer == TYPEALIGN(PG_IO_ALIGN_SIZE, buffer)"), File: "md.c", Line: 472, PID: 2949728
Apperently the "pg_attribute_aligned(a)" attribute doesn't work on AIX
for values larger than PG_IO_ALIGN_SIZE, for a static const variable.
That could be worked around, but we decided to just drop the AIX support
instead.
Discussion: https://www.postgresql.org/message-id/[email protected]
Reviewed-by: Andres Freund, Noah Misch, Thomas Munro
Diffstat (limited to 'config')
-rw-r--r-- | config/c-compiler.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/c-compiler.m4 b/config/c-compiler.m4 index 5db02b2ab75..3268a780bb0 100644 --- a/config/c-compiler.m4 +++ b/config/c-compiler.m4 @@ -137,7 +137,7 @@ if test x"$pgac_cv__128bit_int" = xyes ; then AC_CACHE_CHECK([for __int128 alignment bug], [pgac_cv__128bit_int_bug], [AC_RUN_IFELSE([AC_LANG_PROGRAM([ /* This must match the corresponding code in c.h: */ -#if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__IBMC__) +#if defined(__GNUC__) || defined(__SUNPRO_C) #define pg_attribute_aligned(a) __attribute__((aligned(a))) #elif defined(_MSC_VER) #define pg_attribute_aligned(a) __declspec(align(a)) |