Lists: | pgsql-hackers |
---|
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-04-10 01:38:33 |
Message-ID: | CA+hUKG+SOP-aR=YF_n0dtXGWeCy6x+Cn-RMWURU5ySQdmeKW1Q@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
Hi
PostgreSQL 18 will ship after these vacuum horizon systems reach EOL[1]:
animal | arch | llvm_version | os | os_release | end_of_support
---------------+---------+--------------+--------+------------+----------------
branta | s390x | 10.0.0 | Ubuntu | 20.04 | 2025-04-01
splitfin | aarch64 | 10.0.0 | Ubuntu | 20.04 | 2025-04-01
urutau | s390x | 10.0.0 | Ubuntu | 20.04 | 2025-04-01
massasauga | aarch64 | 11.1.0 | Amazon | 2 | 2025-06-30
snakefly | aarch64 | 11.1.0 | Amazon | 2 | 2025-06-30
Therefore, some time after the tree re-opens for hacking, we could rip
out a bunch of support code for LLVM 10-13, and then rip out support
for pre-opaque-pointer mode. Please see attached.
Attachment | Content-Type | Size |
---|---|---|
0001-jit-Require-at-least-LLVM-14-if-enabled.patch | text/x-patch | 16.3 KB |
0002-jit-Use-opaque-pointers-in-all-supported-LLVM-versio.patch | text/x-patch | 8.1 KB |
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-04-11 02:16:39 |
Message-ID: | CA+hUKGLXr0Rjz_6PQrNWe7Z-k7_G-MAHoh1DP+A-sxw0qpYEDQ@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Wed, Apr 10, 2024 at 1:38 PM Thomas Munro <thomas(dot)munro(at)gmail(dot)com> wrote:
> Therefore, some time after the tree re-opens for hacking, we could rip
> out a bunch of support code for LLVM 10-13, and then rip out support
> for pre-opaque-pointer mode. Please see attached.
... or of course closer to the end of the cycle if that's what people
prefer for some reason, I don't mind too much as long as it happens.
I added this to the commitfest app, and it promptly failed for cfbot.
That's expected: CI is still using Debian 11 "bullseye", which only
has LLVM 11. It became what Debian calls "oldstable" last year, and
reaches the end of oldstable in a couple of months from now. Debian
12 "bookworm" is the current stable release, and it has LLVM 14, so we
should probably go and update those CI images...
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-04-23 23:43:12 |
Message-ID: | CA+hUKGLFNFMOPPME6mpkGeve0+6CRrZLMTKs+MmBGJp4vLcJ=A@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
Rebased over ca89db5f.
I looked into whether we could drop the "old pass manager" code
too[1]. Almost, but nope, even the C++ API lacks a way to set the
inline threshold before LLVM 16, so that would cause a regression.
Although we just hard-code the threshold to 512 with a comment that
sounds like it's pretty arbitrary, a change to the default (225?)
would be unjustifiable just for code cleanup. Oh well.
Attachment | Content-Type | Size |
---|---|---|
v2-0001-jit-Require-at-least-LLVM-14-if-enabled.patch | application/octet-stream | 16.0 KB |
v2-0002-jit-Use-opaque-pointers-in-all-supported-LLVM-ver.patch | application/octet-stream | 8.1 KB |
From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-12 14:32:59 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On 24.04.24 01:43, Thomas Munro wrote:
> Rebased over ca89db5f.
These patches look fine to me. The new cut-off makes sense, and it does
save quite a bit of code. We do need to get the Cirrus CI Debian images
updated first, as you had already written.
As part of this patch, you also sneak in support for LLVM 18
(llvm-config-18, clang-18 in configure). Should this be a separate patch?
And as I'm looking up how this was previously handled, I notice that
this list of clang-NN versions was last updated equally sneakily as part
of your patch to trim off LLVM <10 (820b5af73dc). I wonder if the
original intention of that configure code was that maintaining the
versioned list above clang-7/llvm-config-7 was not needed, because the
unversioning programs could be used, or maybe because pkg-config could
be used. It would be nice if we could get rid of having to update that.
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-15 04:21:25 |
Message-ID: | CA+hUKGL3EJ37xuj0813AfgwtxBSmfM_pwE8pSGGE5BeKSxCiZw@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Mon, May 13, 2024 at 2:33 AM Peter Eisentraut <peter(at)eisentraut(dot)org> wrote:
> These patches look fine to me. The new cut-off makes sense, and it does
> save quite a bit of code. We do need to get the Cirrus CI Debian images
> updated first, as you had already written.
Thanks for looking!
> As part of this patch, you also sneak in support for LLVM 18
> (llvm-config-18, clang-18 in configure). Should this be a separate patch?
Yeah, right, I didn't really think too hard about why we have that,
and now that you question it...
> And as I'm looking up how this was previously handled, I notice that
> this list of clang-NN versions was last updated equally sneakily as part
> of your patch to trim off LLVM <10 (820b5af73dc). I wonder if the
> original intention of that configure code was that maintaining the
> versioned list above clang-7/llvm-config-7 was not needed, because the
> unversioning programs could be used, or maybe because pkg-config could
> be used. It would be nice if we could get rid of having to update that.
I probably misunderstood why we were doing that, perhaps something to
do with the way some distro (Debian?) was doing things with older
versions, and yeah I see that we went a long time after 7 without
touching it and nobody cared. Yeah, it would be nice to get rid of
it. Here's a patch. Meson didn't have that.
Attachment | Content-Type | Size |
---|---|---|
v3-0001-jit-Remove-configure-probes-for-lvm-config-clang-.patch | text/x-patch | 2.7 KB |
v3-0002-jit-Require-at-least-LLVM-14-if-enabled.patch | text/x-patch | 14.3 KB |
v3-0003-jit-Use-opaque-pointers-in-all-supported-LLVM-ver.patch | text/x-patch | 8.2 KB |
From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-15 05:20:09 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On 15.05.24 06:21, Thomas Munro wrote:
>> And as I'm looking up how this was previously handled, I notice that
>> this list of clang-NN versions was last updated equally sneakily as part
>> of your patch to trim off LLVM <10 (820b5af73dc). I wonder if the
>> original intention of that configure code was that maintaining the
>> versioned list above clang-7/llvm-config-7 was not needed, because the
>> unversioning programs could be used, or maybe because pkg-config could
>> be used. It would be nice if we could get rid of having to update that.
> I probably misunderstood why we were doing that, perhaps something to
> do with the way some distro (Debian?) was doing things with older
> versions, and yeah I see that we went a long time after 7 without
> touching it and nobody cared. Yeah, it would be nice to get rid of
> it. Here's a patch. Meson didn't have that.
Yes, let's get that v3-0001 patch into PG17.
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-16 02:33:37 |
Message-ID: | CA+hUKGLuziOt_X6e92Hf+VoAYZjk2DG-ARuZtHA6ZaxvusXS1w@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Wed, May 15, 2024 at 5:20 PM Peter Eisentraut <peter(at)eisentraut(dot)org> wrote:
> Yes, let's get that v3-0001 patch into PG17.
Done.
Bilal recently created the CI images for Debian Bookworm[1]. You can
try them with s/bullseye/bookworm/ in .cirrus.tasks.yml, but it looks
like he is still wrestling with a perl installation problem[2] in the
32 bit build, so here is a temporary patch to do that and also delete
the 32 bit tests for now. This way cfbot should succeed with the
remaining patches. Parked here for v18.
[1] https://github.com/anarazel/pg-vm-images/commit/685ca7ccb7b3adecb11d948ac677d54cd9599e6c
[2] https://cirrus-ci.com/task/5459439048720384
Attachment | Content-Type | Size |
---|---|---|
v4-0001-XXX-CI-kludge-bullseye-bookworm.patch | text/x-patch | 3.2 KB |
v4-0002-jit-Require-at-least-LLVM-14-if-enabled.patch | text/x-patch | 14.3 KB |
v4-0003-jit-Use-opaque-pointers-in-all-supported-LLVM-ver.patch | text/x-patch | 8.2 KB |
From: | Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | Peter Eisentraut <peter(at)eisentraut(dot)org>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-16 15:17:08 |
Message-ID: | CAN55FZ3c3PEQqSvofF1e8XcesA4HesBdiA3OwPzEXyTwfU74Vg@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
Hi,
On Thu, 16 May 2024 at 05:34, Thomas Munro <thomas(dot)munro(at)gmail(dot)com> wrote:
>
> On Wed, May 15, 2024 at 5:20 PM Peter Eisentraut <peter(at)eisentraut(dot)org> wrote:
> > Yes, let's get that v3-0001 patch into PG17.
>
> Done.
>
> Bilal recently created the CI images for Debian Bookworm[1]. You can
> try them with s/bullseye/bookworm/ in .cirrus.tasks.yml, but it looks
> like he is still wrestling with a perl installation problem[2] in the
> 32 bit build, so here is a temporary patch to do that and also delete
> the 32 bit tests for now. This way cfbot should succeed with the
> remaining patches. Parked here for v18.
Actually, 32 bit builds are working but the Perl version needs to be
updated to 'perl5.36-i386-linux-gnu' in .cirrus.tasks.yml. I changed
0001 with the working version of 32 bit builds [1] and the rest is the
same. All tests pass now [2].
[1] postgr.es/m/CAN55FZ0fY5EFHXLKCO_=p4pwFmHRoVom_qSE_7B48gpchfAqzw@mail.gmail.com
[2] https://cirrus-ci.com/task/4969910856581120
--
Regards,
Nazir Bilal Yavuz
Microsoft
Attachment | Content-Type | Size |
---|---|---|
v5-0001-Upgrade-Debian-CI-images-to-Bookworm.patch | text/x-patch | 2.3 KB |
v5-0002-jit-Require-at-least-LLVM-14-if-enabled.patch | text/x-patch | 14.3 KB |
v5-0003-jit-Use-opaque-pointers-in-all-supported-LLVM-ver.patch | text/x-patch | 8.2 KB |
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
Cc: | Peter Eisentraut <peter(at)eisentraut(dot)org>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-16 22:54:45 |
Message-ID: | CA+hUKGJWb3Y2pF=Fg5PJzvh_YS_rqry=SKMC0nTQRgeNNUPtpw@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Fri, May 17, 2024 at 3:17 AM Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> wrote:
> Actually, 32 bit builds are working but the Perl version needs to be
> updated to 'perl5.36-i386-linux-gnu' in .cirrus.tasks.yml. I changed
> 0001 with the working version of 32 bit builds [1] and the rest is the
> same. All tests pass now [2].
Ahh, right, thanks! I will look at committing your CI/fixup patches.
From: | Ole Peder Brandtzæg <olebra(at)samfundet(dot)no> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-18 22:46:01 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Wed, May 15, 2024 at 07:20:09AM +0200, Peter Eisentraut wrote:
> Yes, let's get that v3-0001 patch into PG17.
Upon seeing this get committed in 4dd29b6833, I noticed that the docs
still advertise the llvm-config-$version search dance. That's still
correct for Meson-based builds since we use their config-tool machinery,
but no longer holds for configure-based builds. The attached patch
updates the docs accordingly.
--
Ole Peder Brandtzæg
In any case, these nights just ain't getting any easier
And who could judge us
For seeking comfort in the hazy counterfeit land of memory
Attachment | Content-Type | Size |
---|---|---|
0001-doc-remove-llvm-config-search-from-configure-doc.patch | text/x-diff | 2.1 KB |
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | Ole Peder Brandtzæg <olebra(at)samfundet(dot)no> |
Cc: | Peter Eisentraut <peter(at)eisentraut(dot)org>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-18 23:05:49 |
Message-ID: | CA+hUKGJWDs9sydpDjEGYcyrFaeJa9Aziiq1wbmtjDSG_yy7nZQ@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Sun, May 19, 2024 at 10:46 AM Ole Peder Brandtzæg
<olebra(at)samfundet(dot)no> wrote:
> On Wed, May 15, 2024 at 07:20:09AM +0200, Peter Eisentraut wrote:
> > Yes, let's get that v3-0001 patch into PG17.
>
> Upon seeing this get committed in 4dd29b6833, I noticed that the docs
> still advertise the llvm-config-$version search dance. That's still
> correct for Meson-based builds since we use their config-tool machinery,
> but no longer holds for configure-based builds. The attached patch
> updates the docs accordingly.
Oops, right I didn't know we had that documented. Thanks. Will hold
off doing anything until the thaw.
Hmm, I also didn't know that Meson had its own list like our just-removed one:
https://github.com/mesonbuild/meson/blob/master/mesonbuild/environment.py#L183
Unsurprisingly, it suffers from maintenance lag, priority issues etc
(new major versions pop out every 6 months):
https://github.com/mesonbuild/meson/issues/10483
From: | Ole Peder Brandtzæg <olebra(at)samfundet(dot)no> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-18 23:16:52 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Sun, May 19, 2024 at 11:05:49AM +1200, Thomas Munro wrote:
> Oops, right I didn't know we had that documented. Thanks. Will hold
> off doing anything until the thaw.
No worries, thanks!
> Hmm, I also didn't know that Meson had its own list like our just-removed one:
>
> https://github.com/mesonbuild/meson/blob/master/mesonbuild/environment.py#L183
I didn't either before writing the doc patch, which led me to
investigate why it *just works* when doing meson setup and then I saw
the 40 odd "Trying a default llvm-config fallback…" lines in
meson-log.txt =)
--
Ole Peder Brandtzæg
It's raining triple sec in Tchula
and the radio plays "Crazy Train"
From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | Ole Peder Brandtzæg <olebra(at)samfundet(dot)no>, Peter Eisentraut <peter(at)eisentraut(dot)org>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-05-18 23:16:56 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
Thomas Munro <thomas(dot)munro(at)gmail(dot)com> writes:
> Oops, right I didn't know we had that documented. Thanks. Will hold
> off doing anything until the thaw.
FWIW, I don't think the release freeze precludes docs-only fixes.
But if you prefer to sit on this, that's fine too.
regards, tom lane
From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Ole Peder Brandtzæg <olebra(at)samfundet(dot)no> |
Cc: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-08-21 13:19:58 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On 19.05.24 00:46, Ole Peder Brandtzæg wrote:
> On Wed, May 15, 2024 at 07:20:09AM +0200, Peter Eisentraut wrote:
>> Yes, let's get that v3-0001 patch into PG17.
>
> Upon seeing this get committed in 4dd29b6833, I noticed that the docs
> still advertise the llvm-config-$version search dance. That's still
> correct for Meson-based builds since we use their config-tool machinery,
> but no longer holds for configure-based builds. The attached patch
> updates the docs accordingly.
committed
From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-08-21 14:00:40 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On 17.05.24 00:54, Thomas Munro wrote:
> On Fri, May 17, 2024 at 3:17 AM Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> wrote:
>> Actually, 32 bit builds are working but the Perl version needs to be
>> updated to 'perl5.36-i386-linux-gnu' in .cirrus.tasks.yml. I changed
>> 0001 with the working version of 32 bit builds [1] and the rest is the
>> same. All tests pass now [2].
>
> Ahh, right, thanks! I will look at committing your CI/fixup patches.
The CI images have been updated, so this should be ready to go now. I
gave the remaining two patches a try on CI, and it all looks okay to me.
(needed some gentle rebasing)
From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-10-01 10:23:41 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On 21.08.24 16:00, Peter Eisentraut wrote:
> On 17.05.24 00:54, Thomas Munro wrote:
>> On Fri, May 17, 2024 at 3:17 AM Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com>
>> wrote:
>>> Actually, 32 bit builds are working but the Perl version needs to be
>>> updated to 'perl5.36-i386-linux-gnu' in .cirrus.tasks.yml. I changed
>>> 0001 with the working version of 32 bit builds [1] and the rest is the
>>> same. All tests pass now [2].
>>
>> Ahh, right, thanks! I will look at committing your CI/fixup patches.
>
> The CI images have been updated, so this should be ready to go now. I
> gave the remaining two patches a try on CI, and it all looks okay to me.
> (needed some gentle rebasing)
I have committed the two remaining patches. I'll go nudge any affected
buildfarm members to upgrade as needed.
From: | Thomas Munro <thomas(dot)munro(at)gmail(dot)com> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
Subject: | Re: Requiring LLVM 14+ in PostgreSQL 18 |
Date: | 2024-10-02 02:36:35 |
Message-ID: | CA+hUKGLtEzjFjGjT7izz_0bBoh-z45sULDETM6FpNe4a4o_sNA@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-hackers |
On Tue, Oct 1, 2024 at 11:23 PM Peter Eisentraut <peter(at)eisentraut(dot)org> wrote:
> I have committed the two remaining patches. I'll go nudge any affected
> buildfarm members to upgrade as needed.
Thanks!
FWIW next on my list of LLVM maintenance work are: fix ARM crash in
the next week or so (CF #5220), and figure out which patches need to
go where for JITLink, a small required API change for LLVM 20, unless
someone else is interested in working on that soon (there was a
patch[1] but the thread has gone quiet).