mbox series

[0/2] Fix atomic test in "configure" + bump FreeBSD CI to 12.2

Message ID 20210317110512.583747-1-thuth@redhat.com
Headers show
Series Fix atomic test in "configure" + bump FreeBSD CI to 12.2 | expand

Message

Thomas Huth March 17, 2021, 11:05 a.m. UTC
FreeBSD 12.1 is out of service now, so the Cirrus-CI task is failing due
to using some packages from 12.2 on the 12.1 image. We have to update
it to 12.2. However, there are two obstacles:

First, the check for the 128-bit atomic functions in the configure
script does not work right with the version of Clang in FreeBSD 12.2
anymore. Looks like the __atomic_*_16() functions do not have valid
prototypes anymore. First patch fixes this issue.

Second, there is a problem with libtasn1 and the latest version of
Clang that also triggers on FreeBSD 12.2. We have to disable gnutls
in this task until libtasn1 got fixed in FreeBSD.

Thomas Huth (2):
  configure: Don't use the __atomic_*_16 functions for testing 128-bit
    support
  cirrus.yml: Update the FreeBSD task to version 12.2

 .cirrus.yml | 5 +++--
 configure   | 6 +++---
 2 files changed, 6 insertions(+), 5 deletions(-)

Comments

Alex Bennée March 19, 2021, 3:33 p.m. UTC | #1
Thomas Huth <thuth@redhat.com> writes:

> FreeBSD 12.1 is out of service now, so the Cirrus-CI task is failing due
> to using some packages from 12.2 on the 12.1 image. We have to update
> it to 12.2. However, there are two obstacles:
>
> First, the check for the 128-bit atomic functions in the configure
> script does not work right with the version of Clang in FreeBSD 12.2
> anymore. Looks like the __atomic_*_16() functions do not have valid
> prototypes anymore. First patch fixes this issue.
>
> Second, there is a problem with libtasn1 and the latest version of
> Clang that also triggers on FreeBSD 12.2. We have to disable gnutls
> in this task until libtasn1 got fixed in FreeBSD.
>
> Thomas Huth (2):
>   configure: Don't use the __atomic_*_16 functions for testing 128-bit
>     support
>   cirrus.yml: Update the FreeBSD task to version 12.2

Queued to for-6.0/fixes-for-rc1, thanks. b4 did manage to pick up v2 of
2/2 which confused me a little.